I'm looking for a way to plot my data. Suppose you have a number of algorithms that produce a ranked list, and a classifier that identifies each item in the list as true or false. How can I produce a chart that puts each algorithm beside each other and each rank has its own square stacked as follow:
      __   __
 3   |TP| |FP|
     |__| |__|
 2   |FP| |TP|
     |__| |__|
 1   |TP| |TP|
     |__| |__|
      a    b
Where TP could be coloured green and FP could be coloured red for example.
 
     
     
    
