Newbie Question...

Thanks for all who gave me a reply…

Somehow the following script worked…:

import matplotlib

matplotlib.interactive(False)

matplotlib.use(“WX”)

from matplotlib.matlab import *

plot([1,2,3,4])

show()

Thanks all for the help.

Ryugan

Ryugan,
Thanks. That fixed my problem as well: the graph
window disappearing after the call to show().

Barry

--- Ryugan Mizuta wrote:
> Thanks for all who gave me a reply....
>
> Somehow the following script worked...:
>
> import matplotlib
> matplotlib.interactive(False)
> matplotlib.use("WX")
>
> from matplotlib.matlab import *
> plot([1,2,3,4])
> show()
>
> Thanks all for the help.
>
> Ryugan
>
>