fixDataStructure(WGCNA)
fixDataStructure()所属R语言包:WGCNA
Put single-set data into a form useful for multiset calculations.
把单集数据成有用的形式为多集的计算。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Encapsulates single-set data in a wrapper that makes the data suitable for functions working on multiset data collections.
封装在一个包装,使功能multiset的数据收集工作数据,适用于单组数据。
用法----------Usage----------
fixDataStructure(data, verbose = 0, indent = 0)
参数----------Arguments----------
参数:data
A dataframe, matrix or array with two dimensions to be encapsulated.
一个数据框,矩阵或阵列与两种尺寸封装。
参数:verbose
Controls verbosity. 0 is silent.
控制冗长。 0是无声的。
参数:indent
Controls indentation of printed progress messages. 0 means no indentation, every unit adds two spaces.
控制压痕,印刷进度消息。 0表示无压痕,每个单元增加两个空格。
Details
详细信息----------Details----------
For multiset calculations, many quantities (such as expression data, traits, module eigengenes etc) are presented by a common structure, a vector of lists (one list for each set) where each list has a component data that contains the actual (expression, trait, eigengene) data for the corresponding set in the form of a dataframe. This funtion creates a vector of lists of length 1 and fills the component data with the content of parameter data.
对于multiset的计算,许多的数量(如基因表达数据,性状,模块特征基因等)是由一个共同的结构,一个向量的列表(一个为每个集列表)列表,其中每个有一个组件包含data实际(表达式,性状,eigengene)的对应的一组数据的形式的数据框。此FUNTION创建长度为1的向量的列表,和填充组分data与参数data内容。
值----------Value----------
As described above, input data in a format suitable for functions operating on multiset data collections.
如上所述,输入数据的的格式适合multiset的数据收集功能操作。
(作者)----------Author(s)----------
Peter Langfelder, <a href="mailtoeter.Langfelder@gmail.com">eter.Langfelder@gmail.com</a>
参见----------See Also----------
checkSets
checkSets
实例----------Examples----------
singleSetData = matrix(rnorm(100), 10,10);
encapsData = fixDataStructure(singleSetData);
length(encapsData)
names(encapsData[[1]])
dim(encapsData[[1]]$data)
all.equal(encapsData[[1]]$data, singleSetData);
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|