Michael Krabbe Borregaard

Results 55 issues of Michael Krabbe Borregaard

I'm wondering if it is a bit much to carry a PlotUtils dep on an otherwise lightweight package, if it is just for this line? https://github.com/JuliaPlots/GraphRecipes.jl/blob/master/src/graphs.jl#L692

The function name `scatter` in DistributedArrays conflicts with the `scatter` function in, say, 80% of all julia's plotting packages (for making scatter plots). Would it be possible to rename to...

Would it make sense to be able to do arithmetic on the kde objects, e.g. to add and subtract them, for comparing distributions?

The new Benchmark histograms have the x axis limit set by the edges of the data, but that is not the best for interpretation. Waiting times for a function to...

enhancement

Currently, `lm` seems to deal with NAs in DataFrames by ignoring the rows where they appear: ```julia df = DataFrame(a = randn(10), b = randn(10)); df[:a][2] = NA mod =...

Sometimes it's really nice to use TreeView to unpack types in the workspace pane, so it would be great with a toggle to disable the type authors `show` method and...

feature request

When using Julia's debugger to step into display on an AbstractPlotting.scene, I'm getting a strange behaviour. MWE (in Juno): ```julia using AbstractPlotting p = scatter(1:10); Juno.@enter display(p) ``` takes me...

bug

Do you, or would you, support reading graphs specified in a Newick format? https://en.wikipedia.org/wiki/Newick_format ? Perhaps in the context of MetaGraphs (as the Newick format contains some metadata)?

The mapwindow functionality (which overlaps with RollingFunctions for the 1-D case) is a general and common Array operation outside the context of ImageFiltering. I wonder why it lives here? Might...