View source: R/MixtureMissing.R
print.MixtureMissing | R Documentation |
Print MixtureMissing
object.
## S3 method for class 'MixtureMissing'
print(x, ...)
x |
A |
... |
Further arguments passed to or from other methods. |
The description includes information on the complete or incomplete data, number of clusters, and component distribution.
No return value, called to print the fitted model's description.
#++++ With no missing values ++++#
X <- iris[, 1:4]
mod <- MGHM(X, G = 2, model = 'GH', max_iter = 10)
print(mod)
#++++ With missing values ++++#
set.seed(123)
X <- hide_values(iris[, 1:4], n_cases = 20)
mod <- MGHM(X, G = 2, model = 'GH', max_iter = 10)
print(mod)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.