v0.3
RobustModels v0.3
- API change: estimator type and loss functions are now two different types. Fit a robust model using the new API:
rlm(form, data, MMEstimator{TukeyLoss}(); initial_scale=:L1)
- Robust Ridge regression by specifying the keyword argument
ridgeλ
torlm
:
rlm(form, data, MEstimator{HuberLoss}(); initial_scale=:mad, ridgeλ=0.1)
- Add documentation.