How to make a 3D scatter plot in matplotlib
You can use matplotlib for this. matplotlib has a mplot3d module that will do exactly what you want. The code above generates a figure like:
You can use matplotlib for this. matplotlib has a mplot3d module that will do exactly what you want. The code above generates a figure like:
The problem is most likely the way you have your months stored. By the looks of things I would hazard to guess they are actually text and not numbers formatted to display the name of the month in full. In order to get the months to display in your graph, you will either need to … Read more