Description Usage References Examples
Sample data with 789 genes and 18 evenly spaced gene expression measurements.
1 | data("mExpression")
|
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.
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)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.