File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,20 @@ export @formula,
109
109
110
110
import Base: == , *
111
111
112
+ """
113
+ MixedModel
114
+
115
+ Abstract type for mixed models. MixedModels.jl implements two subtypes:
116
+ `LinearMixedModel` and `GeneralizedLinearMixedModel`. See the documentation for
117
+ each for more details.
118
+
119
+ This type is primarily used for dispatch in `fit`. Without a distribution and
120
+ link function specified, a `LinearMixedModel` will be fit. When a
121
+ distribution/link function is provided, a `GeneralizedLinearModel` is fit,
122
+ unless that distribution is `Normal` and the link is `IdentityLink`, in which
123
+ case the resulting GLMM would be equivalent to a `LinearMixedModel` anyway and
124
+ so the simpler, equivalent `LinearMixedModel` will be fit instead.
125
+ """
112
126
abstract type MixedModel{T} <: StatsModels.RegressionModel end # model with fixed and random effects
113
127
114
128
function __init__ ()
You can’t perform that action at this time.
0 commit comments