SolverBenchmark.jl
SolverBenchmark.jl copied to clipboard
Legend placement appears buggy
We set the legend to the :bottomright by default https://github.com/JuliaSmoothOptimizers/SolverBenchmark.jl/blob/master/src/profiles.jl#L66, but the result doesn't reflect that setting: https://github.com/JuliaSmoothOptimizers/JSOSolvers.jl/issues/2#issuecomment-529036660
I tested with GR and PyPlot and only GR is broken.
This recreates it:
plot([scatter(rand(10,2), rand(10,2), legend=:bottomright) for i = 1:5]..., layout=(1,5), size=(2000,400))
Not as extreme, but short.
https://github.com/jheinen/GR.jl/issues/243
Thanks!
https://github.com/JuliaPlots/Plots.jl/issues/2202 is the correct issue.
Apparently, this is a bug related to the interaction between Plots and GR. Maybe we should make inspectdr the default backend?