View source: R/plot_model_selection.R
plot_model_selection | R Documentation |
Plot model selection to choose number optimal number of clusters
plot_model_selection(fit, k = NULL)
fit |
A |
k |
Number of clusters |
cowplot
object
set.seed(23)
df <- generate_data()
protein_names <- names(df)[3:12]
df <- dplyr::mutate_at(df, protein_names, function(x) asinh(x/5))
mix_fit <- CytoGLMM::cytoflexmix(df,
protein_names = protein_names,
condition = "condition",
group = "donor",
ks = 1:2)
plot_model_selection(mix_fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.