PyPlot.jl
PyPlot.jl copied to clipboard
Plotting for Julia based on matplotlib.pyplot
I discovered something strange when using plot from PyPlot: ``` julia julia> 1.0 1.0 julia> using PyPlot julia> 1.0 1.0 julia> plot([1,2,3]) 1-element Any Array: PyObject julia> 1.0 ERROR: syntax:...
PyCall and PyPlot are crashing in REPL /terminal of Juliaup (Julia 1.10.2) and Vscode in windows 11. Here is the error generated while trying to plot sin(x). using PyCall,PyPlot pygui(true)...
I have a problem using PyPlot in a Julia code. When I write "using PyPlot" goes well, but when I try to plot something it does not work and it...
I am trying to define macros in my `"pgf.preamble"` so I can later change parts of the figure labels when including my figures in a LaTeX document without having to...
Maybe I missed something, but `violinplot` (https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.violinplot.html) should surely be defined? ```julia julia> import PyPlot as plt julia> plt.violinplot(rand(100)) ERROR: UndefVarError: `violinplot` not defined Stacktrace: [1] getproperty(x::Module, f::Symbol) @ Base...
A short PyPlot program is crashing on my Windows 11 machine (i.e., the Julia REPL exits with no error message). I verified that it works correctly on Linux. This is...
Whenever I try to plot something using PyPlot.jl, nothing is displayed and only a ```1-element Vector{PyCall.PyObject}: PyObject ``` element is returned. I also tried ```p = plot(...); show(p)```, and ```p...
## using PyPlot hangs or kills julia 1.8.5 or 1.9.0 on MacOS ### Synopsis `using PyPlot` hangs julia. No progress for >10 hours. No error message. User `^C` exits julia...
I am getting an error when using `:qt5` backend on linux RHEL 8.8 ``` using PyCall pygui(:qt5) using PyPlot fig,ax=subplots() ``` gives this error "Qt: Session management error: Authentication Rejected,...