bicluster_heatmap,bicluster,matrix-method {mosbi}R Documentation

Plot a heatmap of a bicluster

Description

Uses the stats::heatmap function.

Usage

## S4 method for signature 'bicluster,matrix'
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)


[Package mosbi version 0.99.17 Index]