How do I increase the quality in gnuplot? It seems like it's a very low-res image.
Here's the contents of the file i'm using: 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