Here is another problem.
I need ti display 13 variables.
myt <- seq(0,1,0.01)*2*pi
mydf <- data.frame(
myt = myt,
x1 = sin(myt),
x2 = sin(myt+0.05),
x3 = sin(myt+pi/8),
x4 = cos(myt),
x5 = sin(myt),
x6 = sin(myt+0.05),
x7 = sin(myt+pi/8),
x8 = cos(myt),
x9 = sin(myt),
x10 = sin(myt+0.05),
x11= sin(myt+pi/8),
x12 =cos(myt))
ggpairs(mydf,upper=list(continuous="points"))
ggpairs(mydf,upper=list(continuous="points"),params=c(cex=0.25))
ggpairs(mydf,upper=list(continuous="points"),params=c(cex=0.25,cex.axis=0.25))
As the second charts shows, cex rescues the point size.
But cex.axis is useless in the last chart.
I need to make the variable label and the axis annotations in the diagonal facets smaller.
Is there a way to accomplish this?