R/oats/ExploreLMM.R

# Title     : ExploreLMM.R
# Objective : Oats & Linear Mixed Model
# Created by: greyhypotheses
# Created on: 31/03/2022


#' Random Intercept, Fixed Effects
#'
#'

model <- lme(fixed = Y ~ N + V, data = oats, random = ~1 | B)
summary(model)

base::plot(model, frame.plot = FALSE)
plot(x = rife$fitted, y = rife$residuals, frame.plot = FALSE)
residuals(model)
premodelling/mixed documentation built on April 25, 2022, 6:27 a.m.