-
Notifications
You must be signed in to change notification settings - Fork 187
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
changing k
/digits
argument doesn't make any difference to ggcorrmat
plot correlations
#93
Comments
I'll look at this next. |
Okay I chased this one down. It's not your code. It works perfectly every where you control but fails when you get to line 390 and call library(ggcorrplot)
#> Loading required package: ggplot2
library(dplyr)
#>
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#>
#> filter, lag
#> The following objects are masked from 'package:base':
#>
#> intersect, setdiff, setequal, union
# Almost identical to help file example just selecting columns
corr <- mtcars %>% dplyr::select(mpg,hp,wt) %>% cor
ggcorrplot(corr,
type = "lower",
insig = "blank",
lab = TRUE,
digits = 4) Created on 2018-12-17 by the reprex package (v0.2.1) |
Thanks. I've made a PR (kassambara/ggcorrplot#16) there which should fix this. |
This should display correlations with 3 digits after the decimal point.
Created on 2018-11-21 by the reprex package (v0.2.1)
The text was updated successfully, but these errors were encountered: