R/model.frame.gls.R

Defines functions terms.gls model.frame.gls model.matrix.gls

model.matrix.gls <- function(object, ...)
  model.matrix(terms(object), data = getData(object), ...)


model.frame.gls <- function(object, ...)
  model.frame(formula(object), data = getData(object), ...)


terms.gls <- function(object, ...)
  terms(model.frame(object),...) 
bozenne/butils documentation built on Oct. 14, 2023, 6:19 a.m.