Thanks for putting together CLNUPLOT. I had some interest in putting labels on the x axis with a box plot -- i.e., being able to do something like<br><br>CLNUPLOT> (write-plot (clnuplot:make-plot   <br>  :bar  <br>  '((1 2 "a") (2 2.5 "b") (3 3.1 "c"))  <br>
  :linewidth 3.0  <br>  :key "off"<br>  :filename "bar12"  <br>  :xlabel "Bin Number"  <br>  :ylabel "Dance Partners"  <br>  :x-coord #'first  <br>  :y-coord #'second  <br>  :title "Bin Number versus Dance Partners"  <br>
  :ymin 0.0) :postscript)<br>#<GNUPLOT {B5EFB49}><br>CLNUPLOT> <br><br><br>If interested, the attached diff should support the above syntax... The main changes:<br>- extending the data points for the box plot type so that there is a fourth 'column', the label column<br>
- altering the plot command to use xticlabels<br><br><br>Thanks again,<br><br>Alan<br>