plot.rlg {tclust} | R Documentation |
Plot an 'rlg' object
Description
Different plots for the results of 'rlg' analysis, stored in an
rlg
object, see Details.
Usage
## S3 method for class 'rlg'
plot(
x,
which = c("all", "scores", "loadings", "eigenvalues"),
sort = TRUE,
ask = (which == "all" && dev.interactive(TRUE)),
...
)
Arguments
x |
An |
which |
Select the required plot. |
sort |
Whether to sort. |
ask |
if |
... |
Other parameters to be passed to the lower level functions. |
Examples
data (LG5data)
x <- LG5data[, 1:10]
clus <- rlg(x, d = c(2,2,2), alpha=0.1)
plot(clus, which="eigenvalues")
plot(clus, which="scores")
[Package tclust version 2.0-4 Index]