| plot.mclustICL {mclust} | R Documentation |
Plots the ICL values returned by the mclustICL function.
## S3 method for class 'mclustICL' plot(x, ylab = "ICL", ...)
x |
Output from |
ylab |
Label for the vertical axis of the plot. |
... |
Further arguments passed to the |
A plot of the ICL values.
C. Fraley, A. E. Raftery, T. B. Murphy and L. Scrucca (2012). mclust Version 4 for R: Normal Mixture Modeling for Model-Based Clustering, Classification, and Density Estimation. Technical Report No. 597, Department of Statistics, University of Washington.
## Not run: data(faithful) faithful.ICL = mclustICL(faithful) plot(faithful.ICL) ## End(Not run)