cell_heatmap {biclustermd}R Documentation

Make a heat map of bicluster cell sizes.

Description

Make a heat map of bicluster cell sizes.

Usage

cell_heatmap(x, ...)

Arguments

x

An object of class biclustermd.

...

Arguments to pass to geom_tile()

Examples

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)

cell_heatmap(bc)

cell_heatmap(bc) + ggplot2::scale_fill_viridis_c()

[Package biclustermd version 0.2.3 Index]