Lucas

Results 5 issues of Lucas

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

See title. This data is still useful for testing, so it would be good if it was available.

Pip throws errors when trying to install gcMapExplorer on Python 3.9. The main error is ``` gcMapExplorer/lib/ccmapHelpers.c: In function ‘__Pyx_modinit_type_init_code’: gcMapExplorer/lib/ccmapHelpers.c:6752:85: error: ‘PyTypeObject’ {aka ‘struct _typeobject’} has no member named...

I find that the progress bar usually overflows when the ETA quickly converges from a large to a small value. Because of this, I want to make the bar shorter....

The argument `color` does not color the individual bars in a barplot when using the PGFPlotsX backend. ```julia julia> using Plots; pgfplotsx(); julia> plot(1:3, 1:3, color=cgrad(:Set2)[1:3]) ``` produces ![image](https://github.com/JuliaPlots/StatsPlots.jl/assets/20555538/16e92193-f4c2-40c3-b0e9-739cbc8591d0) However,...