Horizontal Bar Graphs With Labels in Gnuplot |
January 10th, 2011 |
tech |
# index, age, name 1 24 jeff 2 25 julia 3 22 rose 4 20 aliceGnuplot file:
set terminal png size "200x200" set output 'demo.png' set nokey unset border unset xtics plot 'demo.dat' using 1:(-1):3 with labels rotate right, \ 'demo.dat' using 1:2 with boxesThen rotate right in an image editor to get:
Comment via: substack