I am using pairs
function to make scatter plots like the below plot.
I wanna increase size of numbers in axis labels, but I do not know. I appreciate if anyone can help.
You can use the below instructions to generate sample plot:
x <- matrix(rnorm(120*5),ncol=5)
col <- c("#3ABEB0", "#DD96A4")[c(rep(1, 60), rep(2,60))]
pairs(x, col = col, lower.panel = NULL, cex.labels=2, pch=19, cex = 0.8)