Last active
October 3, 2021 13:44
-
-
Save MJacobs1985/41ec3fd944106c806374a925d029bb9a to your computer and use it in GitHub Desktop.
Non-Linear Mixed Models in R
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
rm(list = ls()) | |
#### Libraries #### | |
library(lme4) | |
library(ggplot2) | |
library(nlme) | |
library(MASS) | |
library(nls2) | |
library(nlstools) | |
library(car) | |
library(lattice) | |
library(boot) | |
library(plyr) | |
library(grid) | |
library(gridExtra) | |
library(latticeExtra) | |
library(Hmisc) | |
library(fda) | |
library(MASS) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment