corr_finder {panelWranglR} | R Documentation |
Wrapper for find correlations
Description
Just a helper function for correl_panel.
Usage
corr_finder(df, corr_cutoff)
Arguments
df |
The dataframe to use. |
corr_cutoff |
The correlation cutoff to pass to findCorrelations |
Examples
X_1 <- rnorm(1000)
X_2 <- rnorm(1000) + 0.6 * X_1
X_3 <- rnorm(1000) - 0.4 * X_1
data_fm <- do.call( cbind, list( X_1,
X_2,
X_3 ))
corr_finder( df = data_fm,
corr_cutoff = 0.3 )
[Package panelWranglR version 1.2.13 Index]