Simple hypergraph with outline#

Draw simple hypergraph with outline and manual layout.

plot simple hypergraph outline
import matplotlib.pyplot as plt

import xgi

hyperedges = [[1, 2, 3], [3, 4, 5], [3, 6], [6, 7, 8, 9], [1, 4, 10, 11, 12], [1, 4]]
H = xgi.Hypergraph(hyperedges)


pos = xgi.barycenter_spring_layout(H, seed=1)
xgi.draw(H, pos=pos, hull=True, edge_fc="white")

plt.show()

Total running time of the script: (0 minutes 0.032 seconds)

Gallery generated by Sphinx-Gallery