I would like to plot the corresponding x for a given name.
by that I mean, for foo it has to plot [10,20,30] in the form of a histogram and all foo, bar, baz need to be in the same graph.(I don't require 3d :) )
import pylab as P
name = ['foo', 'bar', 'baz']
x = [[10,20,30],[40,50,60],[70,80,90]]
P.figure()
P.hist(x, 10, histtype='bar',
color=['crimson', 'burlywood', 'chartreuse'],
label=['Crimson', 'Burlywood', 'Chartreuse'])
P.show()
