Convert a PLMset to an ExpressionSet
转换到ExpressionSet PLMset
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function converts a PLMset to an ExpressionSet. This is often useful since many Bioconductor functions operate on ExpressionSet objects.
此功能转换到ExpressionSet PLMset。这往往是有益的,因为许多Bioconductor功能操作ExpressionSet对象。
用法----------Usage----------
PLMset2exprSet(pset)
pset2eset(pset)
参数----------Arguments----------
参数:pset
The PLMset to convert to ExpressionSet.
PLMset转换ExpressionSet。
Details
详情----------Details----------
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.
这些功能转换PLMset对象ExpressionSet对象。这往往是有益的,因为许多Bioconductor功能ExpressionSet对象。注意的功能pset2eset是PLMset2exprSet的包装。
值----------Value----------
returns a ExpressionSet
返回ExpressionSet
作者(S)----------Author(s)----------
Ben Bolstad <a href="mailto:bmb@bmbolstad.com">bmb@bmbolstad.com</a>
参见----------See Also----------
ExpressionSet
ExpressionSet
举例----------Examples----------
if (require(affydata)) {
data(Dilution)
Pset <- fitPLM(Dilution)
eset <- pset2eset(Pset)
}