Description Usage Arguments Details Value References Examples
View source: R/mixed_effect_class.R
A mixed effects model is an extension of ANOVA where there are both fixed and random effects.
1 | mixed_effect(alpha = 0.05, mtc = "fdr", formula, ss_type = "marginal", ...)
|
alpha |
(numeric) The p-value cutoff for determining significance. The default is |
mtc |
(character) Multiple test correction method. Allowed values are limited to the following:
The default is |
formula |
(formula) A symbolic description of the model to be fitted. |
ss_type |
(character) Sum of squares type. Allowed values are limited to the following:
The default is |
... |
Additional slots and values passed to |
This object makes use of functionality from the following packages:
nlme
emmeans
A mixed_effect
object.
Pinheiro J, Bates D, DebRoy S, Sarkar D, R Core Team (2020). nlme: Linear and Nonlinear Mixed Effects Models. R package version 3.1-149, https://CRAN.R-project.org/package=nlme.
Lenth R (2020). emmeans: Estimated Marginal Means, aka Least-Squares Means. R package version 1.5.2-1, https://CRAN.R-project.org/package=emmeans.
Fox J, Weisberg S (2019). An R Companion to Applied Regression, Third edition. Sage, Thousand Oaks CA. https://socialsciences.mcmaster.ca/jfox/Books/Companion/.
1 2 3 4 | D = iris_DatasetExperiment()
D$sample_meta$id=rownames(D) # dummy id column
M = mixed_effect(formula = y~Species+ Error(id/Species))
M = model_apply(M,D)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.