Description
Hello, I'd like to start developing an implementation of hypergraphs (both directed and undirected) for Graphs.jl
and a way to visualize them. I'm aiming for something like the following:
This was from me playing around with SimpleHypergraphs.jl
which used PyCall.jl
to utilize Python's HyperNetX. The issue with the package is that the native Julia implementation doesn't work and it doesn't support directed hypergraphs.
Consequently, I wanted to throw out the idea before I started development to see if the package I make should be following certain implementation or style guidelines (besides the ones listed here). Also, let me know if there's a preferred graph visualization library that is normally used by Graphs.jl
so I can make it as compatible as possible. 👍