gnuplot option to use small font

This commit is contained in:
Arvid Norberg 2008-05-09 00:53:59 +00:00
parent 318a455f68
commit c91429e977
1 changed files with 5 additions and 1 deletions

View File

@ -24,12 +24,16 @@ out.close()
out = open('dht_announce_distribution.gnuplot', 'w+')
out.write('''
set term png size 1200,700
set term png size 1200,700 small
set output "dht_announce_distribution.png"
set title "bucket # announces are made against relative to target node-id"
set ylabel "# of announces"
set style fill solid border -1 pattern 2
plot "dht_announce_distribution.dat" using 1:2 title "announces" with boxes
set terminal postscript
set output "dht_announce_distribution.ps"
replot
''')
out.close()