rearrange {corrr} | R Documentation |
Re-arrange a correlation data frame
Description
Re-arrange a correlation data frame to group highly correlated variables closer together.
Usage
rearrange(x, method = "PC", absolute = TRUE)
Arguments
x |
cor_df. See |
method |
String specifying the arrangement (clustering) method.
Clustering is achieved via |
absolute |
Boolean whether absolute values for the correlations should be used for clustering. |
Value
cor_df. See correlate
.
Examples
x <- correlate(mtcars)
rearrange(x) # Default settings
rearrange(x, method = "HC") # Different seriation method
rearrange(x, absolute = FALSE) # Not using absolute values for arranging
[Package corrr version 0.4.4 Index]