matrix2long(TripleR)
matrix2long()所属R语言包:TripleR
Convert a quadratic matrix to long format
长格式转换为二次矩阵
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function converts data from a quadratic round robin matrix into long format.
此功能将数据从一个二次循环矩阵为长格式。
用法----------Usage----------
matrix2long(M, new.ids=TRUE, var.id="value")
参数----------Arguments----------
参数:M
A matrix with actors in rows and partners in columns)
A矩阵的演员行和列的合作伙伴)
参数:new.ids
Should new ids for actors and partners be defined? (If new.ids=FALSE the row and column names are taken. In that case, you have to make sure, that rows and columns have the same set of names.)
新的ID演员和合作伙伴定义的? (如果new.ids = FALSE的行和列的名称。在这种情况下,你必须确保,行和列具有相同的组名称。)
参数:var.id
The name of the column with the measured variable in the returned data frame
与测得的变量的名称列在返回的数据框
值----------Value----------
A data frame in long format
长格式的数据框
参见----------See Also----------
long2matrix
long2matrix
实例----------Examples----------
#The example data are taken from the "Mainz Freshman Study" and consist [示例数据是从“美因茨大学新生研究”,由]
# of ratings of liking as well as ratings of the metaperception of [,喜欢的评级以及评级的metaperception]
# liking at zero-acquaintance using a Round-Robin group of 54 participants [使用一个循环组54人喜欢在零熟人]
# (Back, Schmukle, & Egloff, in pres)[(返回,Schmukle,与Egloff的压力)]
# load a data set in matrix style[数据加载中设置矩阵式]
data("liking_a")
str(liking_a)
long <- matrix2long(liking_a)
str(long)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|