- formula
Survi
object specifying the covariates and response
variable in the model, such as Survi(ID, time, event) ~ x1 + x2
.
- data
An optional data frame, list, or environment that contains the
covariates and response variables included in the model. If not found in
data, the variables are taken from environment(formula)
, usually
the environment from which this function is called.
- subset
An optional logical vector specifying a subset of observations
to be used in the fitting process.
- na.action
An optional function that indicates what should the
procedure do if the data contains NA
s. The default is set by the
na.action setting of options
. The "factory-fresh"
default is na.omit
. Other possible values include
na.fail
, na.exclude
, and
na.pass
. help(na.fail)
for details.
- contrasts
An optional list, whose entries are values (numeric
matrices or character strings naming functions) to be used as
replacement values for the contrasts replacement function and whose
names are the names of columns of data containing factors. See
contrasts.arg
of model.matrix.default
for
details.
- start
A list returned by function iCoxph.start
specifying starting values of the parameters to be estimated in the
model. Please refer to the arguments of iCoxph.start
for
the available parameters.
- control
A list returned by function iCoxph.control
specifying control parameters for the model estimation procedure.
Please refer to the arguments of iCoxph.control
for the
available parameters.
- ...
Other arguments for future usage. A warning will be thrown if
any invalid argument is specified.