| split.AffyBatch {affy} | R Documentation |
split an AffyBatch
split.AffyBatch(x, f)
x |
an AffyBatch |
f |
a factor or list of factors |
This works just like the split function from
base. Please refers ot its documentation to learn more about the
parameter f.
A list of AffyBatch objects.
data(affybatch.example)
f <- factor(c("a", "a", "b"))
s.a <- split(affybatch.example, f)