Skip to contents

Plots the ICL values returned by the mclustICL function.

Usage

# S3 method for mclustICL
plot(x, ylab = "ICL", ...)

Arguments

x

Output from mclustICL.

ylab

Label for the vertical axis of the plot.

...

Further arguments passed to the plot.mclustBIC function.

Value

A plot of the ICL values.

See also

Examples

# \donttest{
data(faithful)
faithful.ICL = mclustICL(faithful)
plot(faithful.ICL)

# }