I couldn't find any option to expand the margins for plot generated by corrplot.mixed
in the corrplot
package. Any suggestion would be appreciated!
library(corrplot)
cor_matrix <- structure(c(1, 0.31596392056465, -0.120092224085334, -0.345097115278159,
0.31596392056465, 1, 0.158912865564527, -0.606426850726639, -0.120092224085334,
0.158912865564527, 1, -0.134795548155303, -0.345097115278159,
-0.606426850726639, -0.134795548155303, 1), .Dim = c(4L, 4L),
.Dimnames = list(NULL, c("var_1", "var_2", "var_3", "var_4")))
corrplot.mixed(cor_matrix, order = "AOE", upper = "ellipse", lower = "number",
tl.cex = 2, cl.cex = 2, number.cex = 2)
Answer my own question for future readers