flowTransResult-class(flowTrans)
flowTransResult-class()所属R语言包:flowTrans
Class "flowTransResult"
类“flowTransResult”
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Class that contains the results of a call to flowTrans on a flowFrame
类包含的结果调用flowTrans一个flowFrame
类的对象----------Objects from the Class----------
Objects can be created by calls of the form new("flowTransResult", ...). The object contains three slots: the transformed flowFrame, a transform object from which the parameters can be extracted, and a dims slot containing a character vector of the dimensions that have been transformed.
创建对象可以通过检测的形式new("flowTransResult", ...)。该对象包含三个插槽:的转化flowFrame,一个transform对象,从中可以提取参数,和dims插槽包含已转化的尺寸的特征向量。
插槽----------Slots----------
result: Object of class "flowFrame". The transformed data.
result类"flowFrame"的对象。转换后的数据。
trans: Object of class "transform". The transform applied to the flowFrame. Parameters can be extracted via summary(trans).
trans类"transform"的对象。变换的flowFrame。参数可以通过summary(trans)提取。
dims: Object of class "character". The names of the dimensions that have been transformed.
dims类"character"的对象。对已转化的尺寸的名称。
方法----------Methods----------
summary signature(object = "flowTransResult"): Summarize the transformed data.
摘要signature(object = "flowTransResult"):总结转换后的数据。
作者(S)----------Author(s)----------
Greg Finak <greg.finak@ircm.qc.ca>, Raphael Gottardo <raphael.gottardo@ircm.qc.ca>.
参考文献----------References----------
<h3>See Also</h3> <code>extractParams</code> <code>summary</code>
举例----------Examples----------
m <- t(matrix(rnorm(10000),2))
colnames(m) <- c("A","B")
m <- flowFrame(m)
res <- flowTrans(m,"mclMultivBoxCox", c("A","B"),
n2f=FALSE, parameters.only=FALSE)
summary(res)
extractParams(res)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|