I'm a completely newbie with Gnuplot, I just read this basic tutorial: http://people.duke.edu/~hpgavin/gnuplot.html
I want to plot this data:
Processor1 t4 2 7 t3 7 12 t2 12 17
Processor2 t5 0 9 t1 10 13
And the resulting plot should be something like this image:
I searched through the web but I didn't find any plot like this, the most similar that I found were stacked bars, but they are not what I need.
Someone knows how to get close to this plot using Gnuplot (could be other plotting program, I choose Gnuplot because it's a well known tool for this purpose).
@edit 1
The image above is from http://rtime.felk.cvut.cz/scheduling-toolbox/manual/algorithms-scheduling.php
@edit 2
I'd like to thank Michael O. for generate a plotting for my data, even being a manual plotting it was amazing.
Actually I gave up of trying to plot this using a generic plotting program, like gnuplot. I started using the matlab toolbox that generated the image above: rtime.felk.cvut.cz/scheduling-toolbox
It was fairly simple to plot this using this toolbox, I'm going to write here the script I used to plot the graphic referring to the data above.
Script: schedulingSample.m
addpath(path,'/home/carloshmm/Matlab/toolbox/TORSCHE/scheduling/');
t1 = task('t1', 3, 10, inf, inf, 1, 2);
t2 = task('t2', 5, 12, inf, inf, 1, 1);
t3 = task('t3', 5, 7, inf, inf, 1, 1);
t4 = task('t4', 5, 2, inf, inf, 1, 1);
t5 = task('t5', 9, 0, inf, inf, 1, 2);
T = [t1 t2 t3 t4 t5];
add_schedule(T, 'Task Scheduling Graphic', T.ReleaseTime, T.ProcTime, T.Processor);
plot(T);
waitforbuttonpress;
Resulting plot:


