Dear Statalisters,
I've plotted a graph using the following command:
To my surprise, this .eps file is more than 300Mb, and I'm having difficulties calling it from latex. All other graphs that I've plotted is much smaller (10Kb). Although my dataset is huge (8Gb), I don't understand why this particular .eps file will be huge as well. There are reasonable number of points on the x-axis (17 years).
What can I do to reduce the size of my graph, given that I do not want to change the .eps format? Or must I export the graph as pdf or any other format?
I've plotted a graph using the following command:
Code:
bys year: egen line1= pctile(data), p(50) bys year: egen line2= pctile(data), p(75) bys year: egen line3= pctile(data), p(90) twoway (line line1 year) (line line2 year) (line line3 year) graph export test.eps, replace
What can I do to reduce the size of my graph, given that I do not want to change the .eps format? Or must I export the graph as pdf or any other format?
Comment