cov.mve
.
plot.mve(mve.obj, ask=F, id.n=3, ...)
mve
object.
TRUE
,
plot.mve
operates in interactive mode.
id.n
most extreme points.
Set to
FALSE
if no identified points are desired.
Default: 3.
Index plot of Robust Distances
id.n
most extreme points,
depending on the options chosen.
This function is a method for the generic function
for class mve.
It can be invoked by calling
for an object x of the appropriate class,
or directly by calling
regardless of the class of the object.
When
ask=T
,
rather than produce each plot sequentially,
plot.lms
displays a menu listing
all the plots that can be produced.
If the menu is not desired but a pause between plots is still wanted
one must set
par(ask=T)
before invoking this command
with argument
ask=F
.
mve.obj <- cov.mve(air) plot(mve.obj, id.n=10) plot(mve.obj, ask=T) # interactive version. oldpar <- par(ask=T) plot(mve.obj) par(oldpar) # restore ask par