netgraph icon indicating copy to clipboard operation
netgraph copied to clipboard

Publication-quality network visualisations in python

Results 14 netgraph issues
Sort by recently updated
recently updated
newest added

I needed it for my work and i thought it could be useful for you too

Hi guys, I hope you're well. I work on a project called [GraphFilter](https://github.com/GraphFilter), where we use your library (we've even opened some issues here). Recently, a user asked us about...

enhancement

This code, with `netgraph==4.13.2` and `matplotlib==3.9.0`: ```python from netgraph import Graph import matplotlib.pyplot as plt edges = [("in", "out"), ("out", "in")] edge_labels = { ("in", "out"): 3, ("out", "in"): 5,...

enhancement

From this example: https://netgraph.readthedocs.io/en/latest/sphinx_gallery_output/plot_06_labels.html#sphx-glr-sphinx-gallery-output-plot-06-labels-py the graph should looks like this ![image](https://github.com/paulbrodersen/netgraph/assets/53829777/19b903f8-6db1-45c3-83c9-6cd0bd566958) but, it's this instead ![image](https://github.com/paulbrodersen/netgraph/assets/53829777/09c58a5f-f2b2-4731-b028-4609b9fbcafe)

bug