plot.pugmm {PUGMM} | R Documentation |
Plotting method for pugmm
object
Description
Plots for Parsimonious Ultrametric Gaussian Mixture Models results, such as BIC and path diagrams.
Usage
## S3 method for class 'pugmm'
plot(x, what = NULL, nrow = NULL, ncol = NULL, cluster_names = NULL, ...)
Arguments
x |
Output from |
what |
A string specifying the type of graph requested. Available choices are:
|
nrow |
Number of rows in the graphical window. A new graphical window is opened every 6 plots, i.e., components of |
ncol |
Number of columns in the graphical window. A new graphical window is opened every 6 plots, i.e., components of |
cluster_names |
String of dimension |
... |
Other graphics parameters. |
Value
No return value since this is a plot method.
See Also
Examples
data(penguins)
x <- scale(penguins[, 2:5])
pugmm.penguins <- pugmm(x, 3, 1)
plot.pugmm(pugmm.penguins, what = c("BIC", "Path Diagram"))