Description Usage Arguments Value Examples
View source: R/col.names.biclustermd.R
Get data matrix column names and their corresponding column cluster membership
1 2 | ## S3 method for class 'biclustermd'
col.names(x)
|
x |
and object of class |
a data frame with column names of the shuffled matrix and corresponding column cluster names.
1 2 3 4 5 6 7 8 | data("synthetic")
# default parameters
bc <- biclustermd(synthetic)
bc
col.names(bc)
# this is a simplified version of the output for gather(bc):
library(dplyr)
gather(bc) %>% distinct(col_cluster, col_name)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.