cor_reorder {rstatix} | R Documentation |
Reorder Correlation Matrix
Description
reorder correlation matrix, according to the coefficients, using the hierarchical clustering method.
Usage
cor_reorder(x)
Arguments
x |
a correlation matrix. Particularly, an object of class |
Value
a data frame
See Also
cor_mat()
, cor_gather()
, cor_spread()
Examples
# Compute correlation matrix
#::::::::::::::::::::::::::::::::::::::::::
cor.mat <- mtcars %>%
select(mpg, disp, hp, drat, wt, qsec) %>%
cor_mat()
# Reorder by correlation and get p-values
#::::::::::::::::::::::::::::::::::::::::::
# Reorder
cor.mat %>%
cor_reorder()
# Get p-values of the reordered cor_mat
cor.mat %>%
cor_reorder() %>%
cor_get_pval()
[Package rstatix version 0.7.2 Index]