col.names.biclustermd {biclustermd}R Documentation

Get data matrix column names and their corresponding column cluster membership

Description

Get data matrix column names and their corresponding column cluster membership

Usage

## S3 method for class 'biclustermd'
col.names(x)

Arguments

x

and object of class biclustermd

Value

a data frame with column names of the shuffled matrix and corresponding column cluster names.

Examples

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)

[Package biclustermd version 0.2.3 Index]