covplot {fsdaR} | R Documentation |
Monitoring of the covariance matrix
Description
Plots the trajectories of the elements of the covariance (correlation) matrix monitored
Usage
covplot(
out,
xlim,
ylim,
xlab,
ylab,
main,
lwd,
lty,
col,
cex.lab,
cex.axis,
subsize,
fg.thresh,
fg.unit,
fg.labstep,
fg.lwd,
fg.lty,
fg.col,
fg.mark,
fg.cex,
standard,
fground,
tag,
datatooltip,
trace = FALSE,
...
)
Arguments
out |
An object of S3 class The needed elements of
|
xlim |
Controls the |
ylim |
Controls the |
xlab |
A title for the x axis |
ylab |
A title for the y axis |
main |
An overall title for the plot |
lwd |
The line width, a positive number, defaulting to 1 |
lty |
The line type. Line types can either be specified as an integer (1=solid (default), 2=dashed, 3=dotted, 4=dotdash, 5=longdash, 6=twodash) or as one of the character strings "solid", "dashed", "dotted", "dotdash", "longdash", or "twodash". The latter two are not supported by Matlab. |
col |
Colors to be used for the highlighted units |
cex.lab |
The magnification to be used for x and y labels relative to the current setting of cex |
cex.axis |
The magnification to be used for axis annotation relative to the current setting of cex |
subsize |
Numeric vector containing the subset size with length equal to the number of columns of
matrix of mahalanobis distances. The default value of subsize is |
fg.thresh |
(alternative to fg.unit) numeric vector of length 1 or 2 which specifies
the highlighted trajectories.
If |
fg.unit |
(alternative to fg.thresh), vector containing the list of the units to be highlighted.
If |
fg.labstep |
numeric vector which specifies the steps of the search where to put labels for
the highlighted trajectories (units). The default is to put the labels at the
initial and final steps of the search. |
fg.lwd |
The line width for the highlighted trajectories (units). Default is 1. |
fg.lty |
The line type for the highlighted trajectories (units). Line types can either be specified as an integer (1=solid (default), 2=dashed, 3=dotted, 4=dotdash, 5=longdash, 6=twodash) or as one of the character strings "solid", "dashed", "dotted", "dotdash", "longdash", or "twodash". The latter two are not supported by Matlab. |
fg.col |
colors to be used for the highlighted units. |
fg.mark |
Controlls whether to plot highlighted trajectories as symbols.
if |
fg.cex |
Controls the font size of the labels of the trajectories in foreground. If
|
standard |
MATLAB-style arguments - appearance of the plot in terms of xlim, ylim, axes labels and their font size style, color of the lines, etc. |
fground |
MATLAB-style arguments - for the trajectories in foregroud. |
tag |
Plot handle. String which identifies the handle of the plot which is about to be created.
The default is |
datatooltip |
If datatooltip is not empty the user can use the mouse in order to have
information about the unit selected, the step in which the unit enters the search and
the associated label. If datatooltip is a list, it is possible to control the aspect
of the data cursor (see MATLAB function |
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
Examples
## Not run:
X <- iris[,1:4]
out <- fsmult(X, monitoring=TRUE)
## Produce monitoring covariances plot with all the default options
covplot(out)
## End(Not run)