- x
An n x p
data matrix (n
observations and p
variables).
Rows of x
represent observations, and columns represent variables.
Missing values (NA's) and infinite values (Inf's) are allowed,
since observations (rows) with missing or infinite values will
automatically be excluded from the computations.
- ...
potential further arguments passed to lower level functions.
- formula
a formula
of the form y ~ x1 + x2 + ...
.
- data
data frame from which variables specified in
formula
are to be taken.
- subset
an optional vector specifying a subset of observations
to be used in the fitting process.
- weights
an optional vector of weights to be used
NOT USED YET.
- na.action
a function which indicates what should happen
when the data contain NA
s. The default is set by
the na.action
setting of options
, and is
na.fail
if that is unset. The “factory-fresh”
default is na.omit
. Another possible value is
NULL
, no action. Value na.exclude
can be useful.
- model
logical
indicating if the
model frame, is to be returned.
- contrasts
an optional list. See the contrasts.arg
of model.matrix.default
.
- offset
this can be used to specify an a priori
known component to be included in the linear predictor
during fitting. An offset
term can be included in the
- y
Response variable. A vector with n
elements that
contains the response variable.
- intercept
wheather to use constant term (default is intercept=TRUE
- la
values of the transformation parameter for which it is necessary
to compute the score test. Default value of lambda is
la=c(-1, -0.5, 0, 0.5, 1)
, i.e., the five most common values of lambda.
- lik
likelihood for the augmented model. If true the value of the likelihood
for the augmented model will be calculated and returend otherwise (default) only
the value of the score test will be given
- nocheck
Whether to check input arguments. If nocheck=TRUE
no check is performed
on matrix y
and matrix X
. Notice that y
and X
are left unchanged. In other words the additional column of ones for the
intercept is not added. The default is nocheck=FALSE
.
- trace
Whether to print intermediate results. Default is trace=FALSE
.