We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
imshow
Hey,
I've seen that PyPlot.jl in general works, but in Pluto nothing really happens for:
PyPlot.jl
begin using PyPlot PyPlot.imshow(randn((3,3))) end
Only some output:
PyObject <matplotlib.image.AxesImage object at 0x7f08ddf99700>
In the REPL that pops-up an external, interactive viewer. In Jupyter it is within the browser, but I would be happy to have it externally.
Thanks a lot,
Felix
Setup:
Ref: Pluto issue
The text was updated successfully, but these errors were encountered:
Hi!
It would be great to have plot and imshow working out of the box in Pluto!
plot
For the moment, I have found the following workaround using gcf to get a Figure object:
gcf
Figure
import PyPlot begin PyPlot.figure() PyPlot.imshow(randn((3,3))) PyPlot.gcf() end
Best!
Sorry, something went wrong.
No branches or pull requests
Hey,
I've seen that
PyPlot.jl
in general works, but in Pluto nothing really happens for:Only some output:
In the REPL that pops-up an external, interactive viewer. In Jupyter it is within the browser, but I would be happy to have it externally.
Thanks a lot,
Felix
Setup:
Ref: Pluto issue
The text was updated successfully, but these errors were encountered: