summary.MclustBootstrap | R Documentation |
Summary of bootstrap distribution for the parameters of a Gaussian mixture model providing either standard errors or percentile bootstrap confidence intervals.
## S3 method for class 'MclustBootstrap'
summary(object, what = c("se", "ci", "ave"), conf.level = 0.95, ...)
object |
An object of class |
what |
A character string: |
conf.level |
A value specifying the confidence level of the interval. |
... |
Further arguments passed to or from other methods. |
For details about the procedure used to obtain the bootstrap distribution see MclustBootstrap
.
MclustBootstrap
.
data(diabetes)
X = diabetes[,-1]
modClust = Mclust(X)
bootClust = MclustBootstrap(modClust)
summary(bootClust, what = "se")
summary(bootClust, what = "ci")
data(acidity)
modDens = densityMclust(acidity, plot = FALSE)
modDens = MclustBootstrap(modDens)
summary(modDens, what = "se")
summary(modDens, what = "ci")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.