I have data in the following form: % (Percentage) of agent_i having their percentage contribution at some time points:
time 1 2 3 4 5 6 7 8 ..... 200
400: 5.2 6.4 0.7 1.56 11.4 ... ... ... ...
...
...
...
20000: 0.01 0.3 87.4 4.1 7.4 ... ... ... ...
I have visualized this data as a MATLAB 'running plot' with graph evolving over time, and plotting % of each agent at each time. This gives me a video. However, I also need to have a static representation, that can be printed on paper. Thus, one figure representing this data. I've thought of making vertical bars for each time-point, with bars having stripes of different (or alternating) colors with size of the stripe corresponding to the %. This, way I lose the data of which agent has that percentage, but that can be accepted, and this is something that I can afford to lose while putting all information in a single figure.
However, colormap doesn't really help since it just colors bar stacks according to their value. I, however, want stacks of alternating colors. (and use just 2, or maximum 3 colors)
Can somebody help?