Description Usage Arguments Value Author(s) Examples
Function that returns which column labels are part of the pattern derived from the biclusters. Additionally, a biclustmember plot and a general barplot of the column labels (retrieved from the biclusters) can be drawn.
| 1 2 | 
| result | A Biclust Object. | 
| matrix | Accompanying data matrix which was used to obtain  | 
| plots | Which plots to draw: 
 | 
| plot.type | Output Type 
 | 
| filename | Base filename (with/without directory) for the plots if  | 
A list object (length equal to number of Biclusters) in which vectors of column labels are saved.
Ewoud De Troyer
| 1 2 3 4 5 6 7 8 9 10 | ## Not run: 
data <- matrix(sample(c(0,1),100*100,replace=TRUE,prob=c(0.9,0.1)),nrow=100,ncol=100)
data[1:10,1:10] <- 1 # BC1
data[11:20,11:20] <- 1 # BC2
data[21:30,21:30] <- 1 # BC3
data <- data[sample(1:nrow(data),nrow(data)),sample(1:ncol(data),ncol(data))]
result <- bibit(data,minr=5,minc=5)
ColInfo(result=result,matrix=data)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.