| summarizeRobWeights {robustbase} | R Documentation |
Print a nice “summary” about a numeric vector of robustness weights. Observations with weights around zero are marked as outliers.
summarizeRobWeights(w, digits = getOption("digits"),
header = "Robustness weights:",
eps = 1e-04, eps1 = eps, ...)
w |
numeric vector of robustness weigths. |
digits |
digits to be used for printing. |
header |
string to be printed as header line. |
eps |
numeric tolerance eps: values of w
with |w[i]| < eps/n are said to
be outliers. |
eps1 |
numeric tolerance: values of w with
|1 - w[i]| < eps1 are said to
have weight ‘~= 1’. |
... |
potential further arguments, passed to
print(). |
none; the function is used for its side effect of printing.
Martin Maechler
The summary methods for lmrob
and glmrob make use of summarizeRobWeights().