├── .bumpversion.cfg ├── .devcontainer ├── Dockerfile ├── devcontainer.json ├── library-scripts │ └── common-debian.sh └── noop.txt ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── pull_request_template.md ├── stale.yaml └── workflows │ ├── code-style.yaml │ ├── docs.yaml │ ├── pr-checks.yaml │ └── release-python-package.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── docs ├── api │ ├── facet-api.ipynb │ ├── high-level-api.ipynb │ ├── low-level-api.ipynb │ ├── mid-level-api.ipynb │ └── object-oriented-api.ipynb ├── contributors.md ├── developers │ ├── architecture.md │ ├── contributing.md │ ├── devguide.md │ └── new-plots.ipynb ├── examples │ ├── arc_node_labels.ipynb │ ├── circos_node_labels.ipynb │ ├── divvy.pkl │ ├── geo.ipynb │ ├── matrix.ipynb │ └── matrix_node_labels.ipynb ├── history.md ├── images │ └── circos.png ├── index.md ├── releases │ └── v0.7.6.md ├── stylesheets │ └── custom.css └── theory.md ├── examples ├── arc │ ├── barbell.py │ ├── edge_color.py │ ├── edge_width.py │ ├── lollipop.py │ ├── node_size.py │ └── octahedral.py ├── circos │ ├── barbell.py │ ├── change_font.py │ ├── edge_color.py │ ├── edge_direction_by_node_color.py │ ├── edge_width.py │ ├── group_labels.py │ ├── group_labels_with_custom_legend.py │ ├── group_labels_with_default_legend.py │ ├── group_order.py │ ├── lollipop.py │ └── octahedral.py ├── datasets │ ├── crime.py │ ├── moreno_crime │ │ ├── README.moreno_crime │ │ ├── ent.moreno_crime_crime.person.name │ │ ├── ent.moreno_crime_crime.person.sex │ │ ├── meta.moreno_crime_crime │ │ ├── out.moreno_crime_crime │ │ └── rel.moreno_crime_crime.person.role │ ├── moreno_innovation │ │ ├── README.moreno_innovation │ │ ├── meta.moreno_innovation_innovation │ │ └── out.moreno_innovation_innovation │ └── physician.py ├── geo │ └── divvy.py └── matrix │ ├── barbell.py │ ├── lollipop.py │ └── octahedral.py ├── logo.jpg ├── logo.pdf ├── mkdocs.yml ├── nxviz.svg ├── nxviz ├── __init__.py ├── annotate.py ├── api.py ├── edges.py ├── encodings.py ├── facet.py ├── geometry.py ├── highlights.py ├── io.py ├── layouts.py ├── lines.py ├── nodes.py ├── plots.py ├── polcart.py ├── utils.py └── version.py ├── pixi.lock ├── pyproject.toml ├── scripts └── ci │ └── unpack_environment.sh └── tests ├── __init__.py ├── baseline_images └── test_plots │ ├── arc.png │ ├── circos.png │ ├── circos33.png │ ├── geo.png │ └── matrix.png ├── conftest.py ├── data └── divvy.pkl ├── fixtures ├── __init__.py └── graphs.py ├── test_annotate.py ├── test_encodings.py ├── test_geometry.py ├── test_layouts.py ├── test_midlevel_api.py ├── test_nxviz.py ├── test_plots.py ├── test_polcart.py └── test_utils.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/library-scripts/common-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/.devcontainer/library-scripts/common-debian.sh -------------------------------------------------------------------------------- /.devcontainer/noop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/.devcontainer/noop.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/.github/stale.yaml -------------------------------------------------------------------------------- /.github/workflows/code-style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/.github/workflows/code-style.yaml -------------------------------------------------------------------------------- /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/.github/workflows/pr-checks.yaml -------------------------------------------------------------------------------- /.github/workflows/release-python-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/.github/workflows/release-python-package.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | docs/index.md -------------------------------------------------------------------------------- /docs/api/facet-api.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/api/facet-api.ipynb -------------------------------------------------------------------------------- /docs/api/high-level-api.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/api/high-level-api.ipynb -------------------------------------------------------------------------------- /docs/api/low-level-api.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/api/low-level-api.ipynb -------------------------------------------------------------------------------- /docs/api/mid-level-api.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/api/mid-level-api.ipynb -------------------------------------------------------------------------------- /docs/api/object-oriented-api.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/api/object-oriented-api.ipynb -------------------------------------------------------------------------------- /docs/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/contributors.md -------------------------------------------------------------------------------- /docs/developers/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/developers/architecture.md -------------------------------------------------------------------------------- /docs/developers/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/developers/contributing.md -------------------------------------------------------------------------------- /docs/developers/devguide.md: -------------------------------------------------------------------------------- 1 | # Development Guide 2 | -------------------------------------------------------------------------------- /docs/developers/new-plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/developers/new-plots.ipynb -------------------------------------------------------------------------------- /docs/examples/arc_node_labels.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/examples/arc_node_labels.ipynb -------------------------------------------------------------------------------- /docs/examples/circos_node_labels.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/examples/circos_node_labels.ipynb -------------------------------------------------------------------------------- /docs/examples/divvy.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/examples/divvy.pkl -------------------------------------------------------------------------------- /docs/examples/geo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/examples/geo.ipynb -------------------------------------------------------------------------------- /docs/examples/matrix.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/examples/matrix.ipynb -------------------------------------------------------------------------------- /docs/examples/matrix_node_labels.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/examples/matrix_node_labels.ipynb -------------------------------------------------------------------------------- /docs/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/history.md -------------------------------------------------------------------------------- /docs/images/circos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/images/circos.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/releases/v0.7.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/releases/v0.7.6.md -------------------------------------------------------------------------------- /docs/stylesheets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/stylesheets/custom.css -------------------------------------------------------------------------------- /docs/theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/docs/theory.md -------------------------------------------------------------------------------- /examples/arc/barbell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/arc/barbell.py -------------------------------------------------------------------------------- /examples/arc/edge_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/arc/edge_color.py -------------------------------------------------------------------------------- /examples/arc/edge_width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/arc/edge_width.py -------------------------------------------------------------------------------- /examples/arc/lollipop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/arc/lollipop.py -------------------------------------------------------------------------------- /examples/arc/node_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/arc/node_size.py -------------------------------------------------------------------------------- /examples/arc/octahedral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/arc/octahedral.py -------------------------------------------------------------------------------- /examples/circos/barbell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/circos/barbell.py -------------------------------------------------------------------------------- /examples/circos/change_font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/circos/change_font.py -------------------------------------------------------------------------------- /examples/circos/edge_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/circos/edge_color.py -------------------------------------------------------------------------------- /examples/circos/edge_direction_by_node_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/circos/edge_direction_by_node_color.py -------------------------------------------------------------------------------- /examples/circos/edge_width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/circos/edge_width.py -------------------------------------------------------------------------------- /examples/circos/group_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/circos/group_labels.py -------------------------------------------------------------------------------- /examples/circos/group_labels_with_custom_legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/circos/group_labels_with_custom_legend.py -------------------------------------------------------------------------------- /examples/circos/group_labels_with_default_legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/circos/group_labels_with_default_legend.py -------------------------------------------------------------------------------- /examples/circos/group_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/circos/group_order.py -------------------------------------------------------------------------------- /examples/circos/lollipop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/circos/lollipop.py -------------------------------------------------------------------------------- /examples/circos/octahedral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/circos/octahedral.py -------------------------------------------------------------------------------- /examples/datasets/crime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/datasets/crime.py -------------------------------------------------------------------------------- /examples/datasets/moreno_crime/README.moreno_crime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/datasets/moreno_crime/README.moreno_crime -------------------------------------------------------------------------------- /examples/datasets/moreno_crime/ent.moreno_crime_crime.person.name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/datasets/moreno_crime/ent.moreno_crime_crime.person.name -------------------------------------------------------------------------------- /examples/datasets/moreno_crime/ent.moreno_crime_crime.person.sex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/datasets/moreno_crime/ent.moreno_crime_crime.person.sex -------------------------------------------------------------------------------- /examples/datasets/moreno_crime/meta.moreno_crime_crime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/datasets/moreno_crime/meta.moreno_crime_crime -------------------------------------------------------------------------------- /examples/datasets/moreno_crime/out.moreno_crime_crime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/datasets/moreno_crime/out.moreno_crime_crime -------------------------------------------------------------------------------- /examples/datasets/moreno_crime/rel.moreno_crime_crime.person.role: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/datasets/moreno_crime/rel.moreno_crime_crime.person.role -------------------------------------------------------------------------------- /examples/datasets/moreno_innovation/README.moreno_innovation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/datasets/moreno_innovation/README.moreno_innovation -------------------------------------------------------------------------------- /examples/datasets/moreno_innovation/meta.moreno_innovation_innovation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/datasets/moreno_innovation/meta.moreno_innovation_innovation -------------------------------------------------------------------------------- /examples/datasets/moreno_innovation/out.moreno_innovation_innovation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/datasets/moreno_innovation/out.moreno_innovation_innovation -------------------------------------------------------------------------------- /examples/datasets/physician.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/datasets/physician.py -------------------------------------------------------------------------------- /examples/geo/divvy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/geo/divvy.py -------------------------------------------------------------------------------- /examples/matrix/barbell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/matrix/barbell.py -------------------------------------------------------------------------------- /examples/matrix/lollipop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/matrix/lollipop.py -------------------------------------------------------------------------------- /examples/matrix/octahedral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/examples/matrix/octahedral.py -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/logo.jpg -------------------------------------------------------------------------------- /logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/logo.pdf -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /nxviz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/nxviz.svg -------------------------------------------------------------------------------- /nxviz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/nxviz/__init__.py -------------------------------------------------------------------------------- /nxviz/annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/nxviz/annotate.py -------------------------------------------------------------------------------- /nxviz/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/nxviz/api.py -------------------------------------------------------------------------------- /nxviz/edges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/nxviz/edges.py -------------------------------------------------------------------------------- /nxviz/encodings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/nxviz/encodings.py -------------------------------------------------------------------------------- /nxviz/facet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/nxviz/facet.py -------------------------------------------------------------------------------- /nxviz/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/nxviz/geometry.py -------------------------------------------------------------------------------- /nxviz/highlights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/nxviz/highlights.py -------------------------------------------------------------------------------- /nxviz/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/nxviz/io.py -------------------------------------------------------------------------------- /nxviz/layouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/nxviz/layouts.py -------------------------------------------------------------------------------- /nxviz/lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/nxviz/lines.py -------------------------------------------------------------------------------- /nxviz/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/nxviz/nodes.py -------------------------------------------------------------------------------- /nxviz/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/nxviz/plots.py -------------------------------------------------------------------------------- /nxviz/polcart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/nxviz/polcart.py -------------------------------------------------------------------------------- /nxviz/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/nxviz/utils.py -------------------------------------------------------------------------------- /nxviz/version.py: -------------------------------------------------------------------------------- 1 | version = "0.7.6" 2 | -------------------------------------------------------------------------------- /pixi.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/pixi.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/ci/unpack_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/scripts/ci/unpack_environment.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Test suite for nxviz.""" 2 | -------------------------------------------------------------------------------- /tests/baseline_images/test_plots/arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/baseline_images/test_plots/arc.png -------------------------------------------------------------------------------- /tests/baseline_images/test_plots/circos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/baseline_images/test_plots/circos.png -------------------------------------------------------------------------------- /tests/baseline_images/test_plots/circos33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/baseline_images/test_plots/circos33.png -------------------------------------------------------------------------------- /tests/baseline_images/test_plots/geo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/baseline_images/test_plots/geo.png -------------------------------------------------------------------------------- /tests/baseline_images/test_plots/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/baseline_images/test_plots/matrix.png -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/divvy.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/data/divvy.pkl -------------------------------------------------------------------------------- /tests/fixtures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/fixtures/__init__.py -------------------------------------------------------------------------------- /tests/fixtures/graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/fixtures/graphs.py -------------------------------------------------------------------------------- /tests/test_annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/test_annotate.py -------------------------------------------------------------------------------- /tests/test_encodings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/test_encodings.py -------------------------------------------------------------------------------- /tests/test_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/test_geometry.py -------------------------------------------------------------------------------- /tests/test_layouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/test_layouts.py -------------------------------------------------------------------------------- /tests/test_midlevel_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/test_midlevel_api.py -------------------------------------------------------------------------------- /tests/test_nxviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/test_nxviz.py -------------------------------------------------------------------------------- /tests/test_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/test_plots.py -------------------------------------------------------------------------------- /tests/test_polcart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/test_polcart.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericmjl/nxviz/HEAD/tests/test_utils.py --------------------------------------------------------------------------------