I googled a bit but could not find a good solution. I have a sequence of events: A, B and C occurring over time repeatedly and I want to plot this on a timeline somewhat as follows:
AAABBBBAAAAACCAAAAAAAAABBBBABBBBB
But in a more aesthetic and colorful way. I use gnuplot, so, if someone knows the trick with gnuplot, that would be great.
The format of raw data is as follows:
A 4
B 6
C 10
A 14
B 17
C 22
A 27
B 27
C 35
A 35
And the gnuplot script that I worked out is as follows:
set terminal png enhanced
set style data histograms
set style histogram columnstacked
set output "timeline.png"
set xlabel "events"
set ylabel "min"
set auto x
set xtics 1
set key top left
set boxwidth 0.5 relative
set style fill solid 0.6 border -1
plot 'timeline.txt' using 2 t "execution"
After running this script on above data, I get the following plot:

I want: 1) the colors to be repeating based on the letters on first column and 2) the histogram to be horizontal, one-dimension plot.
Thanks for any help.