autoplot.biclustermd_sim {biclustermd} | R Documentation |
Creates a ggplot of the three similarity measures used in biclustermd::bicluster()
for both row and column dimensions.
## S3 method for class 'biclustermd_sim'
autoplot(object, similarity = NULL, facet = TRUE, ncol = NULL, ...)
object |
Object of class "biclustermd_sim" |
similarity |
A character vector indicating which similarity measure to plot.
Can be any of |
facet |
If |
ncol |
If faceting, the number of columns to arrange the plots in. |
... |
Arguments to pass to |
A ggplot object.
data("synthetic")
bc <- biclustermd(synthetic, col_clusters = 3, row_clusters = 2,
miss_val = mean(synthetic, na.rm = TRUE),
miss_val_sd = sd(synthetic, na.rm = TRUE),
col_min_num = 2, row_min_num = 2,
col_num_to_move = 1, row_num_to_move = 1,
max.iter = 10)
bc
autoplot(bc$Similarities, ncol = 1)