Learn R Programming

robust (version 0.3-0)

donostah: Donoho-Stahel Covariance Estimation

Description

Compute a robust estimate of location and scale using the Donoho-Stahel projection-bsed estimator.

Usage

donostah(x, control)

Arguments

x
a numeric matrix containing the data.
control
a list of control parameters. The utility function covRob.control creates a list of the control parameters and their default values. See details for the required control parameters and their defaul

Value

  • a list with the following components:
  • callan image of the call that produced the object with all the arguments named.
  • cova numeric matrix containing the Stahel-Donoho estimate of the covariance/correlation matrix.
  • centera numeric vector containing the Stahel-Donoho estimate of the location vector.

References

Maronna, R. A. and Yohai, V. J. (1995). The behavior of the Stahel-Donoho robust multivariate estimator. Journal of the American Statistical Association, 90, 330-341.

Details

This function is called by the high-level function covRob when the Stahel-Donoho estimator is specified (via the optional argument estim = "donostah"). It may also be of interest to power users who want to compute a Stahel-Donoho estimate with a minimum of fuss.

[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]

See Also

covRob, covRob.control.

Examples

Run this code
data(woodmod.dat)
  X <- as.matrix(woodmod.dat)
  ds.control <- covRob.control("donostah")
  donostah(X, ds.control)

Run the code above in your browser using DataLab