├── .circleci └── config.yml ├── .github └── workflows │ ├── circleci_artifact_redirector.yml │ └── notebooks.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── content ├── algorithms │ ├── assortativity │ │ ├── correlation.md │ │ └── data │ │ │ ├── g2.graphml │ │ │ ├── g2_0.graphml │ │ │ ├── g2_1.graphml │ │ │ ├── g2_2.graphml │ │ │ ├── g2_3.graphml │ │ │ ├── g2_4.graphml │ │ │ ├── g2_5.graphml │ │ │ ├── g2_6.graphml │ │ │ ├── g2_7.graphml │ │ │ └── pos_g2 │ ├── dag │ │ ├── data │ │ │ └── clothing_graph.graphml │ │ └── index.md │ ├── euler │ │ ├── euler.md │ │ └── images │ │ │ ├── map.png │ │ │ └── part1.png │ ├── flow │ │ ├── data │ │ │ ├── example_graph.gml │ │ │ └── shipping_graph.gml │ │ ├── dinitz_alg.md │ │ └── images │ │ │ ├── computer_black_144x144.png │ │ │ ├── shipping-modeled.png │ │ │ └── shipping-problem.png │ ├── index.md │ ├── isomorphism │ │ ├── index.md │ │ ├── isomorphism.md │ │ └── not_isomorphic.md │ └── lca │ │ ├── LCA.md │ │ └── images │ │ └── evol_tree.png ├── applications │ ├── goodwillhunting.md │ └── index.md ├── contributing.md ├── exploratory_notebooks │ └── facebook_notebook.md └── generators │ ├── data │ └── tesla_network.json │ ├── geometric.md │ ├── images │ ├── NA-Supercharger_Network.jpg │ └── spatial_networks.png │ ├── index.md │ └── sudoku.md ├── requirements.txt ├── runtime.txt └── site ├── Makefile ├── _static └── networkx_banner.svg ├── conf.py ├── content ├── index.md └── make.bat /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/circleci_artifact_redirector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/.github/workflows/circleci_artifact_redirector.yml -------------------------------------------------------------------------------- /.github/workflows/notebooks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/.github/workflows/notebooks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/README.md -------------------------------------------------------------------------------- /content/algorithms/assortativity/correlation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/assortativity/correlation.md -------------------------------------------------------------------------------- /content/algorithms/assortativity/data/g2.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/assortativity/data/g2.graphml -------------------------------------------------------------------------------- /content/algorithms/assortativity/data/g2_0.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/assortativity/data/g2_0.graphml -------------------------------------------------------------------------------- /content/algorithms/assortativity/data/g2_1.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/assortativity/data/g2_1.graphml -------------------------------------------------------------------------------- /content/algorithms/assortativity/data/g2_2.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/assortativity/data/g2_2.graphml -------------------------------------------------------------------------------- /content/algorithms/assortativity/data/g2_3.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/assortativity/data/g2_3.graphml -------------------------------------------------------------------------------- /content/algorithms/assortativity/data/g2_4.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/assortativity/data/g2_4.graphml -------------------------------------------------------------------------------- /content/algorithms/assortativity/data/g2_5.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/assortativity/data/g2_5.graphml -------------------------------------------------------------------------------- /content/algorithms/assortativity/data/g2_6.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/assortativity/data/g2_6.graphml -------------------------------------------------------------------------------- /content/algorithms/assortativity/data/g2_7.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/assortativity/data/g2_7.graphml -------------------------------------------------------------------------------- /content/algorithms/assortativity/data/pos_g2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/assortativity/data/pos_g2 -------------------------------------------------------------------------------- /content/algorithms/dag/data/clothing_graph.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/dag/data/clothing_graph.graphml -------------------------------------------------------------------------------- /content/algorithms/dag/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/dag/index.md -------------------------------------------------------------------------------- /content/algorithms/euler/euler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/euler/euler.md -------------------------------------------------------------------------------- /content/algorithms/euler/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/euler/images/map.png -------------------------------------------------------------------------------- /content/algorithms/euler/images/part1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/euler/images/part1.png -------------------------------------------------------------------------------- /content/algorithms/flow/data/example_graph.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/flow/data/example_graph.gml -------------------------------------------------------------------------------- /content/algorithms/flow/data/shipping_graph.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/flow/data/shipping_graph.gml -------------------------------------------------------------------------------- /content/algorithms/flow/dinitz_alg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/flow/dinitz_alg.md -------------------------------------------------------------------------------- /content/algorithms/flow/images/computer_black_144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/flow/images/computer_black_144x144.png -------------------------------------------------------------------------------- /content/algorithms/flow/images/shipping-modeled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/flow/images/shipping-modeled.png -------------------------------------------------------------------------------- /content/algorithms/flow/images/shipping-problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/flow/images/shipping-problem.png -------------------------------------------------------------------------------- /content/algorithms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/index.md -------------------------------------------------------------------------------- /content/algorithms/isomorphism/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/isomorphism/index.md -------------------------------------------------------------------------------- /content/algorithms/isomorphism/isomorphism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/isomorphism/isomorphism.md -------------------------------------------------------------------------------- /content/algorithms/isomorphism/not_isomorphic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/isomorphism/not_isomorphic.md -------------------------------------------------------------------------------- /content/algorithms/lca/LCA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/lca/LCA.md -------------------------------------------------------------------------------- /content/algorithms/lca/images/evol_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/algorithms/lca/images/evol_tree.png -------------------------------------------------------------------------------- /content/applications/goodwillhunting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/applications/goodwillhunting.md -------------------------------------------------------------------------------- /content/applications/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/applications/index.md -------------------------------------------------------------------------------- /content/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/contributing.md -------------------------------------------------------------------------------- /content/exploratory_notebooks/facebook_notebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/exploratory_notebooks/facebook_notebook.md -------------------------------------------------------------------------------- /content/generators/data/tesla_network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/generators/data/tesla_network.json -------------------------------------------------------------------------------- /content/generators/geometric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/generators/geometric.md -------------------------------------------------------------------------------- /content/generators/images/NA-Supercharger_Network.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/generators/images/NA-Supercharger_Network.jpg -------------------------------------------------------------------------------- /content/generators/images/spatial_networks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/generators/images/spatial_networks.png -------------------------------------------------------------------------------- /content/generators/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/generators/index.md -------------------------------------------------------------------------------- /content/generators/sudoku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/content/generators/sudoku.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.12 2 | -------------------------------------------------------------------------------- /site/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/site/Makefile -------------------------------------------------------------------------------- /site/_static/networkx_banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/site/_static/networkx_banner.svg -------------------------------------------------------------------------------- /site/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/site/conf.py -------------------------------------------------------------------------------- /site/content: -------------------------------------------------------------------------------- 1 | ../content -------------------------------------------------------------------------------- /site/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/site/index.md -------------------------------------------------------------------------------- /site/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/networkx/nx-guides/HEAD/site/make.bat --------------------------------------------------------------------------------