fit.abaModel | R Documentation |
Calling fit
will trigger the fitting of all statistical models which
have been specified for the model. This will result in fits for each
group - outcome - stat combination.
## S3 method for class 'abaModel'
fit(object, ...)
object |
aba model The aba model to be fitted. |
... |
additional parameters. |
Note that this function is identical to the generic aba_fit()
function.
abaModel
data <- adnimerge %>% dplyr::filter(VISCODE == 'bl')
model_spec <- data %>% aba_model() %>%
set_groups(everyone()) %>%
set_outcomes(ConvertedToAlzheimers, CSF_ABETA_STATUS_bl) %>%
set_predictors(
PLASMA_ABETA_bl, PLASMA_PTAU181_bl, PLASMA_NFL_bl,
c(PLASMA_ABETA_bl, PLASMA_PTAU181_bl, PLASMA_NFL_bl)
) %>%
set_stats('glm')
model <- model_spec %>% aba_fit()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.