找回密码
 注册
查看: 4229|回复: 0

R语言 mefa4包 Melt()函数中文帮助文档(中英文对照)

  [复制链接]
发表于 2012-9-23 08:57:25 | 显示全部楼层 |阅读模式
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:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-23 20:16 , Processed in 0.037743 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表