correlation
correlation copied to clipboard
Use new select helpers
Once insight+DW hit cran, we should implement better selection tools in correlation
https://github.com/easystats/correlation/blob/c7829ffad9c94a937c2845d35d194ae430ffd754/R/correlation.R#L303-L304
Are you referring to something like tidyverse's data masking functionality/tidy-select? That's what's on my wishlist too! Especially if we could then create varibles on the fly like so:
iris %>%
corrrelation(
select = log(Petal.Width),
select2 = log(Sepal.Length)
)