Or if you want to create the second plot in a different window, use reuse=false
:
using Plots; pyplot()
plot(rand(3))
plot(rand(5), reuse=false)
But if your question is how to pause execution until the first plot is closed, I have no idea.
Or if you want to create the second plot in a different window, use reuse=false
:
using Plots; pyplot()
plot(rand(3))
plot(rand(5), reuse=false)
But if your question is how to pause execution until the first plot is closed, I have no idea.