Reputation: 243
I've to plot 180000 points into a single EPS file. With standards gnuplot output dimensions points are too close each other and that's makes them indistinguible. Is there any way to increase the image width and height?
Upvotes: 5
Views: 7597
Reputation: 15910
Yes.
set terminal epscairo enhanced color size 100in,100in font "Arial,100"
This will make (for example) an .eps 100 inches by 100 inches with a large font. You can type
help terminal pdfcairo
at the gnuplot command line for more information.
Upvotes: 6