- formula
an object of class formula
(or one that can be coerced
to that class): a symbolic description of the model to be fitted. The
procedure only considers functional covariates (not implemented for
non-functional covariates). The details of model specification are given
under Details
.
- data
List that containing the variables in the model.
- weights
Weights:
if character
string ='equal'
same weights for each observation (by default) and
='inverse'
for inverse-probability of weighting.
if numeric
vector of length n
, Weight values of each observation.
- family
a description of the error distribution and link function to
be used in the model. This can be a character string naming a family
function, a family function or the result of a call to a family function.
(See family
for details of family functions.)
- par.metric
List of arguments by covariable to pass to the
metric
function by covariable.
- par.np
List of arguments to pass to the fregre.np.cv
function
- offset
this can be used to specify an a priori known component to be
included in the linear predictor during fitting.
- prob
probability value used for binary discriminant.
- type
If type is"1vsall"
(by default)
a maximum probability scheme is applied: requires G binary classifiers.
If type is "majority"
(only for multicalss classification G > 2)
a voting scheme is applied: requires G (G - 1) / 2 binary classifiers.
- control
a list of parameters for controlling the fitting process, by
default: maxit, epsilon, trace and inverse.
- ...
Further arguments passed to or from other methods.