taiyun / corrplot

A visual exploratory tool on correlation matrix
https://github.com/taiyun/corrplot
Other
316 stars 86 forks source link

addgrid in mixed plot #247

Closed andeeri-k closed 2 years ago

andeeri-k commented 2 years ago

Hi, There was the issue 42 here, but about regular corrplot. I will use same matrix as an example. M <- matrix(runif(2500, 0.5, 1), nrow = 50)

If one would like to remove grid in corrplot.mixed he/she should use addgrid.col = NA (according to docs). But It has no real reflection. corrplot.mixed(M,addgrid.col = NA)

image

or corrplot.mixed(M,addgrid.col = 'green')

image

Side question. Is there is any option not to use grid on the lower part, but keep the frame? Thanks.

taiyun commented 2 years ago

Thanks.

addgrid.col works well in corrplot() but does not work in corrplot.mixed(). I will fix this bug soon.

taiyun commented 2 years ago

Fixed now.

andeeri-k commented 2 years ago

Thanks! Works perfect!