.gitattributes
.gitignore
.pre-commit-config.yaml
.readthedocs.yaml
CITATION.cff
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE.md
README.md
SECURITY.md
pyproject.toml
pytest.ini
.github/pull_request_template.md
.github/ISSUE_TEMPLATE/bug_report.yml
.github/ISSUE_TEMPLATE/config.yml
.github/ISSUE_TEMPLATE/feature_request.yml
.github/workflows/python-publish.yml
.github/workflows/tests.yml
assets/images/hypergraph.png
assets/logo/logo.png
assets/logo/logo.svg
assets/logo/logo_cropped.png
assets/logo/logo_cropped.svg
docs/Makefile
docs/conf.py
docs/index.html
docs/index.rst
docs/installation.rst
docs/make.bat
docs/quickstart.rst
docs/tutorials.rst
docs/_static/custom.css
docs/_templates/sidebar/navigation.html
docs/api/hypergraphx.communities.core_periphery.rst
docs/api/hypergraphx.communities.hy_mmsbm.rst
docs/api/hypergraphx.communities.hy_sc.rst
docs/api/hypergraphx.communities.hypergraph_mt.rst
docs/api/hypergraphx.communities.hyperlink_comm.rst
docs/api/hypergraphx.communities.rst
docs/api/hypergraphx.core.rst
docs/api/hypergraphx.dynamics.rst
docs/api/hypergraphx.filters.rst
docs/api/hypergraphx.generation.rst
docs/api/hypergraphx.linalg.rst
docs/api/hypergraphx.measures.rst
docs/api/hypergraphx.motifs.rst
docs/api/hypergraphx.readwrite.rst
docs/api/hypergraphx.representations.rst
docs/api/hypergraphx.rst
docs/api/hypergraphx.utils.rst
docs/api/hypergraphx.viz.rst
docs/tutorials/activity_driven.ipynb
docs/tutorials/analysis_paper.ipynb
docs/tutorials/basics.ipynb
docs/tutorials/communities.ipynb
docs/tutorials/conversions.ipynb
docs/tutorials/directed_measures.ipynb
docs/tutorials/filters.ipynb
docs/tutorials/hy_mmsbm_generation.ipynb
docs/tutorials/motifs.ipynb
docs/tutorials/random_walk.ipynb
docs/tutorials/scale_free_generation.ipynb
docs/tutorials/shortest_paths.ipynb
docs/tutorials/simplicial_contagion.ipynb
docs/tutorials/synchronization.ipynb
hypergraphx/__init__.py
hypergraphx/exceptions.py
hypergraphx.egg-info/PKG-INFO
hypergraphx.egg-info/SOURCES.txt
hypergraphx.egg-info/dependency_links.txt
hypergraphx.egg-info/requires.txt
hypergraphx.egg-info/top_level.txt
hypergraphx/communities/__init__.py
hypergraphx/communities/api.py
hypergraphx/communities/results.py
hypergraphx/communities/core_periphery/__init__.py
hypergraphx/communities/core_periphery/model.py
hypergraphx/communities/hy_mmsbm/__init__.py
hypergraphx/communities/hy_mmsbm/_linear_ops.py
hypergraphx/communities/hy_mmsbm/model.py
hypergraphx/communities/hy_sc/__init__.py
hypergraphx/communities/hy_sc/model.py
hypergraphx/communities/hypergraph_mt/__init__.py
hypergraphx/communities/hypergraph_mt/model.py
hypergraphx/communities/hyperlink_comm/__init__.py
hypergraphx/communities/hyperlink_comm/hyperlink_communities.py
hypergraphx/core/__init__.py
hypergraphx/core/base.py
hypergraphx/core/directed.py
hypergraphx/core/multiplex.py
hypergraphx/core/temporal.py
hypergraphx/core/undirected.py
hypergraphx/core/views.py
hypergraphx/dynamics/__init__.py
hypergraphx/dynamics/contagion.py
hypergraphx/dynamics/randwalk.py
hypergraphx/dynamics/synch.py
hypergraphx/dynamics/utils.py
hypergraphx/filters/__init__.py
hypergraphx/filters/metadata_filters.py
hypergraphx/filters/statistical_filters.py
hypergraphx/generation/GAM.py
hypergraphx/generation/__init__.py
hypergraphx/generation/_rng.py
hypergraphx/generation/activity_driven.py
hypergraphx/generation/configuration_model.py
hypergraphx/generation/directed_configuration_model.py
hypergraphx/generation/hy_mmsbm_sampling.py
hypergraphx/generation/random.py
hypergraphx/generation/scale_free.py
hypergraphx/linalg/__init__.py
hypergraphx/linalg/linalg.py
hypergraphx/measures/__init__.py
hypergraphx/measures/degree.py
hypergraphx/measures/edge_similarity.py
hypergraphx/measures/eigen_centralities.py
hypergraphx/measures/reducibility.py
hypergraphx/measures/s_centralities.py
hypergraphx/measures/shortest_paths.py
hypergraphx/measures/sub_hypergraph_centrality.py
hypergraphx/measures/directed/__init__.py
hypergraphx/measures/directed/degree.py
hypergraphx/measures/directed/hyperedge_signature.py
hypergraphx/measures/directed/reciprocity.py
hypergraphx/measures/multiplex/__init__.py
hypergraphx/measures/multiplex/degree.py
hypergraphx/measures/multiplex/overlap.py
hypergraphx/measures/temporal/__init__.py
hypergraphx/measures/temporal/temporal_correlations.py
hypergraphx/measures/temporal/temporal_shortest_paths.py
hypergraphx/measures/temporal/temporal_topological_correlation.py
hypergraphx/motifs/__init__.py
hypergraphx/motifs/directed_motifs.py
hypergraphx/motifs/motifs.py
hypergraphx/motifs/utils.py
hypergraphx/readwrite/__init__.py
hypergraphx/readwrite/hashing.py
hypergraphx/readwrite/hif.py
hypergraphx/readwrite/io_json.py
hypergraphx/readwrite/io_pickle.py
hypergraphx/readwrite/load.py
hypergraphx/readwrite/save.py
hypergraphx/representations/__init__.py
hypergraphx/representations/projections.py
hypergraphx/representations/simplicial_complex.py
hypergraphx/utils/__init__.py
hypergraphx/utils/community.py
hypergraphx/utils/components.py
hypergraphx/utils/edges.py
hypergraphx/utils/labeling.py
hypergraphx/utils/metadata.py
hypergraphx/utils/traversal.py
hypergraphx/viz/__init__.py
hypergraphx/viz/draw_communities.py
hypergraphx/viz/draw_hypergraph.py
hypergraphx/viz/draw_motifs.py
hypergraphx/viz/draw_multilayer_projection.py
hypergraphx/viz/draw_projections.py
hypergraphx/viz/draw_simplicial.py
hypergraphx/viz/plot_motifs.py
tests/conftest.py
tests/test_imports.py
tests/communities/test_api_wrappers.py
tests/communities/test_core_periphery_seed.py
tests/core/test_conversions.py
tests/core/test_serialization.py
tests/core/test_views.py
tests/core/directed_hypergraphs/test_directed_hypergraph.py
tests/core/directed_hypergraphs/test_reciprocity.py
tests/core/directed_hypergraphs/test_signature.py
tests/core/hypergraphs/test_hypergraphs.py
tests/core/multiplex_hypergraphs/test_multiplex_hypergraphs.py
tests/core/temporal_hypergraphs/test_temporal_hypergraphs.py
tests/dynamics/test_contagion.py
tests/dynamics/test_randwalk.py
tests/dynamics/test_reproducibility.py
tests/dynamics/test_synch.py
tests/dynamics/test_utils.py
tests/filters/test_metadata_filters.py
tests/filters/test_statistical_filters.py
tests/filters/test_statistical_filters_alpha.py
tests/generation/test_activity_driven.py
tests/generation/test_configuration_model.py
tests/generation/test_directed_configuration_model.py
tests/generation/test_gam.py
tests/generation/test_hy_mmsbm_sampling.py
tests/generation/test_random.py
tests/generation/test_scalefree.py
tests/linalg/test_adjacency.py
tests/linalg/test_hye_list_to_binary_incidence.py
tests/linalg/test_incidence.py
tests/measures/test_degree.py
tests/measures/test_edge_similarity.py
tests/measures/test_eigen_centralities.py
tests/measures/test_eigen_centralities_seed.py
tests/measures/test_reducibility.py
tests/measures/test_s_centralities.py
tests/measures/test_shortest_paths_helpers.py
tests/measures/test_sub_hypergraph_centrality.py
tests/measures/directed/test_directed_degree.py
tests/measures/directed/test_hyperedge_signature.py
tests/measures/multiplex/test_overlap.py
tests/measures/temporal/test_temporal_correlations.py
tests/measures/temporal/test_temporal_shortest_paths_helpers.py
tests/measures/temporal/test_temporal_topological_correlation.py
tests/motifs/test_directed_motifs.py
tests/motifs/test_motifs.py
tests/motifs/test_motifs_reproducibility.py
tests/motifs/test_motifs_utils.py
tests/readwrite/test_hashing.py
tests/readwrite/test_load_save.py
tests/representations/test_projections.py
tests/representations/test_simplicial_complex.py
tests/test_data/hs/High-School_data_2013.csv
tests/test_data/hs/hs.json
tests/test_data/hs/hs_one_class.json
tests/test_data/justice_data/hyperedges.txt
tests/test_data/justice_data/weights.txt
tests/test_data/small_hypergraph1/hyperedges.txt
tests/test_data/small_hypergraph2/hyperedges.txt
tests/test_data/small_hypergraph3/hyperedges.txt
tests/test_data/with_isolated_nodes/hyperedges.txt
tests/test_data/with_literal_nodes/hyperedges.txt
tests/test_data/workplace/workplace.dat
tests/test_data/workplace/workplace.json
tests/test_data/workplace/workplace_meta.csv
tests/utils/test_cc.py
tests/utils/test_community_utils.py
tests/utils/test_labeling.py
tests/utils/test_utils_exports.py
tests/utils/test_visits.py
tests/viz/test_draws.py
tutorials/activity_driven.ipynb
tutorials/analysis_paper.ipynb
tutorials/basics.ipynb
tutorials/communities.ipynb
tutorials/conversions.ipynb
tutorials/directed_measures.ipynb
tutorials/filters.ipynb
tutorials/hy_mmsbm_generation.ipynb
tutorials/hypergraphx_data.ipynb
tutorials/motifs.ipynb
tutorials/random_walk.ipynb
tutorials/scale_free_generation.ipynb
tutorials/shortest_paths.ipynb
tutorials/simplicial_contagion.ipynb
tutorials/synchronization.ipynb
tutorials/_example_data/social_contagion.npy
tutorials/_example_data/temporal_correlations.npy
tutorials/_example_data/justice_data/hyperedges.txt
tutorials/_example_data/justice_data/weights.txt
tutorials/_example_data/walmart_data/walmart-trips-reduced.txt