= Multilevel Model = A '''multilevel model''' allows variables to vary at different levels. This framework can be applied to both linear and non-linear models. <> ---- == 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) }}} ---- CategoryRicottone