PyPlot.jl
PyPlot.jl copied to clipboard
PyPlot support for one interactive figure in IJulia
trafficstars
I often find it could be useful if I could force a figure to be displayed in pygui while all figure before and after should be displayed inline in the notebook. I imagine something like:
pygui(true) do # plot in pygui
plot(1:10)
end
plot(1:10) # display in notebook
Unfortunately, I don't think that's supported by the Matplotlib backends. They either render to a window or a buffer, but not both simultaneously, I think?