如何提高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
答案 0 :(得分:5)
gnuplot pdf输出通常非常好(它是通过带有抗锯齿功能的cairo pdf库实现的)。但这里有一些可能会有所帮助的要点:
help terminal pdf
提示符下的 gnuplot>
将提供有关绘制pdf的帮助。
set terminal pdf linewidth 1
会为您提供更粗的线宽。
[删除 - 我的错误]