Pcor.test {sasLM} | R Documentation |
Partial Correlation test of multiple columns
Description
Testing partial correlation between many columns of data with Pearson method.
Usage
Pcor.test(Data, x, y)
Arguments
Data |
a numeric matrix or data.frame |
x |
names of columns to be tested |
y |
names of control columns |
Details
It performs multiple partial correlation test. It uses "complete.obs" rows of x and y columns.
Value
Row names show which columns are used for the test
Estimate |
point estimate of correlation |
Df |
degree of freedom |
t value |
t value of the t distribution |
Pr(>|t|) |
probability with the t distribution |
Author(s)
Kyun-Seop Bae k@acr.kr
Examples
Pcor.test(mtcars, c("mpg", "hp", "qsec"), c("drat", "wt"))
[Package sasLM version 0.10.4 Index]