summary.mix {mixdist} | R Documentation |
Summarizing Mixture Model Fits
Description
summary
method for class "mix"
. It is called via
the generic function summary
.
Usage
## S3 method for class 'mix'
summary(object, digits = 4, ...)
Arguments
object |
an object of class |
digits |
how many significant digits are to be used. |
... |
additional arguments affecting the summary produced. |
Value
A list containing the following items:
parameters |
a data frame containing the values for parameters of component distributions, which are, in order, the proportions, means, and standard deviations. |
standard errors |
a data frame giving the standard errors of estimated parameters. |
anova table |
analysis of variance table for the
|
See Also
mix
for model fitting, summary
for
summarizing other kinds of object. anova.mix
for
information about anova table
.
Examples
data(pike65)
data(pikepar)
fit <- mix(pike65, pikepar, "lnorm", mixconstr(consigma = "CCV"), emsteps = 3)
fit
summary(fit)
[Package mixdist version 0.5-5 Index]