Melt(mefa4)
Melt()所属R语言包:mefa4
Melting Matrices
熔点矩阵
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The function reverses the side effects of cross tabulation.
该函数反转交叉制表的副作用。
用法----------Usage----------
Melt(x)
参数----------Arguments----------
参数:x
A matrix, or sparse matrix object, a list of sparse matrices with identical dimnames, a 'mefa' or 'Mefa' object.
A矩阵,或稀疏矩阵对象的,稀疏矩阵与的相同dimnames,一个“MEFA或MEFA”的对象的列表。
值----------Value----------
A data frame with columns corrsponding to rows, cols, possibly segm (names of the list if x was a list of sparse matrices), and value. value is numeric, other columns are factors.
一个数据框,列corrsponding rows,cols,可能segm(名称的列表,如果x稀疏矩阵的列表),value 。 value是数字,其他列的因素。
(作者)----------Author(s)----------
Peter Solymos <solymos@ualberta.ca>
参见----------See Also----------
stack in utils, and melt in mefa package.
stack中utils和melt中mefa包。
实例----------Examples----------
xx <- data.frame(
sample = paste("Sample", c(1,1,2,2,3,4), sep="."),
species = c(paste("Species", c(1,1,1,2,3), sep="."), "zero.pseudo"),
count = c(1,2,10,3,4,0),
segment = letters[c(6,13,6,13,6,6)])
xx
xx0 <- Xtab(count ~ sample + species, xx)
xx1 <- Xtab(count ~ sample + species + segment, xx)
(M1 <- Melt(xx0))
Melt(as.matrix(xx0))
(M2 <- Melt(xx1))
stopifnot(identical(Xtab(value ~ rows + cols, M1), xx0))
stopifnot(identical(Xtab(value ~ rows + cols + segm, M2), xx1))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|