I have been trying to plot 100 variables having millions of datapoints in R studio. I used scatter plot to plot the graph but the Rstudio is not responding. While it worked for few variables and datapoints. I would really appreciate any input on how to tackle these problems.
daten_h19_149_small <- daten_h19_149[1:500,] dim(daten_h19_149_small) library(lattice) splom(daten_h19_149_small[ ,3:7])
The above is working but not the below one: dim(daten_h19_149_kl) # 1811313 splom(daten_h19_149_kl[ ,1:4])