Description Usage Arguments Details See Also Examples
Summary of bootstrap distribution for the parameters of a Gaussian mixture model providing either standard errors or percentile bootstrap confidence intervals.
1 2 |
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
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Not run:
data(diabetes)
X = diabetes[,-1]
modClust = Mclust(X)
bootClust = MclustBootstrap(modClust)
summary(bootClust, what = "se")
summary(bootClust, what = "ci")
data(acidity)
modDens = densityMclust(acidity)
modDens = MclustBootstrap(modDens)
summary(modDens, what = "se")
summary(modDens, what = "ci")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.