qpK2ParCor(qpgraph)
qpK2ParCor()所属R语言包:qpgraph
Partial correlation coefficients
偏相关系数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Obtains partial correlation coefficients from a given concentration matrix.
获得一个给定的浓度矩阵的偏相关系数。
用法----------Usage----------
qpK2ParCor(K)
参数----------Arguments----------
参数:K
positive definite matrix, typically a concentration matrix.
正定矩阵,通常浓度矩阵。
Details
详情----------Details----------
This function applies cov2cor to the given concentration matrix and then changes the sign of the off-diagonal entries in order to obtain a partial correlation matrix.
此功能适用于给定的浓度矩阵cov2cor然后改变偏离对角线的项的符号,以获得部分相关矩阵。
值----------Value----------
A partial correlation matrix.
偏相关矩阵。
作者(S)----------Author(s)----------
R. Castelo and A. Roverato
参考文献----------References----------
参见----------See Also----------
qpG2Sigma
qpG2Sigma
举例----------Examples----------
require(graph)
n.var <- 5 # number of variables[变量的数目]
set.seed(123)
g <- randomEGraph(as.character(1:n.var), p=0.15)
Sigma <- qpG2Sigma(g, rho=0.5)
K <- solve(Sigma)
round(qpK2ParCor(K), digits=2)
as(g, "matrix")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|