cor_select {rstatix} | R Documentation |
Subset Correlation Matrix
Description
Subset Correlation Matrix
Usage
cor_select(x, ..., vars = NULL)
Arguments
x |
a correlation matrix. Particularly, an object of class |
... |
One or more unquoted expressions (or variable names) separated by commas. Used to select variables of interest. |
vars |
a character vector containing the variable names of interest. |
Value
a data frame
See Also
cor_mat()
, pull_triangle()
, replace_triangle()
Examples
# Compute correlation matrix
#::::::::::::::::::::::::::::::::::::::::::
cor.mat <- mtcars %>%
select(mpg, disp, hp, drat, wt, qsec) %>%
cor_mat()
# Subsetting correlation matrix
#::::::::::::::::::::::::::::::::::::::::::
# Select some variables of interest
cor.mat %>%
cor_select(mpg, drat, wt)
# Remove variables
cor.mat %>%
cor_select(-mpg, -wt)
[Package rstatix version 0.7.2 Index]