~ubuntu-branches/ubuntu/trusty/lme4/trusty-proposed

« back to all changes in this revision

Viewing changes to man/mkReTrms.Rd

  • Committer: Package Import Robot
  • Author(s): Dirk Eddelbuettel
  • Date: 2013-09-21 11:26:57 UTC
  • mfrom: (1.2.20)
  • Revision ID: package-import@ubuntu.com-20130921112657-0ymchewwi20qdnme
Tags: 1.0-4-1
* New upstream release

* debian/control: Added new (Build-)Depends: r-cran-mass, r-cran-minqa
  and r-cran-rcppeigen

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
\name{mkReTrms}
 
2
\alias{mkReTrms}
 
3
\title{Create Z, Lambda, Lind, etc.}
 
4
\usage{
 
5
  mkReTrms(bars, fr)
 
6
}
 
7
\arguments{
 
8
  \item{bars}{a list of parsed random-effects terms}
 
9
 
 
10
  \item{fr}{a model frame in which to evaluate these terms}
 
11
}
 
12
\value{
 
13
  a list with components \item{Zt}{transpose of the sparse
 
14
  model matrix for the random effects}
 
15
  \item{Lambdat}{transpose of the sparse relative
 
16
  covariance factor} \item{Lind}{an integer vector of
 
17
  indices determining the mapping of the elements of the
 
18
  \code{theta} to the \code{"x"} slot of \code{Lambdat}}
 
19
  \item{theta}{initial values of the covariance parameters}
 
20
  \item{lower}{lower bounds on the covariance parameters}
 
21
  \item{flist}{list of grouping factors used in the
 
22
  random-effects terms} \item{cnms}{a list of column names
 
23
  of the random effects according to the grouping factors}
 
24
}
 
25
\description{
 
26
  From the result of \code{\link{findbars}} applied to a
 
27
  model formula and and the evaluation frame, create the
 
28
  model matrix, etc. associated with random-effects terms.
 
29
  See the description of the returned value for a detailed
 
30
  list.
 
31
}
 
32
\seealso{
 
33
  Other utilities: \code{\link{findbars}},
 
34
  \code{\link{mkRespMod}}, \code{\link{nlformula}},
 
35
  \code{\link{nobars}}, \code{\link{subbars}}
 
36
}
 
37