Comments

You are not authorized to post a comment

Comment

Visitor
Avatar
Question -
Is it possible to have the circle sizes dictated by p values?

I really like this package!

Thanks!
David.

Comment

Administrator
Avatar
Thank you for your comment Viliam Simko. Yes, It's ok for me to make a corrplot vignette from this post.

Best regards,
A. KASSAMBARA

Comment

Administrator
Avatar
Thank you Viliam Simko for this nice R package, I'll install the latest version of the package.

Best regards
A.Kassambara

Comment

Visitor
Avatar
Make sure you are using the latest development version of corrplot (currently v0.75) from github.
https://github.com/taiyun/corrplot/

We have fixed few bugs recently and the latest version has not yet been published on CRAN.

Install using (as also mentioned on the github page):
Code :
install.packages("devtools")
devtools::install_github("taiyun/corrplot")


Here is an example 300x300 matrix that works:
Code :
M <- matrix(runif(90000, -1, 1), nrow = 300)
corrplot(M, method = "color", tl.pos = "n", addgrid.col = NA)

Comment

Administrator
Avatar
The corrplot package can handle more than 15 variables.. Are you using the web app? In this case the correlogram is shown only when the number of variables < 15. Send me your e-mail, I'll let you know after updates...

Best Regards,
A. Kassambara
STHDA Administrator

Comment

Visitor
Avatar
I love this package, but it only works for up to 15 variables? Any workaround for more variables?