Michael Krabbe Borregaard

Results 322 comments of Michael Krabbe Borregaard

There is a current bug in Plots that makes the pyplot backend fail with this error message when `marker_z` is specified. The workaround for now is to use a different...

Interesting, - what is your Pkg.status for PyPlot, Plots, PlotRecipes, and the output of `PyPlot.version`?

I get it too now - the issue is `nodeshape` in this line: https://github.com/JuliaPlots/PlotRecipes.jl/blob/master/src/graphs.jl#L370. The issue is that defining `names` and `markershape` at the same time causes `nodeshape` to be...

This would be really useful for me too

What is that code trying to achieve? self edges are already possible, right, just not if you only have one vertex?

So awesome! We'll promote them, hope someone bites! I've added most of them to the vizcon2 project too

You should in principle be able to do this with `linewidth` (which is a standard Plots keyword for the width of lines) but there seems to be something in the...

It's because `linewidth` doesn't accept a Vector. Solutions including adding that capability to Plots (might be possible using the same logic @daschw used to implement different colors for segments); or...

It was this one https://github.com/JuliaPlots/Plots.jl/pull/1110 which had to be supplemented with https://github.com/JuliaPlots/Plots.jl/pull/1142/files for GR as there were some unfortunate side effects. Not sure just replicating this will work, though. I...

It might be but the philosophy of Plots is to generally mostly use the existing keywords so you don't have to learn bespoke keywords for each use.