bicluster_heatmap: Plot a heatmap of a bicluster

bicluster_heatmapR Documentation

Plot a heatmap of a bicluster

Description

Uses the stats::heatmap function.

Usage

bicluster_heatmap(bic, m, ...)

Arguments

bic

A bicluster object.

m

The matrix, that was used for the biclustering. (Works only if matrix has row-/colnames.)

...

Arguments forwarded to stats::heatmap.

Value

A plot object

Examples

m <- matrix(c(1,2,3,4), nrow=2)
rownames(m) <- c("r1", "r2")
rownames(m) <- c("c1", "c2")
bicluster_heatmap(bicluster(row=c(1,2), column=c(1,2)), m)


tdrose/mosbi documentation built on May 4, 2022, 3:22 p.m.