hypergraphx
hypergraphx copied to clipboard
HGX is a multi-purpose, open-source Python library for higher-order network analysis
It still is 1,0,
It is pretty bad. For comparison, HyperNetx is excellent; DHG is also much better.
I was trying to use the random walk function which depends on the transition_matrix matrix function in the dynamics submodule. I got the error: ``` IndexError: index 492 is out...
Currently `draw_hypergraph` does not allow an array as input for `node_color` as it suggests. Fix is to change the relevant line in the call to `nx.draw_networkx_nodes` to: `node_color=node_color[n], `
In the HyMMSBM Sampler class, there's a random number generator variable that takes a seed value, in the constructor: ``` self._rng: np.random.Generator = np.random.default_rng(seed) ``` The solution is as easy...
hi, I'm considering a "real" hypergraph, while computing the laplacians of any order I found this error: ```python 9 hypergraph = Hypergraph(hyperedges_list) ---> 10 laplacians = laplacian_matrices_all_orders(hypergraph) 11 12 ~/anaconda3/lib/python3.9/site-packages/hypergraphx/linalg/linalg.py...
I can't seem to control the node size on an individual basis in the draw_hypergraph function. Ideally, I would be able to use a dictionary with the node names as...
Make sure that long_description is displayed correctly on pypi
Users need to provide colors for all orders that they have above 4. Maybe something like https://matplotlib.org/stable/tutorials/colors/colormaps.html could be useful to provide default color values for those.