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

Julia 1.6.0 [d330b81b] PyPlot v2.10.0 Following https://docs.juliaplots.org/latest/generated/pyplot/#pyplot-ref27 , ``` Θ = range(0, stop = 1.5π, length = 100) r = abs.(0.1 * randn(100) + sin.(3Θ)) plot(Θ, r, proj = :polar,...

It appears that plt.bar_label is not defined. Simple feature addition?

Starting with version 1.4.3 (I believe) of `matplotlib`, there is an `nbagg` backend which allows interactive manipulation of figures. EDIT: In IPython, this is available using `%matplotlib notebook` Would it...

Hey, I've seen that `PyPlot.jl` in general works, but in Pluto nothing really happens for: ```julia begin using PyPlot PyPlot.imshow(randn((3,3))) end ``` Only some output: ```julia PyObject ``` In the...

Hi, when using PyPlot on 1.7 beta I see the following deprecation warning: ``` ┌ Warning: `vendor()` is deprecated, use `BLAS.get_config()` and inspect the output instead │ caller = npyinitialize()...

Emacs signals the error `Error parsing SVG image: Invalid XML declaration` when trying to display the result of evaluating of the Org-mode block: ```julia #+begin_src jupyter-julia get_cmap("RdGy") #+end_src ``` This...

Hi, I get the following segfault ``` signal (11): Segmentation fault: 11 in expression starting at /MyProjectDirectory/Test.jl:4 _platform_strcmp at /usr/lib/system/libsystem_platform.dylib (unknown line) ``` when I run `/MyProjectDirectory/Test.jl` which contains the...

Currently, svg output is disabled by default because it is really slow in IJulia, something I have tested for myself. However, displaying svgs in e.g. VSCode works well, and gives...