GNUPLOT:努力提高质量

the*_*net 3 image graph gnuplot histogram

如何提高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
Run Code Online (Sandbox Code Playgroud)

and*_*oke 5

gnuplot pdf输出通常非常好(它通过带有抗锯齿等的cairo pdf库实现).但这里有一些可能有帮助的要点:

  • help terminal pdfgnuplot>提示符下将提供一些关于绘制pdf的帮助.

  • set terminal pdf linewidth 1 会给你一个更粗的线宽.

  • [删除 - 我的错误]