| PLMset2exprSet {affyPLM} | R Documentation |
This function converts a PLMset to an ExpressionSet. This is often useful since many Bioconductor functions operate on ExpressionSet objects.
PLMset2exprSet(pset) pset2eset(pset)
pset |
The PLMset to convert to ExpressionSet. |
These functions convert PLMset objects to ExpressionSet objects.
This is often useful since many Bioconductor functions operate on
ExpressionSet objects. Note that the function pset2eset
is a wrapper for PLMset2exprSet.
returns a ExpressionSet
Ben Bolstad bmb@bmbolstad.com
if (require(affydata)) {
data(Dilution)
Pset <- fitPLM(Dilution)
eset <- pset2eset(Pset)
}