Description Usage Arguments Value Author(s) See Also Examples
PCAPlot
generates principle component plots for with the possibility
to color arrays according to a known factor.
1 2 |
Y |
A matrix of gene expression values or an object of class |
comp |
A vector of length 2 specifying which principle components to be used. |
anno |
A dataframe or a matrix containing the annotation of the arrays. |
Factor |
A character string describing the column name of |
numeric |
A logical scalar indicating whether |
new.legend |
A vector describing the names used for labelling; if |
title |
A character string giving the title. |
PCAPlot
returns a plot.
Saskia Freytag
1 2 3 4 5 6 7 8 | Y<-simulateGEdata(500, 500, 10, 2, 5, g=NULL, Sigma.eps=0.1, 250, 100, check.input=FALSE)
PCAPlot(Y$Y, title="")
# Create random annotation file
anno<-as.matrix(sample(1:4, dim(Y$Y)[1], replace=TRUE))
colnames(anno)<-"Factor"
try(dev.off(), silent=TRUE)
PCAPlot(Y$Y, anno=anno, Factor="Factor", numeric=TRUE, title="")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.