Weird behaviour, I\'m sure it\'s me screwing up, but I\'d like to get to the bottom of what\'s happening:
I am running the following code to create a very simple graph
As posted somewhere above:
Use plt.draw() for all your plots except the last one.
plt.draw()
For your last plot, use plt.show()
plt.show()
It's weird, but if you don't use plt.show() in the last one and try plt.draw() instead, you don't see any plots.
Good luck with this!