dgpb

Results 47 comments of dgpb

That was it, thank you! Great work. I am starting to use graphs more and more, this library will definitely be useful. Not only works, but looks super nice too.

Same bug here: https://github.com/paulbrodersen/netgraph/blob/dev/netgraph/_interactive_variants.py#L130

Ok, here are some thoughts. Say I just want to draw a double(Directed) /multi - edge graph. Most important thing is that edge lines do not overlap and labels are...

One more thing, these label params work nice: ```python edge_label_fontdict=dict( fontsize=6, bbox=dict(color='white', pad=0)), ``` `pad` is essential, otherwise big background boxes may overlap nearby labels if graph is zoomed out....

Does one get notifications from closed issues when someone comments? Just in case one doesn't. I found one more issue and commented in: https://github.com/paulbrodersen/netgraph/issues/76

Few missing imports are missing from `_interactive_multigraph_classes.py` for latest dev version: ``` from matplotlib.backend_bases import key_press_handler from ._artists import EdgeArtist from ._parser import is_order_zero, is_empty, parse_graph ``` Maybe it would...

When I open the link, I can not see them. 🤷‍♂️

Now I see them too. Strange stuff.

See https://github.com/networkx/networkx/pull/7010 I tried to keep it minimal. Your approach seems more comprehensive. If you continue to work on this, maybe some of the notes will be helpful.

Thank you for info. Also, my last point regarding `sum via dot product` performance converging with `vanilla sum` (both parallelised) is still unclear. Theoretically, dot product should be slower than...