
Plots the bootstrap distribution of parameters as returned by the MclustBootstrap
function.
# S3 method for MclustBootstrap
plot(x, what = c("pro", "mean", "var"),
show.parest = TRUE, show.confint = TRUE,
hist.col = "grey", hist.border = "lightgrey", breaks = "Sturges",
col = "forestgreen", lwd = 2, lty = 3,
xlab = NULL, xlim = NULL, ylim = NULL, …)
Object returned by MclustBootstrap
.
Character string specifying if mixing proportions ("pro"
),
component means ("mean"
) or component variances ("var"
)
should be drawn.
A logical specifying if the parameter estimate should be drawn as vertical line.
A logical specifying if the resampling-based confidence interval should be drawn at the bottom of the graph. Confidence level can be provided as further argument conf.level
; see summary.MclustBootstrap
.
The color to be used to fill the bars of the histograms.
The color of the border around the bars of the histograms.
See the argument in function hist
.
The color, line width and line type to be used to represent the estimated parameters and confidence intervals.
Optional label for the horizontal axis.
A two-values vector of axis range for, respectively, horizontal and vertical axis.
Other graphics parameters.
A plot for each variable/component of the selected parameters.
# NOT RUN {
data(diabetes)
X <- diabetes[,-1]
modClust <- Mclust(X, G = 3, modelNames = "VVV")
bootClust <- MclustBootstrap(modClust, nboot = 99)
par(mfrow = c(1,3), mar = c(4,2,2,0.5))
plot(bootClust, what = "pro")
par(mfrow = c(3,3), mar = c(4,2,2,0.5))
plot(bootClust, what = "mean")
# }
Run the code above in your browser using DataLab