PyPlot.jl icon indicating copy to clipboard operation
PyPlot.jl copied to clipboard

PyPlot support for one interactive figure in IJulia

Open dhoegh opened this issue 10 years ago • 1 comments
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

dhoegh avatar Jun 10 '15 10:06 dhoegh

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?

stevengj avatar Jul 02 '15 19:07 stevengj