├── .github └── workflows │ └── draft-pdf.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE.txt ├── README.md ├── animations ├── README.rst ├── plot_01_dynamic_network.py ├── plot_02_animate_edges.py └── plot_03_animate_nodes.py ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── arcdiagram_classes.rst │ ├── conf.py │ ├── edge_layout.rst │ ├── graph_classes.rst │ ├── index.rst │ ├── installation.rst │ ├── interactivity.rst │ ├── node_layout.rst │ ├── quickstart.rst │ ├── sphinx_gallery_animations │ ├── images │ │ ├── sphx_glr_plot_01_dynamic_network_001.gif │ │ ├── sphx_glr_plot_02_animate_edges_001.gif │ │ ├── sphx_glr_plot_03_animate_nodes_001.gif │ │ └── thumb │ │ │ ├── sphx_glr_flycheck_plot_01_dynamic_network_thumb.png │ │ │ ├── sphx_glr_plot_01_dynamic_network_thumb.gif │ │ │ ├── sphx_glr_plot_02_animate_edges_thumb.gif │ │ │ └── sphx_glr_plot_03_animate_nodes_thumb.gif │ ├── index.rst │ ├── plot_01_dynamic_network.ipynb │ ├── plot_01_dynamic_network.py │ ├── plot_01_dynamic_network.py.md5 │ ├── plot_01_dynamic_network.rst │ ├── plot_02_animate_edges.ipynb │ ├── plot_02_animate_edges.py │ ├── plot_02_animate_edges.py.md5 │ ├── plot_02_animate_edges.rst │ ├── plot_03_animate_nodes.ipynb │ ├── plot_03_animate_nodes.py │ ├── plot_03_animate_nodes.py.md5 │ ├── plot_03_animate_nodes.rst │ └── sg_execution_times.rst │ └── sphinx_gallery_output │ ├── images │ ├── sphx_glr_plot_01_default_001.png │ ├── sphx_glr_plot_02_directed_network_001.png │ ├── sphx_glr_plot_03_weighted_001.png │ ├── sphx_glr_plot_04_weighted_001.png │ ├── sphx_glr_plot_05_node_and_edge_artist_customisation_001.png │ ├── sphx_glr_plot_05_node_and_edge_artist_customisation_002.png │ ├── sphx_glr_plot_05_node_and_edge_artist_customisation_003.png │ ├── sphx_glr_plot_06_labels_001.png │ ├── sphx_glr_plot_07_custom_layout_001.png │ ├── sphx_glr_plot_08_dot_layout_001.png │ ├── sphx_glr_plot_09_circular_layout_001.png │ ├── sphx_glr_plot_10_community_layout_001.png │ ├── sphx_glr_plot_11_curved_edge_layout_001.png │ ├── sphx_glr_plot_12_multicomponent_graphs_001.png │ ├── sphx_glr_plot_13_arcdiagram_001.png │ ├── sphx_glr_plot_13_arcdiagram_002.png │ ├── sphx_glr_plot_14_bipartite_layout_001.png │ ├── sphx_glr_plot_14_bipartite_layout_002.png │ ├── sphx_glr_plot_14_bipartite_layout_003.png │ ├── sphx_glr_plot_15_highlight_paths_001.png │ ├── sphx_glr_plot_17_multipartite_layout_001.png │ ├── sphx_glr_plot_17_multipartite_layout_002.png │ ├── sphx_glr_plot_17_multipartite_layout_003.png │ ├── sphx_glr_plot_18_legends_001.png │ ├── sphx_glr_plot_19_hyperlinks_001.png │ ├── sphx_glr_plot_19_hyperlinks_002.png │ ├── sphx_glr_plot_20_geometric_layout_001.png │ └── thumb │ │ ├── sphx_glr_plot_01_default_thumb.png │ │ ├── sphx_glr_plot_02_directed_network_thumb.png │ │ ├── sphx_glr_plot_03_weighted_thumb.png │ │ ├── sphx_glr_plot_04_weighted_thumb.png │ │ ├── sphx_glr_plot_05_node_and_edge_artist_customisation_thumb.png │ │ ├── sphx_glr_plot_06_labels_thumb.png │ │ ├── sphx_glr_plot_07_custom_layout_thumb.png │ │ ├── sphx_glr_plot_08_dot_layout_thumb.png │ │ ├── sphx_glr_plot_09_circular_layout_thumb.png │ │ ├── sphx_glr_plot_10_community_layout_thumb.png │ │ ├── sphx_glr_plot_11_curved_edge_layout_thumb.png │ │ ├── sphx_glr_plot_12_multicomponent_graphs_thumb.png │ │ ├── sphx_glr_plot_13_arcdiagram_thumb.png │ │ ├── sphx_glr_plot_14_bipartite_layout_thumb.png │ │ ├── sphx_glr_plot_15_highlight_paths_thumb.png │ │ ├── sphx_glr_plot_16_pyqt_thumb.png │ │ ├── sphx_glr_plot_17_multipartite_layout_thumb.png │ │ ├── sphx_glr_plot_18_legends_thumb.png │ │ ├── sphx_glr_plot_19_hyperlinks_thumb.png │ │ └── sphx_glr_plot_20_geometric_layout_thumb.png │ ├── index.rst │ ├── plot_01_default.ipynb │ ├── plot_01_default.py │ ├── plot_01_default.py.md5 │ ├── plot_01_default.rst │ ├── plot_02_directed_network.ipynb │ ├── plot_02_directed_network.py │ ├── plot_02_directed_network.py.md5 │ ├── plot_02_directed_network.rst │ ├── plot_03_weighted.ipynb │ ├── plot_03_weighted.py │ ├── plot_03_weighted.py.md5 │ ├── plot_03_weighted.rst │ ├── plot_04_weighted.ipynb │ ├── plot_04_weighted.py │ ├── plot_04_weighted.py.md5 │ ├── plot_04_weighted.rst │ ├── plot_05_node_and_edge_artist_customisation.ipynb │ ├── plot_05_node_and_edge_artist_customisation.py │ ├── plot_05_node_and_edge_artist_customisation.py.md5 │ ├── plot_05_node_and_edge_artist_customisation.rst │ ├── plot_06_labels.ipynb │ ├── plot_06_labels.py │ ├── plot_06_labels.py.md5 │ ├── plot_06_labels.rst │ ├── plot_07_custom_layout.ipynb │ ├── plot_07_custom_layout.py │ ├── plot_07_custom_layout.py.md5 │ ├── plot_07_custom_layout.rst │ ├── plot_08_dot_layout.ipynb │ ├── plot_08_dot_layout.py │ ├── plot_08_dot_layout.py.md5 │ ├── plot_08_dot_layout.rst │ ├── plot_09_circular_layout.ipynb │ ├── plot_09_circular_layout.py │ ├── plot_09_circular_layout.py.md5 │ ├── plot_09_circular_layout.rst │ ├── plot_10_community_layout.ipynb │ ├── plot_10_community_layout.py │ ├── plot_10_community_layout.py.md5 │ ├── plot_10_community_layout.rst │ ├── plot_11_curved_edge_layout.ipynb │ ├── plot_11_curved_edge_layout.py │ ├── plot_11_curved_edge_layout.py.md5 │ ├── plot_11_curved_edge_layout.rst │ ├── plot_12_multicomponent_graphs.ipynb │ ├── plot_12_multicomponent_graphs.py │ ├── plot_12_multicomponent_graphs.py.md5 │ ├── plot_12_multicomponent_graphs.rst │ ├── plot_13_arcdiagram.ipynb │ ├── plot_13_arcdiagram.py │ ├── plot_13_arcdiagram.py.md5 │ ├── plot_13_arcdiagram.rst │ ├── plot_14_bipartite_layout.ipynb │ ├── plot_14_bipartite_layout.py │ ├── plot_14_bipartite_layout.py.md5 │ ├── plot_14_bipartite_layout.rst │ ├── plot_15_highlight_paths.ipynb │ ├── plot_15_highlight_paths.py │ ├── plot_15_highlight_paths.py.md5 │ ├── plot_15_highlight_paths.rst │ ├── plot_16_pyqt.ipynb │ ├── plot_16_pyqt.py │ ├── plot_16_pyqt.py.md5 │ ├── plot_16_pyqt.rst │ ├── plot_17_multipartite_layout.ipynb │ ├── plot_17_multipartite_layout.py │ ├── plot_17_multipartite_layout.py.md5 │ ├── plot_17_multipartite_layout.rst │ ├── plot_18_legends.ipynb │ ├── plot_18_legends.py │ ├── plot_18_legends.py.md5 │ ├── plot_18_legends.rst │ ├── plot_19_hyperlinks.ipynb │ ├── plot_19_hyperlinks.py │ ├── plot_19_hyperlinks.py.md5 │ ├── plot_19_hyperlinks.rst │ ├── plot_20_geometric_layout.ipynb │ ├── plot_20_geometric_layout.py │ ├── plot_20_geometric_layout.py.md5 │ ├── plot_20_geometric_layout.rst │ └── sg_execution_times.rst ├── examples ├── README.rst ├── plot_01_default.py ├── plot_02_directed_network.py ├── plot_03_weighted.py ├── plot_04_weighted.py ├── plot_05_node_and_edge_artist_customisation.py ├── plot_06_labels.py ├── plot_07_custom_layout.py ├── plot_08_dot_layout.py ├── plot_09_circular_layout.py ├── plot_10_community_layout.py ├── plot_11_curved_edge_layout.py ├── plot_12_multicomponent_graphs.py ├── plot_13_arcdiagram.py ├── plot_14_bipartite_layout.py ├── plot_15_highlight_paths.py ├── plot_16_pyqt.py ├── plot_17_multipartite_layout.py ├── plot_18_legends.py ├── plot_19_hyperlinks.py └── plot_20_geometric_layout.py ├── figures ├── gallery_landscape.png ├── gallery_landscape_v1.svg ├── gallery_landscape_v2.svg ├── gallery_portrait.png ├── gallery_portrait_v1.svg └── gallery_portrait_v2.svg ├── netgraph ├── __init__.py ├── _arcdiagram.py ├── _artists.py ├── _deprecated.py ├── _edge_layout.py ├── _interactive_variants.py ├── _line_supercover.py ├── _main.py ├── _node_layout.py ├── _parser.py └── _utils.py ├── optional-requirements.txt ├── publication ├── advanced_example.png ├── advanced_example.py ├── basic_example.png ├── basic_example.py ├── gallery_portrait.png ├── gallery_portrait_v5.svg ├── gallery_portrait_v5a.png ├── gallery_portrait_v5b.png ├── paper.bib └── paper.md ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── test_arcdiagram.py ├── test_artists.py ├── test_edge_layout.py ├── test_main.py ├── test_node_layout.py ├── test_parser.py └── toy_graphs.py /.github/workflows/draft-pdf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/.github/workflows/draft-pdf.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/README.md -------------------------------------------------------------------------------- /animations/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/animations/README.rst -------------------------------------------------------------------------------- /animations/plot_01_dynamic_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/animations/plot_01_dynamic_network.py -------------------------------------------------------------------------------- /animations/plot_02_animate_edges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/animations/plot_02_animate_edges.py -------------------------------------------------------------------------------- /animations/plot_03_animate_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/animations/plot_03_animate_nodes.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/arcdiagram_classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/arcdiagram_classes.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/edge_layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/edge_layout.rst -------------------------------------------------------------------------------- /docs/source/graph_classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/graph_classes.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/interactivity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/interactivity.rst -------------------------------------------------------------------------------- /docs/source/node_layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/node_layout.rst -------------------------------------------------------------------------------- /docs/source/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/quickstart.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/images/sphx_glr_plot_01_dynamic_network_001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/images/sphx_glr_plot_01_dynamic_network_001.gif -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/images/sphx_glr_plot_02_animate_edges_001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/images/sphx_glr_plot_02_animate_edges_001.gif -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/images/sphx_glr_plot_03_animate_nodes_001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/images/sphx_glr_plot_03_animate_nodes_001.gif -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/images/thumb/sphx_glr_flycheck_plot_01_dynamic_network_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/images/thumb/sphx_glr_flycheck_plot_01_dynamic_network_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/images/thumb/sphx_glr_plot_01_dynamic_network_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/images/thumb/sphx_glr_plot_01_dynamic_network_thumb.gif -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/images/thumb/sphx_glr_plot_02_animate_edges_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/images/thumb/sphx_glr_plot_02_animate_edges_thumb.gif -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/images/thumb/sphx_glr_plot_03_animate_nodes_thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/images/thumb/sphx_glr_plot_03_animate_nodes_thumb.gif -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/index.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/plot_01_dynamic_network.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/plot_01_dynamic_network.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/plot_01_dynamic_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/plot_01_dynamic_network.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/plot_01_dynamic_network.py.md5: -------------------------------------------------------------------------------- 1 | ea0eda793a4a5437e6a53fe03312abd2 -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/plot_01_dynamic_network.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/plot_01_dynamic_network.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/plot_02_animate_edges.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/plot_02_animate_edges.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/plot_02_animate_edges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/plot_02_animate_edges.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/plot_02_animate_edges.py.md5: -------------------------------------------------------------------------------- 1 | a31bb20b738f2eec0ea07d6bfe6e179d -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/plot_02_animate_edges.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/plot_02_animate_edges.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/plot_03_animate_nodes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/plot_03_animate_nodes.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/plot_03_animate_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/plot_03_animate_nodes.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/plot_03_animate_nodes.py.md5: -------------------------------------------------------------------------------- 1 | afa9e0c59f51fb009e1cce1b3e4b0601 -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/plot_03_animate_nodes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/plot_03_animate_nodes.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_animations/sg_execution_times.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_animations/sg_execution_times.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_01_default_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_01_default_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_02_directed_network_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_02_directed_network_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_03_weighted_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_03_weighted_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_04_weighted_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_04_weighted_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_05_node_and_edge_artist_customisation_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_05_node_and_edge_artist_customisation_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_05_node_and_edge_artist_customisation_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_05_node_and_edge_artist_customisation_002.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_05_node_and_edge_artist_customisation_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_05_node_and_edge_artist_customisation_003.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_06_labels_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_06_labels_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_07_custom_layout_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_07_custom_layout_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_08_dot_layout_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_08_dot_layout_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_09_circular_layout_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_09_circular_layout_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_10_community_layout_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_10_community_layout_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_11_curved_edge_layout_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_11_curved_edge_layout_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_12_multicomponent_graphs_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_12_multicomponent_graphs_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_13_arcdiagram_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_13_arcdiagram_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_13_arcdiagram_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_13_arcdiagram_002.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_14_bipartite_layout_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_14_bipartite_layout_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_14_bipartite_layout_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_14_bipartite_layout_002.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_14_bipartite_layout_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_14_bipartite_layout_003.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_15_highlight_paths_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_15_highlight_paths_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_17_multipartite_layout_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_17_multipartite_layout_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_17_multipartite_layout_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_17_multipartite_layout_002.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_17_multipartite_layout_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_17_multipartite_layout_003.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_18_legends_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_18_legends_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_19_hyperlinks_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_19_hyperlinks_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_19_hyperlinks_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_19_hyperlinks_002.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/sphx_glr_plot_20_geometric_layout_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/sphx_glr_plot_20_geometric_layout_001.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_01_default_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_01_default_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_02_directed_network_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_02_directed_network_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_03_weighted_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_03_weighted_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_04_weighted_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_04_weighted_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_05_node_and_edge_artist_customisation_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_05_node_and_edge_artist_customisation_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_06_labels_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_06_labels_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_07_custom_layout_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_07_custom_layout_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_08_dot_layout_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_08_dot_layout_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_09_circular_layout_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_09_circular_layout_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_10_community_layout_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_10_community_layout_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_11_curved_edge_layout_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_11_curved_edge_layout_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_12_multicomponent_graphs_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_12_multicomponent_graphs_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_13_arcdiagram_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_13_arcdiagram_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_14_bipartite_layout_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_14_bipartite_layout_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_15_highlight_paths_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_15_highlight_paths_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_16_pyqt_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_16_pyqt_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_17_multipartite_layout_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_17_multipartite_layout_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_18_legends_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_18_legends_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_19_hyperlinks_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_19_hyperlinks_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_20_geometric_layout_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/images/thumb/sphx_glr_plot_20_geometric_layout_thumb.png -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/index.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_01_default.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_01_default.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_01_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_01_default.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_01_default.py.md5: -------------------------------------------------------------------------------- 1 | 422dad2e9efbe31677af313f9dd85ac8 -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_01_default.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_01_default.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_02_directed_network.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_02_directed_network.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_02_directed_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_02_directed_network.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_02_directed_network.py.md5: -------------------------------------------------------------------------------- 1 | eca2241d42b9e186d68e4233bfc899bf -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_02_directed_network.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_02_directed_network.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_03_weighted.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_03_weighted.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_03_weighted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_03_weighted.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_03_weighted.py.md5: -------------------------------------------------------------------------------- 1 | cc7d9e1d0b23bcfff61bf8108e8514aa -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_03_weighted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_03_weighted.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_04_weighted.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_04_weighted.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_04_weighted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_04_weighted.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_04_weighted.py.md5: -------------------------------------------------------------------------------- 1 | 17a790708674053124f351224ec9c535 -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_04_weighted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_04_weighted.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_05_node_and_edge_artist_customisation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_05_node_and_edge_artist_customisation.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_05_node_and_edge_artist_customisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_05_node_and_edge_artist_customisation.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_05_node_and_edge_artist_customisation.py.md5: -------------------------------------------------------------------------------- 1 | fba122fb61b7d0ab015f571a0eac6a6b -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_05_node_and_edge_artist_customisation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_05_node_and_edge_artist_customisation.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_06_labels.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_06_labels.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_06_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_06_labels.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_06_labels.py.md5: -------------------------------------------------------------------------------- 1 | a523e74a9fbd03d0a2b65b805ec56c18 -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_06_labels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_06_labels.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_07_custom_layout.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_07_custom_layout.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_07_custom_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_07_custom_layout.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_07_custom_layout.py.md5: -------------------------------------------------------------------------------- 1 | 470108b4831cd7b2a927639c04d1b895 -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_07_custom_layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_07_custom_layout.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_08_dot_layout.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_08_dot_layout.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_08_dot_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_08_dot_layout.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_08_dot_layout.py.md5: -------------------------------------------------------------------------------- 1 | f455b85d26488111ba361ce611b25c2a -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_08_dot_layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_08_dot_layout.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_09_circular_layout.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_09_circular_layout.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_09_circular_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_09_circular_layout.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_09_circular_layout.py.md5: -------------------------------------------------------------------------------- 1 | 327f2a0f7314787591acede8362fc003 -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_09_circular_layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_09_circular_layout.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_10_community_layout.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_10_community_layout.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_10_community_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_10_community_layout.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_10_community_layout.py.md5: -------------------------------------------------------------------------------- 1 | ff8642a08028b61649fd8f3f9ba2291a -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_10_community_layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_10_community_layout.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_11_curved_edge_layout.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_11_curved_edge_layout.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_11_curved_edge_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_11_curved_edge_layout.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_11_curved_edge_layout.py.md5: -------------------------------------------------------------------------------- 1 | 600bafff92585af306d9400dea9f52a1 -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_11_curved_edge_layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_11_curved_edge_layout.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_12_multicomponent_graphs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_12_multicomponent_graphs.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_12_multicomponent_graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_12_multicomponent_graphs.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_12_multicomponent_graphs.py.md5: -------------------------------------------------------------------------------- 1 | 631e998121aa3cac4a060aff647ff781 -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_12_multicomponent_graphs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_12_multicomponent_graphs.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_13_arcdiagram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_13_arcdiagram.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_13_arcdiagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_13_arcdiagram.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_13_arcdiagram.py.md5: -------------------------------------------------------------------------------- 1 | c6e035fe47bf02dd4440c508acd4e1c6 -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_13_arcdiagram.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_13_arcdiagram.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_14_bipartite_layout.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_14_bipartite_layout.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_14_bipartite_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_14_bipartite_layout.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_14_bipartite_layout.py.md5: -------------------------------------------------------------------------------- 1 | ad27f5dc1a60265fad1fef5015d05957 -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_14_bipartite_layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_14_bipartite_layout.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_15_highlight_paths.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_15_highlight_paths.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_15_highlight_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_15_highlight_paths.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_15_highlight_paths.py.md5: -------------------------------------------------------------------------------- 1 | 4b59c044ee6f01559dee39c4b35349e2 -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_15_highlight_paths.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_15_highlight_paths.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_16_pyqt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_16_pyqt.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_16_pyqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_16_pyqt.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_16_pyqt.py.md5: -------------------------------------------------------------------------------- 1 | a490b94afe04858eeac32936dc8db75e -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_16_pyqt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_16_pyqt.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_17_multipartite_layout.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_17_multipartite_layout.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_17_multipartite_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_17_multipartite_layout.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_17_multipartite_layout.py.md5: -------------------------------------------------------------------------------- 1 | e5c1e57f85d7b7698df152b815ebd726 -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_17_multipartite_layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_17_multipartite_layout.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_18_legends.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_18_legends.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_18_legends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_18_legends.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_18_legends.py.md5: -------------------------------------------------------------------------------- 1 | e513f7ed2800c4e56543725486ca1ecb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_18_legends.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_18_legends.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_19_hyperlinks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_19_hyperlinks.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_19_hyperlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_19_hyperlinks.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_19_hyperlinks.py.md5: -------------------------------------------------------------------------------- 1 | 4b7fa2cfc7617e1c93d3dd40097c905e -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_19_hyperlinks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_19_hyperlinks.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_20_geometric_layout.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_20_geometric_layout.ipynb -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_20_geometric_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_20_geometric_layout.py -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_20_geometric_layout.py.md5: -------------------------------------------------------------------------------- 1 | cf30f564b65e24af25dec336c41d5a42 -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/plot_20_geometric_layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/plot_20_geometric_layout.rst -------------------------------------------------------------------------------- /docs/source/sphinx_gallery_output/sg_execution_times.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/docs/source/sphinx_gallery_output/sg_execution_times.rst -------------------------------------------------------------------------------- /examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/README.rst -------------------------------------------------------------------------------- /examples/plot_01_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_01_default.py -------------------------------------------------------------------------------- /examples/plot_02_directed_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_02_directed_network.py -------------------------------------------------------------------------------- /examples/plot_03_weighted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_03_weighted.py -------------------------------------------------------------------------------- /examples/plot_04_weighted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_04_weighted.py -------------------------------------------------------------------------------- /examples/plot_05_node_and_edge_artist_customisation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_05_node_and_edge_artist_customisation.py -------------------------------------------------------------------------------- /examples/plot_06_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_06_labels.py -------------------------------------------------------------------------------- /examples/plot_07_custom_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_07_custom_layout.py -------------------------------------------------------------------------------- /examples/plot_08_dot_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_08_dot_layout.py -------------------------------------------------------------------------------- /examples/plot_09_circular_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_09_circular_layout.py -------------------------------------------------------------------------------- /examples/plot_10_community_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_10_community_layout.py -------------------------------------------------------------------------------- /examples/plot_11_curved_edge_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_11_curved_edge_layout.py -------------------------------------------------------------------------------- /examples/plot_12_multicomponent_graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_12_multicomponent_graphs.py -------------------------------------------------------------------------------- /examples/plot_13_arcdiagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_13_arcdiagram.py -------------------------------------------------------------------------------- /examples/plot_14_bipartite_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_14_bipartite_layout.py -------------------------------------------------------------------------------- /examples/plot_15_highlight_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_15_highlight_paths.py -------------------------------------------------------------------------------- /examples/plot_16_pyqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_16_pyqt.py -------------------------------------------------------------------------------- /examples/plot_17_multipartite_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_17_multipartite_layout.py -------------------------------------------------------------------------------- /examples/plot_18_legends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_18_legends.py -------------------------------------------------------------------------------- /examples/plot_19_hyperlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_19_hyperlinks.py -------------------------------------------------------------------------------- /examples/plot_20_geometric_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/examples/plot_20_geometric_layout.py -------------------------------------------------------------------------------- /figures/gallery_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/figures/gallery_landscape.png -------------------------------------------------------------------------------- /figures/gallery_landscape_v1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/figures/gallery_landscape_v1.svg -------------------------------------------------------------------------------- /figures/gallery_landscape_v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/figures/gallery_landscape_v2.svg -------------------------------------------------------------------------------- /figures/gallery_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/figures/gallery_portrait.png -------------------------------------------------------------------------------- /figures/gallery_portrait_v1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/figures/gallery_portrait_v1.svg -------------------------------------------------------------------------------- /figures/gallery_portrait_v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/figures/gallery_portrait_v2.svg -------------------------------------------------------------------------------- /netgraph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/netgraph/__init__.py -------------------------------------------------------------------------------- /netgraph/_arcdiagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/netgraph/_arcdiagram.py -------------------------------------------------------------------------------- /netgraph/_artists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/netgraph/_artists.py -------------------------------------------------------------------------------- /netgraph/_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/netgraph/_deprecated.py -------------------------------------------------------------------------------- /netgraph/_edge_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/netgraph/_edge_layout.py -------------------------------------------------------------------------------- /netgraph/_interactive_variants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/netgraph/_interactive_variants.py -------------------------------------------------------------------------------- /netgraph/_line_supercover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/netgraph/_line_supercover.py -------------------------------------------------------------------------------- /netgraph/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/netgraph/_main.py -------------------------------------------------------------------------------- /netgraph/_node_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/netgraph/_node_layout.py -------------------------------------------------------------------------------- /netgraph/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/netgraph/_parser.py -------------------------------------------------------------------------------- /netgraph/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/netgraph/_utils.py -------------------------------------------------------------------------------- /optional-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/optional-requirements.txt -------------------------------------------------------------------------------- /publication/advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/publication/advanced_example.png -------------------------------------------------------------------------------- /publication/advanced_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/publication/advanced_example.py -------------------------------------------------------------------------------- /publication/basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/publication/basic_example.png -------------------------------------------------------------------------------- /publication/basic_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/publication/basic_example.py -------------------------------------------------------------------------------- /publication/gallery_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/publication/gallery_portrait.png -------------------------------------------------------------------------------- /publication/gallery_portrait_v5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/publication/gallery_portrait_v5.svg -------------------------------------------------------------------------------- /publication/gallery_portrait_v5a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/publication/gallery_portrait_v5a.png -------------------------------------------------------------------------------- /publication/gallery_portrait_v5b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/publication/gallery_portrait_v5b.png -------------------------------------------------------------------------------- /publication/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/publication/paper.bib -------------------------------------------------------------------------------- /publication/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/publication/paper.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | matplotlib >= 1.5 4 | rectangle-packer 5 | grandalf 6 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description_file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_arcdiagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/tests/test_arcdiagram.py -------------------------------------------------------------------------------- /tests/test_artists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/tests/test_artists.py -------------------------------------------------------------------------------- /tests/test_edge_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/tests/test_edge_layout.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_node_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/tests/test_node_layout.py -------------------------------------------------------------------------------- /tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/tests/test_parser.py -------------------------------------------------------------------------------- /tests/toy_graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulbrodersen/netgraph/HEAD/tests/toy_graphs.py --------------------------------------------------------------------------------