moderndive (version 0.2.0)

get_correlation: Get correlation value in a tidy way

Description

Determine the Pearson correlation coefficient between two variables in a data frame using pipeable and formula-friendly syntax

Usage

get_correlation(data, formula)

Arguments

data

a data frame object

formula

a formula with the response variable name on the left and the explanatory variable name on the right

Value

A 1x1 data frame storing the correlation value

Examples

Run this code
# NOT RUN {
library(moderndive)

# Compute correlation between mpg and cyl:
mtcars %>% 
   get_correlation(formula = mpg ~ cyl)
# }

Run the code above in your browser using DataLab