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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/utils.R
\name{expandDoubleVerts}
\alias{expandDoubleVerts}
\title{Expand terms with \code{'||'} notation into separate \code{'|'} terms}
\usage{
expandDoubleVerts(term)
}
\arguments{
\item{term}{a mixed-model formula}
}
\value{
the modified term
}
\description{
From the right hand side of a formula for a mixed-effects model,
expand terms with the double vertical bar operator
into separate, independent random effect terms.
}
\seealso{
\code{\link{formula}}, \code{\link{model.frame}}, \code{\link{model.matrix}}.
Other utilities:
\code{\link{mkReTrms}()},
\code{\link{nobars}()},
\code{\link{subbars}()}
}
\concept{utilities}
\keyword{models}
\keyword{utilities}
|