mvt.control {MVT} | R Documentation |
Allows users to set control parameters for the estimation routine available in MVT
.
mvt.control(maxIter = 2000, tolerance = 1e-6, fix.shape = FALSE)
maxIter |
maximum number of iterations. The default is 2000. |
tolerance |
the relative tolerance in the iterative algorithm. |
fix.shape |
whether the shape parameter should be kept fixed in
the fitting processes. The default is |
A list of control arguments to be used in a call to studentFit
.
A call to mvt.control
can be used directly in the control
argument
of the call to studentFit
.
ctrl <- mvt.control(maxIter = 500, tol = 1e-04, fix.shape = TRUE) data(PFM) studentFit(~ cuprum.D + habitat.D + planvital.D + provida.D, data = PFM, family = Student(eta = 0.25), control = ctrl)