I want to make a 3d bar plot with python, and I discovered the bar3d function. Here is the documentation.
I do not understand which values I have to pass over to bar3d, documentation only tells me something about the appropriate format. I have found a few example on the internet, and also on stackoverflow, but these didn't help me to figure out which parameter contains which information.
Basically, this is my function:
bar3d(x, y, z, dx, dy, dz, color='b', zsort='average', *args, **kwargs)
I do not understand what x, y, z and dx, dy, dz do represent. Can anyone pls help me?