statsmodels.robust.covariance.CovDetMM.fit#
- CovDetMM.fit(maxiter=100)[source]#
Estimate model parameters
- Parameters:
- maxiter
int,optional Maximum number of iterations in the second stage M-estimation.
- maxiter
- Returns:
CovMResultNamed tuple with mean, shape, scale, cov, converged, n_iter, and mahalanobis. See
CovMResultfor details.
Notes
This uses CovDetS for the first stage estimation and CovM with fixed scale in the second stage MM-estimation.
TODO: fit options for the first stage CovDetS estimation are missing.