I have 13 variables that each of them has up to 1000000 elements. I want to draw a pairwise scatterplot for them but I couldn't do that because the size of my data was large. Any idea to do such thing? I have tried this:
pairs(data.mat)
graphics.off()
library(GGally)
ggpairs(data.mat, colour='Species', alpha=0.4)
and it couldn't do that and came out from R software.