corrr
corrr copied to clipboard
Explore correlations in R
Prepare for release: * [x] Check [current CRAN check results](https://cran.rstudio.org/web/checks/check_results_corrr.html) * [x] [Polish NEWS](https://style.tidyverse.org/news.html#news-release) * [x] `devtools::build_readme()` * [x] `urlchecker::url_check()` * [x] `devtools::check(remote = TRUE, manual = TRUE)` * [x]...
I recently found out about corrr and the network_plot function in it. I plotted some data I am working on and I got really excited by how much theoretical sense...
Would it be possible to add a "weights" option? Most tidyverse packages do not really support weights and there is probably a good reason for that. Still, weights can be...
Hi, thanks for yet another great package! I was wondering whether partial correlations https://en.wikipedia.org/wiki/Partial_correlation are ultimately within the scope of `corrr`. Might be extremely useful for model building and will...
`correlate()` allows for a 2nd data input, y. This raises the question of whether correlate is ever intended to be used with y differing from x. It would be good...
Connecting to an AWS Redshift database via an odbc connection. I'm using `corrr` version 0.4.0. Using the `correlate()` function when variables are doubles seem to work. Adding an integer when...
Hi all, I have 630 columns and can't get it to work. My code is; ```library(tidyverse) library(corrr) brand_data % network_plot(min_cor=0) df %>% rplot ``` The error is `Error in stats::cmdscale(abs(distance))...
I know `colpair_map` is a solution in relation to #42. In the case of `colpair_map` we have the following for `cor`: ``` r library(corrr) colpair_map(.data = mtcars, .f = cor,...
Hi there, Thanks for the great network_plot function. I wonder if we can just focus on a single variable in the correlation matrix. For example: ``` res.cor focus(BELONG) network_plot(res.cor, min_cor...
## Feature I have been using the package `corrplot` where there is a function `corrplot::corrplot.mixed `. This function uses mixed methods to visualize a correlation matrix which in the package...