Product 01
Hypergraphx
Python tools for building, analyzing, modeling, and visualizing higher-order networks.
Analysis
Models
Visualization
Open library site
$ python
import hypergraphx as hgx
H = hgx.Hypergraph(
[[1, 2, 3], [2, 4], [3, 4, 5]],
weighted=True,
)
print(H.num_nodes(), H.num_edges())
hgx.draw(H)