Michael Krabbe Borregaard

Results 322 comments of Michael Krabbe Borregaard

That's right, the idea is to make it easier for people to get an overview of a code base, but also to help a more visual approach to profiling, in...

Nice idea! Tooltips at the moment only work with the PlotlyJS backend, so they can't display vital information.

I didn't implement your colour suggestions yet, but here's my current take on the plots. The `trace_walk = @trace LightGraphs randomwalk(graph, 2, 5)` graph now looks like: ![new_randomwalk](https://user-images.githubusercontent.com/8429802/29518867-69170b16-867b-11e7-8024-4c8ba9aecba5.png) For a...

Great, enjoy your vacation. I've been pondering the subtrees as well. Try to think of something.

Nice, I'll check out compare-past-trace. Looking forward to see if you can get `map(function, Trace1, Trace2)` to work for traces where some branches differ.

Like: ```julia module Test foo(x) = 2bar(x) function bar(x) if x>2 baz(x) else qux(x) end end baz(x) = 3 qux(x) = 4 export foo end using TraceCalls a = @trace...

Maybe, yes. In my graphs so far, I've opted to make calls to the same function from different parts of the code separate vertices in the graph. I wanted to...

will do - should I update dropnull instead or in addition do you think?

Reading your concerns here and thinking about it more, I am also not sure this functionality would be broadly useful. It came out of a natural impulse to work with...