Nothing
#' Extract the model frame from a galamm object
#'
#' @param formula An object of type `galamm` as described in [galammObject].
#' @param ... Other arguments. Currently not used.
#'
#' @returns A data frame.
#' @export
#' @family details of model fit
model.frame.galamm <- function(formula, ...) {
if (!is.null(formula$data)) {
return(formula$data)
}
stop("formula does not contain data slot")
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.