plot.clues {clues} | R Documentation |
Draw scatter plots, or plot of average trajectory per cluster, or both. A simple menu will prompt for the user to choose what will be plotted.
## S3 method for class 'clues' plot( x, ask = TRUE, plot.dim = NULL, xlab = NULL, ylab = NULL, xlim = NULL, ylim = NULL, cex = NULL, las = NULL, lwd = NULL, xlab.avg.curve = "variable", ylab.avg.curve = "average observation", ...)
x |
an object returend by the function |
ask |
logical; if true,
|
plot.dim |
specifies the dimensions to be plot in pair-wise scatter plots.
The number of dimensions specified
can be more than 2. If |
xlab |
a title for the x axis. If |
ylab |
a title for the y-axis. If |
xlim |
range of x-axis. If |
ylim |
range of y-axis. If |
cex |
A numerical value giving the amount by which plotting text
and symbols should be magnified relative to the default. (see |
las |
numeric in 0,1,2,3; the style of axis labels (see |
lwd |
the line width, a positive number, defaulting to 1 (see
|
xlab.avg.curve |
label for x-axis in the plot of average trajectory per cluster. |
ylab.avg.curve |
label for y-axis in the plot of average trajectory per cluster. |
... |
graphical parameters (see |
# Maronna data set data(Maronna) # data matrix maronna <- Maronna$maronna # apply clues to maronna data set res <- clues(maronna) # plot ## Not run: plot(res)