I want to plot 5x9000+ data points. I am already using:
\usepgfplotslibrary{external}
\tikzexternalize
and
-shell-escape -enable-write18
in PDFLatex. However, I still get the memory error. I am reading the data from a file like this:
\pgfplotstableread{C:\\data_1373554136.txt}
\datatable
%\addplot table[x = 0] from \datatable ;
\addplot table[y = 1] from \datatable ;
\addplot table[y = 2] from \datatable ;
\addplot table[y = 3] from \datatable ;
\addplot table[y = 4] from \datatable ;
\addplot table[y = 5] from \datatable ;
My data in the file looks like this:
Time 0 1 2 3 4 5
0 0 0 0 0 0 0
1 0 1 7 19 1 115
I am running on Windows 7 using Miktex.
Any suggestions there?
externallibrary only helps with memory problems if the individualtikzpictureenvironments are small enough to compile correctly. In your case, try compiling the document withlualatexinstead ofpdflatex. – Jake Jul 11 '13 at 15:15