1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/generalTest-utility.R
\name{enumerateGeneralModels}
\alias{enumerateGeneralModels}
\title{Function for generation of nested linear models}
\usage{
enumerateGeneralModels(
fmla,
whichModels,
neverExclude = NULL,
includeBottom = TRUE,
data = NULL
)
}
\arguments{
\item{fmla}{formula for the "full" model}
\item{whichModels}{which subsets of models to generate}
\item{neverExclude}{a character vector of terms to never remove}
\item{includeBottom}{Include the base model containing only \code{neverExclude} terms}
\item{data}{a data frame containing the columns mentioned in \code{fmla}}
}
\description{
Generate lists of nested models, given a model formula
}
\details{
This is a backend function not intended for users. It is exposed for third-party
applications.
}
\keyword{internal}
|