Created
November 10, 2022 13:50
-
-
Save MJacobs1985/9d0836127e6be3804b9ed8dcb3610ec4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
summary(jointFit1) | |
str(fitLME) | |
par(mfrow = c(4,4)) | |
traceplot(jointFit1) | |
ggtraceplot(jointFit1, "alphas") | |
ggdensityplot(jointFit1, "alphas") | |
gelman_diag(jointFit1, "alphas") | |
densplot(jointFit1, "alphas") | |
cumuplot(jointFit1, "alphas") | |
ggtraceplot(jointFit1, "betas") | |
ggdensityplot(jointFit1, "betas") | |
gelman_diag(jointFit1, "betas") | |
densplot(jointFit1, "betas") | |
cumuplot(jointFit1, "betas") | |
coef(jointFit1) | |
fixef(jointFit1) | |
head(ranef(jointFit1)) | |
ranef(jointFit1) | |
terms(jointFit1, process = "longitudinal", type = "random")[[1]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment