Convert a Correlation Test Data Frame into a Correlation Matrix
Convert a correlation test data frame, returned by the
cor_test()
, into a correlation matrix format.
as_cor_mat(x)
x |
an object of class |
Returns a data frame containing the matrix of the correlation coefficients. The output has an attribute named "pvalue", which contains the matrix of the correlation test p-values.
# Pairwise correlation tests between variables #::::::::::::::::::::::::::::::::::::::::::::::: res.cor.test <- mtcars %>% select(mpg, disp, hp, drat, wt, qsec) %>% cor_test() res.cor.test # Convert the correlation test into a correlation matrix #::::::::::::::::::::::::::::::::::::::::::::::: res.cor.test %>% as_cor_mat()
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.