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

A similar issue was reported [here](https://github.com/JuliaGraphics/Immerse.jl/issues/60). In my case, to produce the crash this is sufficient: ``` Julia Using PyPlot plot(rand(10)) ``` ``` julia: symbol lookup error: /usr/bin/../lib/libpangoft2-1.0.so.0: undefined symbol:...

Systems: Ubuntu 14.10 and OSX Libs: IJulia, PyCall, PyPlot all even with master ``` julia using PyPlot matshow(rand(10, 10)) ``` works from the Julia REPL but segfaults intermittently in the...

I would like to use the backend gtk, because the backend qt conflicts with my QML GUI (see: https://github.com/barche/QML.jl and https://github.com/barche/QML.jl/issues/5 ). But I get the following error: ``` julia>...

Hello stevengj and all the gang: This may be an issue on an update on matplotlib and not here, but I do not know for sure. I have recently created...

Something in the past few weeks has made PyPlot unusable. I'm on PyCall v0.4.5, PyPlot v1.2.5, and PySide v0.0.2. in the julia terminal: ``` julia> using PyPlot ERROR: PyError (PyImport_ImportModule)...

Maybe make `object[i,j,...]` in Julia sugar for `get(object, (i,j,...))`, equivalent to `object[i,j,...]` in Python, for the common case of integer indexing (e.g. #149). I would prefer to just make `object[...]`...

enhancement

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...

Hi, I have problems importing PyPlot on different CentOS 7 and Fedora 20 machines: ``` julia> import PyPlot Warning: error initializing module PyPlot: PyCall.PyError(msg=":PyImport_ImportModule", T=PyCall.PyObject(o=0x0000000001d86520), val=PyCall.PyObject(o=0x000000000a5b1e18), traceback=PyCall.PyObject(o=0x0000000000000000)) ``` Importing PyCall...

I am trying to use Interact.jl with PyPlot to control various figures with a single slider. The notebook I have so far is at http://nbviewer.ipython.org/github/berceanu/topo-photon/blob/master/anc/exploratory.ipynb However, I am facing various...

I've imported the PyPlot module like so: `using PyCall` `pygui(:tk)` `using PyPlot` I then try to use the plot function: `x=1:10; y=sin(x);` `plot(x,y)` But I get this error: `pltm not...

enhancement