I'm new to PythonXY and Matplotlib. I installed PythonXY (v2.7.3.1) in default full mode.
I use the "IPython Qt Console" application.
I draw something using matplotlib.pyplot
(imported as plt
).
For example. When plt.plot([1,3,2,4])
, the figure display in the same IPython console immediately.
If this, I cannot add some other properties, plt.title
, plt.xlabel
, plt.ylabel
, or more. Why? And how can I draw figures in another window, adding more properties, and making the figure not display until plt.show()
?