【发布时间】:2011-11-08 19:55:26
【问题描述】:
如何提高 gnuplot 的质量?看起来这是一张非常低分辨率的图片。
这是我正在使用的文件的内容:linkage.plot
set terminal pdf
set out 'linkage.pdf'
set title "Distribution of Scores"
set xlabel "Score Value"
set ylabel "Appearences"
set yrange [0:50000]
set xrange [0:70]
binwidth=.25
bin(x,width)=width*floor(x/width)
plot 'linkage.dat' using (bin($1,binwidth)):(1.0) title "Scores"\
smooth freq with boxes
【问题讨论】:
标签: image graph gnuplot histogram