-
Notifications
You must be signed in to change notification settings - Fork 89
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
How to hide grid when plotting a large matrix #42
Labels
Comments
M <- matrix(runif(2500, 0.5, 1), nrow = 50)
corrplot(M, method = "color", cl.pos = "n", tl.pos = "n", addgrid.col = NA) |
Thanks, it works ! |
YES. Many thanks for your passion and great job! |
It looks like that current API works as follows:
And I'm not sure if it is a feature or a bug. |
YES. It's a feature:) |
fixed in #47 |
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This might be a bug, inconsistent API, missing feature or bug in the documentation.
In
corrplot.mixed.R
the parameteraddgrid.col
is documented as:#' @param addgrid.col The color of grid, if \code{NULL}, don't add grid.
In
corrplot.R
the parameteraddgrid.col
is documented as:It looks like it should be possible to use
addgrid.col
to disable the rendering of the grid.But it does not work. See the following code snippet:
However, I would like to generate something like this:

The text was updated successfully, but these errors were encountered: