Description Usage Arguments Value See Also Examples
Plots the bootstrap distribution of parameters as returned by the MclustBootstrap
function.
1 2 3 4 5 6 |
x |
Object returned by |
what |
Character string specifying if mixing proportions ( |
show.parest |
A logical specifying if the parameter estimate should be drawn as vertical line. |
show.confint |
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 |
hist.col |
The color to be used to fill the bars of the histograms. |
hist.border |
The color of the border around the bars of the histograms. |
breaks |
See the argument in function |
col, lwd, lty |
The color, line width and line type to be used to represent the estimated parameters and confidence intervals. |
xlab |
Optional label for the horizontal axis. |
xlim, ylim |
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.
1 2 3 4 5 6 7 8 9 10 11 | ## 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")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.