R/1.6.main.R

Defines functions setLongModelComponentsToWide

setLongModelComponentsToWide <- function(modelComponents) {
  wideModelComponents <- list(
    response = transformResponseToWide(modelComponents),
    explanatory = transformExplanatoryToWide(modelComponents),
    weights = transformDesignToWide(modelComponents, "weights"),
    stratum = transformDesignToWide(modelComponents, "stratum"),
    cluster = transformDesignToWide(modelComponents, "cluster")
  )

  return(wideModelComponents)
}

Try the Mmcsd package in your browser

Any scripts or data that you put into this service are public.

Mmcsd documentation built on March 31, 2023, 7:23 p.m.