forked from premiere/premiere-libtorrent
gnuplot option to use small font
This commit is contained in:
parent
318a455f68
commit
c91429e977
|
@ -24,12 +24,16 @@ out.close()
|
||||||
|
|
||||||
out = open('dht_announce_distribution.gnuplot', 'w+')
|
out = open('dht_announce_distribution.gnuplot', 'w+')
|
||||||
out.write('''
|
out.write('''
|
||||||
set term png size 1200,700
|
set term png size 1200,700 small
|
||||||
set output "dht_announce_distribution.png"
|
set output "dht_announce_distribution.png"
|
||||||
set title "bucket # announces are made against relative to target node-id"
|
set title "bucket # announces are made against relative to target node-id"
|
||||||
set ylabel "# of announces"
|
set ylabel "# of announces"
|
||||||
set style fill solid border -1 pattern 2
|
set style fill solid border -1 pattern 2
|
||||||
plot "dht_announce_distribution.dat" using 1:2 title "announces" with boxes
|
plot "dht_announce_distribution.dat" using 1:2 title "announces" with boxes
|
||||||
|
|
||||||
|
set terminal postscript
|
||||||
|
set output "dht_announce_distribution.ps"
|
||||||
|
replot
|
||||||
''')
|
''')
|
||||||
out.close()
|
out.close()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue