R/plot.bicluster.R

Defines functions plot.bicluster

plot.bicluster <- function(x, ...){
    op <- par(mar = c(10,4,4,2))
    matplot(t(x), type = "b", pch = 1, ylab = "expression level", axes = FALSE, ...)
    axis(1, at = 1:ncol(x), labels = colnames(x), las = 2, cex.axis = 0.75)
    axis(2)
    par(op)
}

Try the BicARE package in your browser

Any scripts or data that you put into this service are public.

BicARE documentation built on Nov. 8, 2020, 7:47 p.m.