extract_fit_summary {tidyclust} | R Documentation |
S3 method to get fitted model summary info depending on engine
Description
S3 method to get fitted model summary info depending on engine
Usage
extract_fit_summary(object, ...)
Arguments
object |
a fitted |
... |
other arguments passed to methods |
Details
The elements cluster_names
and cluster_assignments
will be factors.
Value
A list with various summary elements
Examples
kmeans_spec <- k_means(num_clusters = 5) %>%
set_engine("stats")
kmeans_fit <- fit(kmeans_spec, ~., mtcars)
kmeans_fit %>%
extract_fit_summary()
[Package tidyclust version 0.2.3 Index]