PyPlot.jl
PyPlot.jl copied to clipboard
Plotting for Julia based on matplotlib.pyplot
Dear all, I have encountered a strange error message thrown by Atom (Juno) on macOS. Not sure if this is the right place because in the REPL this error is...
The script is like this: ```julia # plot.jl using PyPlot plot([2,4], [3,8]) show() ``` and then I run the script in a terminal. It shows a window displaying the plot....
I've struggled recently with PyPlot segfaults on a new system, and finally solved it after finding https://github.com/JuliaPlots/Plots.jl/issues/2168 and #104. In the end I had to switch the matplotlib backend from...
I'm imposing a style inside a module, but it doesn't take effect when I call `PyPlot.jl` functions from this module. see [here](https://github.com/SimonEnsemble/Controlz.jl/blob/master/src/Controlz.jl#L5-L9). ```julia module Controlz using PyPlot # hipster plot...
``` julia> import PyPlot ERROR: InitError: PyError (PyImport_ImportModule The Python package matplotlib could not be found by pyimport. Usually this means that you did not install matplotlib in the Python...
Hello, I have Julia 1.2.0 installed with Plots. For installing PyPlot backend without manually installing Python, I followed the instructions in [https://github.com/JuliaPy/PyPlot.jl](url) and did: `ENV["PYTHON"]=""` `Pkg.build("PyCall")` `Pkg.add("PyPlot")` `using Plots` `pyplot()`...
Hi, when batch saving multiple figures with 'savefig()' a large amount of memory is allocated and I am not able to free it afterwards without closing my julia session. Basically...
Related to https://github.com/JuliaPy/PyPlot.jl/issues/401. I'm simply trying to reverse the order of the legend entries of two errorbar plots. Pure python (from within Julia): ```julia py""" import matplotlib.pyplot as plt import...
I am using Julia 1.1.1 on a MacBook Pro macOS Mojave v 10.14.5 The environment to use Julia is Atom 1.39.1 x64 To plot I use PyPlot and `PyPlot.backend` =...
I have searched the forums of stackoverflow and others to save a figure in pyplot without any padding, frame or axes/ticks. There seems to be an array of solutions, none...