Usage
NR(y, X=NULL, ZETA=NULL, R=NULL, draw=TRUE, REML=TRUE, silent=FALSE, iters=15, constraint=TRUE, init=NULL, sherman=FALSE, che=TRUE, MTG2=FALSE, Fishers=FALSE, gss=TRUE, forced=NULL, identity=TRUE, kernel=NULL, start=NULL, taper=NULL, verbose=0, gamVals=NULL, maxcyc=15, tol=1e-4)
Arguments
y
a numeric vector for the response variable
X
an incidence matrix for fixed effects.
ZETA
an incidence matrix for random effects. This can be for one or more random effects. This NEEDS TO BE PROVIDED AS A LIST STRUCTURE. For example Z=list(list(Z=Z1, K=K1), list(Z=Z2, K=K2), list(Z=Z3, K=K3)) makes a 2 level list for 3 random effects. The general idea is that each random effect with or without its variance-covariance structure is a list, i.e. list(Z=Z1, K=K1) where Z is the incidence matrix and K the var-cov matrix. When moving to more than one random effect we need to make several lists that need to be inside another list. What we call a 2-level list, i.e. list(Z=Z1, K=K1) and list(Z=Z2, K=K2) would need to be put in the form; list(list(Z=Z1, K=K1),list(Z=Z1, K=K1)), which as can be seen, is a list of lists (2-level list).
R
a matrix for variance-covariance structures for the residuals, i.e. for longitudinal data. if not passed is assumed an identity matrix.
draw
a TRUE/FALSE value indicating if a plot of updated values for the variance components and the likelihood should be drawn or not. The default is TRUE. COMPUTATION TIME IS SMALLER IF YOU DON'T PLOT SETTING draw=FALSE
REML
a TRUE/FALSE value indicating if restricted maximum likelihood should be used instead of ML. The default is TRUE.
silent
a TRUE/FALSE value indicating if the function should draw the progress bar or iterations performed while working or should not be displayed.
iters
a scalar value indicating how many iterations have to be performed if the EM is performed. There is no rule of tumb for the number of iterations. The default value is 100 iterations or EM steps.
constraint
a TRUE/FALSE value indicating if the program should use the boundary constraint when one or more variance component is close to the zero boundary. The default is TRUE but needs to be used carefully. It works ideally when few variance components are close to the boundary but when there are too many variance components close to zero we highly recommend setting this parameter to FALSE since is more likely to get the right value of the variance components in this way.
init
vector of initial values for the variance components. By default this is NULL and variance components are estimated by the method selected, but in case the user want to provide initial values this argument is functional.
sherman
a TRUE/FALSE value indicating if Sherman-Morrison-Woodbury formula (Seber, 2003, p. 467) should be used when estimating variance components in order to perform faster when a mixed model with no covariance structure using the average information algorithm is fitted. The default is FALSE since this software was designed for unreplicated data (altough can fit models with replicated data but slower than lme4).
che
a TRUE/FALSE value indicating if list structure provided by the user is correct to fix it. The default is TRUE but is turned off to FALSE within the mmer function which would imply a double check.
MTG2
a TRUE/FALSE value indicating if an eigen decomposition for the additive relationship matrix should be performed or not. This is based on Lee (2015). The limitations of this methos are:
1) can only be applied to one relationship matrix
2) The system needs to be squared and no missing data is allowed (then missing data is imputed with the median).
The default is FALSE to avoid the user get into trouble but experimented users can take advantage from this feature to fit big models, i.e. 5000 individuals in 555 seconds = 9 minutes in a MacBook 4GB RAM.
Fishers
a TRUE/FALSE value indicating if the program should calculate at the final step and return the inverse of the Fishers Information Matrix.
gss
a TRUE/FALSE value indicating if a genomic selection is being fitted just for using certain constraints. When is FALSE (default) the program can make some EM steps to find initial values for variance components when the starting values are to far from the real values causing the likelihood to have a strange behavior and dropping dramatically When TRUE the program does not try EM steps even when far away from the likelihood because in big marker-based models can make the process quite slow.
forced
a vector of numeric values for variance components including error if the user wants to force the values of the variance components. On the meantime only works for forcing all of them and not a subset of them. The default is NULL, meaning that variance components will be estimated by REML/ML.
identity
Logical variable, includes the identity as the
final matrix of the covariance structure. Default is TRUE
kernel
Compute the log likelihood based on a reduced
observation TY where T has this kernel. Default value of NULL assumes
that the kernal matches the fixed effects model matrix X corresponding
to REML. Setting kernel=0 gives the ordinary likelihood and kernel=1
gives the one dimensional subspace of constant vectors. See examples
for more details.
start
Specify the variance components at which the
Newton-Raphson algorithm starts. Default value is
rep(var(y),k)
.
taper
The proportion of each step to take. A vector of values
from 0 to 1 of length maxcyc. Default value takes smaller steps initially.
verbose
Controls level of time output, takes values 0, 1 or
2, Default is 0, level 1 gives parameter estimates and value of log
likelihood at each stage.
gamVals
When k=2, the marginal log likelihood based on the
residual configuration statistic (see Tunnicliffe Wilson(1989)), is
evaluated first at (1-gam) V1 + gam V2
for each value of
gam
in gamVals
, a set of values from the unit
interval. Subsequently the Newton-Raphson algorithm is started at
variance components corresponding the the value of gam
that
has the highest marginal log likelihood. This is overridden if
start
is specified.
maxcyc
Maximum number of cycles allowed. Default value is
50. A warning is output to the screen if this is reached before
convergence.
tol
Convergence criteria. If the change in residual log
likelihood for one cycle is less than 10 x tol
the algorithm
finishes. If each component of the change proposed by the
Newton-Raphson is lower in magnitude than tol
the algorithm
finishes. Default value is 1e-4
.