corrr (version 0.4.0)

rearrange: 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 correlate.

method

String specifying the arrangement (clustering) method. Clustering is achieved via seriate, which can be consulted for a complete list of clustering methods. Default = "PCA".

absolute

Boolean whether absolute values for the correlations should be used for clustering.

Value

cor_df. See correlate.

Examples

Run this code
# NOT RUN {
x <- correlate(mtcars)

rearrange(x) # Default settings
rearrange(x, method = "HC")  # Different seriation method
rearrange(x, absolute = FALSE)  # Not using absolute values for arranging
# }

Run the code above in your browser using DataLab