PythonPlot.jl
PythonPlot.jl copied to clipboard
Plotting for Julia based on matplotlib.pyplot
I just added `PythonPlot.jl` on my Windows machine, and its precompilation never ends. On the other hand, on my Mac’s, I could precompile it without any problem. I use Julia...
I asked this in PyPlot too here https://github.com/JuliaPy/PyPlot.jl/issues/495, and seems some preliminary work was done in https://github.com/JuliaPy/PyCall.jl/issues/89 Specifically I'm referring to the ability to get plots which you can pan/zoom:...
Nowadays the Tk backend works pretty well and is available everywhere. Maybe we should just use it (or the Agg backend for non-interactive code) and drop support for all of...
Would be useful to plot Julia histograms! https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.stairs.html#matplotlib.pyplot.stairs
I'm using PythonPlot, and would like to create zoomed inserts within plots, as demonstrated in [this discussion](https://stackoverflow.com/questions/46990233/filling-box-for-zoomed-plot-with-a-colour-in-mpl-toolkits-axes-grid1-inset-locat) That uses a possibly deprecated [MPL toolkit](https://matplotlib.org/stable/api/_as_gen/mpl_toolkits.axes_grid1.inset_locator.html). (The flag at the top of...
Could anyone show me how to use gridspec? ```jl fig = figure(); gs = fig.add_gridspec(2,2); ax1 = fig.add_subplot(gs[0,0]); # this works ax2 = fig.add_subplot(gs[1,0:1]); #This does not work ``` I...
#46 fixed an issue that prevents dependents of this package from being registered, but a new release needs to be made for us to use it. Please register a new...
So the problem started in julia version 1.11 Things works fine without using julia multithread (`-t1`). But the PythonPlot.jl package always crashes (Segmentation fault) when exiting, while running on julia...
This works: ```julia using PythonPlot fig = figure() close(fig) ``` this doesn't: ```julia using PythonPlot fig, ax = subplots() close(fig) ``` ``` ERROR: MethodError: no method matching close(::Py) The function...
Do `zticks(Float64[])`, not `zticks([])`.