#' Create an lmer stat object.
#'
#' This function creates an lmer stat object which can be passed as input
#' to the `set_stats()` function when building an aba model. This stat performs
#' a linear mixed effects model analysis using the `lmer` function from the
#' `nlmer` package. Please note that the default mode is to include an interaction
#' term between the `time` variable and each predictor - i.e., `time*predictor`
#' will be in the model formula - but this does not happen for covariates. Also,
#' this model fits random intercepts and random slopes. The data for this model
#' should be in long format with one row per subject-visit.
#'
#' @param id string. This is the variable in the data which represents the
#' subject id to be used for random intercepts and random slopes.
#' @param time string. This is the time variable in the data which represents
#' the time from baseline that the visit occured.
#' @param std.beta logical. Whether to standardize model predictors and
#' covariates prior to analysis.
#' @param complete.cases logical. Whether to only include the subset of data
#' with no missing data for any of the outcomes, predictors, or covariates.
#' Note that complete cases are considering within each group - outcome
#' combination but across all predictor sets.
#'
#' @return An abaStat object with `lmer` stat type.
#' @export
#'
#' @examples
#'
#' data <- adnimerge %>%
#' dplyr::filter(VISCODE %in% c('bl','m06','m12','m24'))
#'
#' model <- data %>% aba_model() %>%
#' set_groups(
#' everyone(),
#' DX_bl %in% c('MCI', 'AD')
#' ) %>%
#' set_outcomes(CDRSB, ADAS13) %>%
#' set_predictors(
#' PLASMA_ABETA_bl,
#' PLASMA_PTAU181_bl,
#' PLASMA_NFL_bl,
#' c(PLASMA_ABETA_bl, PLASMA_PTAU181_bl, PLASMA_NFL_bl)
#' ) %>%
#' set_covariates(AGE, GENDER, EDUCATION) %>%
#' set_stats(
#' stat_lmer(id = 'RID', time = 'YEARS_bl')
#' ) %>%
#' fit()
#'
#' model_summary <- model %>% aba_summary()
#'
stat_lmer <- function(id,
time,
std.beta = FALSE,
complete.cases = TRUE) {
fns <- list(
'fns' = list(
'formula' = formula_lmer,
'fit' = fit_lmer,
'tidy' = tidy_lmer,
'glance' = glance_lmer
),
'extra_params' = list(
'id' = id,
'time' = time
),
'params' = list(
'std.beta' = std.beta,
'complete.cases' = complete.cases
)
)
fns$stat_type <- 'lmer'
class(fns) <- 'abaStat'
return(fns)
}
# helper function for lmer
formula_lmer <- function(outcome, predictors, covariates, extra_params) {
time <- extra_params$time
id <- extra_params$id
#interaction_vars <- extra_params$interaction_vars
interaction_vars <- c()
covariates <- covariates[!(covariates %in% interaction_vars)]
f <- paste(outcome, "~", time)
if (length(covariates) + length(predictors) > 0) f <- paste(f, '+')
if (length(covariates) > 0) {
f <- paste(f, paste(covariates, collapse = " + "))
if (length(interaction_vars) > 0) {
f <- paste(f, '+', paste0(interaction_vars, '*',
time, collapse=' + '))
}
if (length(predictors) > 0) f <- paste(f, '+')
}
if (length(predictors) > 0) f <- paste(f, paste0(predictors, "*",
time,
collapse = " + "))
f <- glue('{f} + ({time} | {id})')
return(f)
}
# helper function for lmer
fit_lmer <- function(formula, data, extra_params) {
model <-
tryCatch(
{
model <- lmerTest::lmer(stats::formula(formula),
na.action = stats::na.omit,
REML = FALSE,
data = data)
model@call$formula <- stats::formula(formula)
model
},
error = function(cond) {
warning(
glue('Problem fitting model:
{formula}
Check your variables for collinearity or missingness.
Skipping for now...')
)
NULL
}
)
return(model)
}
# helper function for lmer
tidy_lmer <- function(model, predictors, covariates, ...) {
tidy_df <- broom.mixed::tidy(model, effects='fixed', conf.int=TRUE)
tidy_df <- tidy_df %>%
select(-c('effect', 'df')) %>%
filter(
!(.data$term %in% predictors)
) %>%
mutate(
term = strsplit(.data$term, ':') %>%
purrr::map_chr(~.[length(.)])
)
return(tidy_df)
}
# helper function for lmer
glance_lmer <- function(fit, fit_basic, ...) {
x <- fit
glance_df <- broom.mixed::glance(x) %>%
dplyr::bind_cols(
tibble::tibble(
R2 = suppressWarnings(MuMIn::r.squaredGLMM(x)[1,][['R2m']])
)
)
glance_df <- glance_df %>%
bind_cols(
tibble::tibble(
nobs = x@devcomp$dims[['n']],
nsub = nlevels(x@flist[[1]])
)
)
# add comparison to null model
if (!is.null(fit_basic)) {
s <- stats::anova(fit, fit_basic)
null_pval <- s$`Pr(>Chisq)`[2]
glance_df <- glance_df %>%
bind_cols(tibble::tibble(Pval = null_pval))
}
# pivot longer to be like coefficients
glance_df <- glance_df %>%
pivot_longer(cols = everything()) %>%
rename(term = name, estimate = value)
# add confidence interval
glance_df <- glance_df %>%
mutate(
conf.low = NA,
conf.high = NA
)
return(glance_df)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.