
Last chance! 50% off unlimited learning
Sale ends in
pcor
can calculate the pairwise partial correlations for each pair of variables given others. In addition, it gives us the p value as well as statistic for each pair of variables.
pcor(x, method = c("pearson", "kendall", "spearman"))
p-value
and statistic
will be provided if the number of variables are greater than or equal to the sample size.
pcor.test
, spcor
, spcor.test
# data
y.data <- data.frame(
hl=c(7,15,19,15,21,22,57,15,20,18),
disp=c(0.000,0.964,0.000,0.000,0.921,0.000,0.000,1.006,0.000,1.011),
deg=c(9,2,3,4,1,3,1,3,6,1),
BC=c(1.78e-02,1.05e-06,1.37e-05,7.18e-03,0.00e+00,0.00e+00,0.00e+00
,4.48e-03,2.10e-06,0.00e+00)
)
# partial correlation
pcor(y.data)
Run the code above in your browser using DataLab