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

Plotting for Julia based on matplotlib.pyplot

Results 120 PyPlot.jl issues
Sort by recently updated
recently updated
newest added
trafficstars

When I start `ProfileView` first and then `PyPlot` using the `:qt` backend as suggested [here](https://github.com/JuliaPy/PyPlot.jl/issues/104), I get the following error: ``` ERROR: InitError: PyError (PyImport_ImportModule The Python package matplotlib.pyplot could...

If `matplotlib.pyplot` exists, it means that `matplotlib` backend is already configured. It may mean that PyPlot.jl is called via PyJulia. Don't setup any GUI event loop in this case since...

Sometimes the user needs to call `] build PyCall` when the python library's version number increases (and therefore the library name changes). Is there a way to automate this? https://github.com/JuliaPy/PyCall.jl/issues/547#issuecomment-417488942

enhancement

Not sure if this is a known issue, but the following code gives me this not so nice output. (I'm currently checked out on master.) ``` julia using PyPlot figure()...

After a recent Pkg.update() I get the follwing error ``` _ _ _ _(_)_ | A fresh approach to technical computing (_) | (_) (_) | Documentation: https://docs.julialang.org _ _...

When running the following code, I get a segfault: ``` julia using PyPlot import Gtk figure() ``` I'm on Ubuntu 14.04, with libgtk-3-dev (3.10.8-0ubuntu1.6) installed. I've reproduced the segfault with...

Hello, It seems like there were a lot of related issues in the past, while I had never encountered the problem before: it seems that no backend is available for...

Steps to reproduce are below: _ _ _ _(_)_ | A fresh approach to technical computing (_) | (_) (_) | Documentation: https://docs.julialang.org _ _ _| |_ __ _ |...

Hi all, i am getting the following error when i try to add a legend to an existing plot; the code is the following: `using PyPlot;` `x=collect(linspace(0,1,100));` `y=collect(linspace(0,2,20));` `f(x,y)=sin.(x).*cos.(y);` `g(x,y)=sin.(x).*sin.(y);`...

On OSX building PyCall/PyPlot with Conda version of python, closing a plot hangs julia v0.6.2. Force quit is needed to kill julia. By way of more details, below I added...