Friends,
In the following. I am not able to understand how this plot.show() works. I
have commented the problem in the following examples.

>>> plt.plot(x,y,'b-')
[<matplotlib.lines.Line2D object at 0x9e50ecc>]
>>> plt.show()   *# shows the plot of x Vs y*

>>> plt.ylim( (1.5,4.5) )
(1.5, 4.5)
>>> plt.show()       *# Does nt show the plot*

>>> plt.ylim( ymin=1.5,ymax=4.5 )
(1.5, 4.5)
>>> plt.show()   *# Does nt show the plot*

Thanks,
Bala
------------------------------------------------------------------------------
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to