⇤ ← Revision 1 as of 2024-11-21 21:11:03
Size: 376
Comment:
|
Size: 382
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 23: | Line 23: |
TEst |
Multilevel Model
Contents
Description
When clusters of data are expected to vary in different ways, a multilevel model may be more appropriate than a simple model.
Example
model <- nlme::lme(Sale_Price ~ Lot_Area, random = ~ 1 | Neighborhood, data = modeldata::ames)
TEst