Learn R Programming

RMixtComp (version 4.0.2)

plotCrit: Plot BIC and ICL

Description

Plot BIC and ICL

Usage

plotCrit(output, pkg = c("ggplot2", "plotly"), ...)

Arguments

output

MixtCompLearn object

pkg

"ggplot2" or "plotly". Package used to plot

...

arguments to be passed to plot_ly

See Also

Other plot: plot.MixtCompLearn

Examples

Run this code
# NOT RUN {
data(iris)
 
# define the algorithm's parameters
algo <- createAlgo()

# keep only 3 variables
model <- list(Petal.Width = "Gaussian", Petal.Length = "Gaussian",
              Sepal.Width = "Gaussian", Sepal.Length = "Gaussian")

# run RMixtComp in unsupervised clustering mode + data as matrix
res <- mixtCompLearn(iris, model, algo, nClass = 1:4)

# plot
plotCrit(res)

# }

Run the code above in your browser using DataLab