I have a matrix with ~750k elements that I would like to plot with corrplot. It plots it alright without errors but the plot it produces is empty and only has the color scale. When using commnad-line R, it shows the plot in the "Quartz 2" window but then disappears after a few seconds. What gives?
library("corrplot")
mat <- matrix(data = rexp(200, rate = 10), nrow = 800, ncol = 800)
col1 <- colorRampPalette(c("#00007f", "#00007f", "#00007f", "#00007f", "blue", "cyan", "#00cc00", "yellow", "#FF7F00", "red"), interpolate = "linear", alpha = TRUE)
corrplot(splotMat, is.corr = FALSE, method = "color", tl.pos = "n", col = col1(100), cl.lim = c(-0.14, 1))