Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a data file that looks a bit like this:

A 0.2  0.5
B 0.65 0.8
C 0.4  0.2

i.e., it contains three columns where the first column contains labels and the other two columns float values. Columns are separated by spaces.

I'd like to plot this in a way that the labels appear as tics on the x-axis while the columns are plotted as two differently colored barcharts on top of each other.

How can I achieve this using Gnuplot?

share|improve this question
The folks over at StackOverflow may know better than CV. – Christopher Aden Mar 26 '11 at 0:48

migrated from stats.stackexchange.com Sep 2 '12 at 11:41

2 Answers

Assuming your data are stored in the file 1.dat, stacked barcharts might be generated as follows:

set style data histograms
set style histogram rowstacked
set boxwidth 1 relative
set style fill solid 1.0 border -1
set yrange [0:1.5]
set datafile separator " "
plot '1.dat' using 2 t "Var 1", '' using 3:xticlabels(1) t "Var 2"

As you can see, barcharts are no different from histograms (at least, from within Gnuplot). More information can be found on gnuplot demo page.

enter image description here

share|improve this answer

I can't answer this question myself, but you might try asking on the dedicated Gnuplot forum here. In the past I have always got an answer to my problems with Gnuplot from this forum.

share|improve this answer
Thanks for the link. – user3383 Feb 24 '11 at 9:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.