selfCor(TripleR)
selfCor()所属R语言包:TripleR
partial correlation
偏相关
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Performs partial correlations between x and y, controlled for z.
执行控制部分的X和Y之间的相关性,为z。
用法----------Usage----------
selfCor(x, digits=3, measure=NA)
参数----------Arguments----------
参数:x
An RR object
一个RR对象
参数:digits
Digits to which values are rounded in the output
数字四舍五入的值在输出
参数:measure
Either "behavior" or "percetion". Only affects labeling of output; if NA, the current setting of RR.style is taken as default.
无论是“行为”或“percetion”。仅影响标签的输出;,如果NA,的当前设置RR.style是作为默认。
Details
详细信息----------Details----------
Prints correlations between self ratings (if present in the round robin matrices) and SRA effects. In case of multiple groups, partial correlations are printed (controlled for group membership). The output of selfCor is also printed in the standard RR-ouput.
自我评分(如果目前在循环赛矩阵)和SRA效果的印刷品之间的相关性。在多个组的情况下,部分相关打印(控制组成员身份)。还印有标准的RR-输出功率的输出selfCor。
值----------Value----------
A data frame with correlation coefficients and p values.
一个数据框的相关系数和p值。
参见----------See Also----------
RR, getEffects
RR,getEffects
实例----------Examples----------
data(multiGroup)
RR.style("p")
# a single group[一个组]
RR1 <- RR(ex~perceiver.id*target.id, data=multiGroup[multiGroup$group.id=="2", ], na.rm=TRUE)
selfCor(RR1)
# multiple groups[多个组]
RR2 <- RR(ex~perceiver.id*target.id|group.id, data=multiGroup, na.rm=TRUE)
selfCor(RR2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|