mExpression: Gene expression data set of Yeast.

Description Usage References Examples

Description

Sample data with 789 genes and 18 evenly spaced gene expression measurements.

Usage

1
data("mExpression")

References

Spellman, P. T., Sherlock, G., Zhang, M. Q., Iyer, V. R., Anders, K., Eisen, M. B., ... & Futcher, B. (1998). Comprehensive identification of cell cycle-regulated genes of the yeast Saccharomyces cerevisiae by microarray hybridization. Molecular biology of the cell, 9(12), 3273-3297.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
# load the package 
library(GeneClusterNet)

data(mExpression)

# first 5 rows

Sample=mExpression[1:5,]

plot(1:18,Sample[1,],type="l", ylim=c(min(Sample),max(Sample)),xlab="Time",ylab="Expression",lwd=2)
color=1
for (i in 2:5){
  color=color+1
  lines(1:18,Sample[i,],col=color,lwd=2)
}

GeneClusterNet documentation built on May 1, 2019, 8:40 p.m.