I am using the pythons histogram function to generate 1d histograms, each of which is associated with this experiment. Now I understand that the Hist function allows you to display multiple histograms on the same x axis for comparison. I usually use something similar to the following for this purpose, and the result is a very good graph, where x1, x2 and x3 are defined as follows x1 = length expt1 x2 = length expt2 x3 = length expt3
P.figure()
n, bins, patches = P.hist( [x0,x1,x2], 10, weights=[w0, w1, w2], histtype='bar')
P.show()
I was hoping to try to achieve a 3D effect, and so I ask to what extent does anyone know if it is possible for each unique histogram to shift from another in the y plane on this module, thereby generating a 3D effect.
I would be grateful for any help with this.
source
share