separate PyPlot window from Pluto cell #1519
-
Is there a way to force Pluto to create a new separate PyPlot window that has the usual PyPlot interactive buttons (e.g., zoom, pan, etc) instead of having PyPlot embed in Pluto? An example of the separate PyPlot window that I'm talking about can be generated if one plots from the Julia REPL:
I understand one can custom program interactive behaviour into Pluto, but the default PyPlot interactive buttons are enough for my usage. I have tried display() in the Pluto cell, and it isn't working on my machine. My code:
I'm using Julia v1.6.2, Pluto v0.16.0, Fedora 34. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I believe you should be able to display the PyPlot window by calling |
Beta Was this translation helpful? Give feedback.
I believe you should be able to display the PyPlot window by calling
PyPlot.show()
in a Pluto cell.