View source: R/extract_fit_summary.R
extract_fit_summary | R Documentation |
S3 method to get fitted model summary info depending on engine
extract_fit_summary(object, ...)
object |
a fitted |
... |
other arguments passed to methods |
The elements cluster_names
and cluster_assignments
will be factors.
A list with various summary elements
kmeans_spec <- k_means(num_clusters = 5) %>%
set_engine("stats")
kmeans_fit <- fit(kmeans_spec, ~., mtcars)
kmeans_fit %>%
extract_fit_summary()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.