pc {exonmap} | R Documentation |
Get fold change t test p score for each probeset between a pair of arrays.
pc(x,group,members) fc(object) tt(object)
x |
expression data |
group |
the column to select on |
members |
vector of length 2 of column entries to compare between |
object |
a pairwise comparison object of class PC as produced by pc |
Takes the expression data in x, use the column named 'group' in its phenotypic data and compare between the two groups of arrays defined by 'members'. fc,tt can be used to extract the fold chages and p-scores out of the resultant object.
A PC object
Crispin Miller
http://bioinformatics.picr.man.ac.uk/
## Not run: r <- pc(exprs,"group",c("a",b")) fc(r)[1:1000] tt(r)[1:1000] ## End(Not run)