I'm using ggpairs() in the GGally package. The pairs plot is of four continuous variables, and I gave another column, a factor with 2 levels, to a colour argument which worked very nicely, both coloring the points as I expected and (bonus!) in the upper-diagonal part of the plot reporting the correlations by that factor level. My only problem is that the text reporting the correlations is too small.
Can I increase the size of the text reporting correlations in a ggpairs() plot?
I tried giving a cex argument, it seems to have no effect. I'm already using size for yet another variable; it doesn't affect the text.
For a specific example:
require(GGally)
mtcars$cyl <- as.factor(mtcars$cyl)
ggpairs(mtcars, columns = c(1, 5), colour = "cyl")