extractParams(flowTrans)
extractParams()所属R语言包:flowTrans
Extract the transformation parameters from a flowTransResult
从flowTransResult提取转换参数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extracts the transformation parameters from a flowTransResult object
从flowTransResult对象的转换参数提取
用法----------Usage----------
extractParams(x, dims = NULL)
参数----------Arguments----------
参数:x
An object of type flowTransResult returned by a call to flowTrans
一个对象的类型flowTransResult通过调用返回flowTrans
参数:dims
A character vector specifying the dimensions for which to extract transformation parameters.
指定一个特征向量提取转换参数的尺寸。
值----------Value----------
A list of length length(dims). Each element contains a vector of parameters for transforming the particular dimension.The names of the list elements correspond to the names of the dimensions.
长度length(dims)名单。每个元素都包含一个参数,特别dimension.The名对应尺寸的名称列表元素转化向量。
注意----------Note----------
flowTrans estimates common transformation parameters.
flowTrans估计常见的转换参数。
作者(S)----------Author(s)----------
Greg Finak <greg.finak@ircm.qc.ca>, Raphael Gottardo <raphael.gottardo@ircm.qc.ca>
参考文献----------References----------
<h3>See Also</h3> <code>summary</code>, <code>flowTrans</code>, <code>flowTransResult</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:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|