r descr_models("k_means", "clustMixType")

Tuning Parameters

defaults <- 
  tibble::tibble(tidyclust = c("num_clusters"),
                 default = c("no default"))

param <-
 k_means() %>% 
  set_engine("clustMixType") %>% 
  set_mode("partition") %>% 
  make_parameter_list(defaults)

This model has r nrow(param) tuning parameters:

param$item

Translation from tidyclust to the original package (partition)

k_means(num_clusters = integer(1)) %>% 
  set_engine("clustMixType") %>% 
  set_mode("partition") %>% 
  translate_tidyclust()

Preprocessing requirements

Both categorical and numeric predictors are required.

References



Try the tidyclust package in your browser

Any scripts or data that you put into this service are public.

tidyclust documentation built on Sept. 26, 2023, 1:08 a.m.