cluster_genes: Cluster a gene count matrix

View source: R/cluster.R

cluster_genesR Documentation

Cluster a gene count matrix

Description

cluster_genes clusters the matrix by rows (genes) cluster_samples clusters the matrix by column (samples) cluster_both clusters by both row and column

Usage

cluster_genes(counts_m)

cluster_samples(counts_m)

cluster_both(counts_m)

Arguments

counts_m

matrix of counts

Value

matrix

Examples

counts_m <- matrix(rnorm(25), ncol = 5, 
  dimnames = list(paste("Gene", 1:5, sep = "-"), 
                  paste("sample", 1:5, sep = "-")))

 cluster_genes(counts_m)
 
 cluster_samples(counts_m)
 
 cluster_both(counts_m)

richysix/rnaseqVis documentation built on Feb. 12, 2024, 1:37 p.m.