malindexplot {fsdaR} | R Documentation |
Plots the trajectory of minimum Mahalanobis distance (mmd)
Description
Plots the trajectory of minimum Mahalanobis distance (mmd)
Usage
malindexplot(
out,
p,
xlab,
ylab,
main,
nameX,
conflev,
numlab,
tag,
trace = FALSE,
...
)
Arguments
out |
a numeric vector or an object of S3 class (one of |
p |
If |
xlab |
A title for the x axis |
ylab |
A title for the y axis |
main |
An overall title for the plot |
nameX |
Add variable labels in the plot. A vector of strings of length |
conflev |
confidence interval for the horizontal bands. It can be a vector of different confidence level values, e.g. c(0.95, 0.99, 0.999). The confidence interval is based on the chi^2 distribution. |
numlab |
Number of points to be labeled in the plot. If |
tag |
Tag of the figure which will host the malindexplot. The default tag is |
trace |
Whether to print intermediate results. Default is |
... |
potential further arguments passed to lower level functions. |
Value
none
Author(s)
FSDA team, valentin.todorov@chello.at
References
Atkinson and Riani (2000), Robust Diagnostic Regression Analysis, Springer Verlag, New York.
Examples
## Not run:
## Mahalanobis distance plot of 100 random numbers.
## Numbers are from from the chisq with 5 degrees of freedom
malindexplot(rchisq(100, 5), 5)
## End(Not run)