I have a data file similar to the one below (there are totally 10 rows):
1.5 1.6 3.0 4.0 1.2 1.3
1.7 1.1 2.6 3.4 1.5 1.6
......
Each row is corresponding to the results of 3 methods on a dataset, where the first two values are for the first method, the next two for the second method and the last two for the last method. I want to generate a stacked bar diagram, such that
For each dataset, there would be 3 bars, each corresponding to a method;
For each method, its bar is split into two, where the bottom (resp. top) one represents the first (resp. second) value;
The color of the bar for a method is different from that of another method.
More specifically, I want a diagram like link (Sorry, I do not have enough reputations to show a picture here.)
How can I achieve this using GNUPlot?