Home > Enterprise >  How to plot histograms on a 3D plot?
How to plot histograms on a 3D plot?

Time:10-16

I have collected data on an experiment, where I am looking at property A over time, and then making a histogram of property A at a given condition B. Now the deal is that A is collected over an array of B values. So I have a histogram that corresponds to B=B1, B=B2, ..., B=Bn. What I want to do, is construct a 3D plot, with the z axis being for property B, and the x axis being property A, and y axis being counts.

As an example, I want the plot to look like this (B corresponds to Temperature, A corresponds to Rg):

enter image description here

How do I pull this off on python?

CodePudding user response:

The python library enter image description here

See this thread as reference.

  • Related