corrplot
corrplot copied to clipboard
A visual exploratory tool on correlation matrix
Hi developers, Thanks for this great package! I am working on a new heatmap function for my R package [NetCoMi](https://github.com/stefpeschel/NetCoMi), for which I am using your corrplot package. I would...
When using `method="number"` I like to label significant correlations with `"label_sig"`, by default these over plot the numbers. I am able to address the issue by changing line 445 in...
Addresses Issue #275. The correlation between drat and gear is now listed as 0.70 and not 0.7. ``` r library(dplyr) library(corrplot) M select(gear, am, drat) |> cor() corrplot( M, type...
The correlation between drat and gear is listed as 0.7 and not 0.70. ``` r library(dplyr) library(corrplot) M select(gear, am, drat) |> cor() corrplot( M, type = "lower", diag =...