Learn R Programming

biclustermd (version 0.2.3)

row.names.biclustermd: Get data matrix row names and their corresponding row cluster membership

Description

Get data matrix row names and their corresponding row cluster membership

Usage

# S3 method for biclustermd
row.names(x)

Arguments

x

and object of class biclustermd

Value

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

Examples

Run this code
# NOT RUN {
data("synthetic")
# default parameters
bc <- biclustermd(synthetic)
bc
row.names(bc)
# this is a simplified version of the output for gather(bc):
library(dplyr)
gather(bc) %>% distinct(row_cluster, row_name)
# }

Run the code above in your browser using DataLab