Summary Function for Bootstrap Inference for Gaussian Finite Mixture Models
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
.
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")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.