JuliaPy / PyPlot.jl

Plotting for Julia based on matplotlib.pyplot
https://github.com/JuliaPy/PyPlot.jl
MIT License
475 stars 87 forks source link

how to animate pyplot() bexkend ? While not woers lik in gr()! #424

Open programistawpf opened 5 years ago

programistawpf commented 5 years ago

How to animate pyplot() beckend ? While not woers lik in gr()!

using Plots ; pyplot()
for i=1:20
display(plot(rand(50)))
end

Only last plot is displayed (Unfortunatly I cant to use gr() beckend on win 7 :/) Paul

MaxandreJ commented 5 years ago

You can add sleep(0.3) in your loop.

programistawpf commented 5 years ago

Thanks it worikin :)