#include the HypergraphsPlot.jl in julia folder. include("julia/HypergraphsPlot.jl") #generate a random hypergraph with 20 nodes and 5 hyperlinks with random values. h = HypergraphsPlot.generatehg(20,5) #plot the hypergraph with color-edge visualization HypergraphsPlot.plot(h,type="color-edge") #plot the hypergraph with radal visualization HypergraphsPlot.plot(h,type="radal") #plot the hypergraph with venn visualization HypergraphsPlot.plot(h,type="venn") #you can also plot the hypergraph using a JSON file descriptor HypergraphsPlot.plot("newData.json",type="color-edge") #or specifing some preferences HypergraphsPlot.plot(h,type="color-edge",colorNodes="red",colorEdges="blue",sizeNodes="10")