View source: R/MixtureMissing.R
summary.MixtureMissing | R Documentation |
Summarizes main information regarding a MixtureMissing
object.
## S3 method for class 'MixtureMissing'
summary(object, ...)
object |
A |
... |
Arguments to be passed to methods, such as graphical parameters. |
Information includes the model used to fit the data set, initialization method, clustering table, total outliers, outliers per cluster, mixing proportions, component means and variances, final log-likelihood value, information criteria.
No return value, called to summarize the fitted model's results
#++++ With no missing values ++++#
X <- auto[, c('horsepower', 'highway_mpg', 'price')]
mod <- MCNM(X, G = 2, init_method = 'kmedoids', max_iter = 10)
summary(mod)
#++++ With missing values ++++#
X <- auto[, c('normalized_losses', 'horsepower', 'highway_mpg', 'price')]
mod <- MCNM(X, G = 2, init_method = 'kmedoids', max_iter = 10)
summary(mod)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.