Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Increase width and heigth of gnuplot output

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?

like image 218
Cusy Avatar asked Oct 02 '12 16:10

Cusy


1 Answers

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.

like image 200
andyras Avatar answered Sep 23 '22 20:09

andyras