I am new to graph analysis using networkx. I created a directed acylic graph. My next step would be compute the levels for all nodes in the graph using antichain function. I checked the tutorial page and it states as:
antichains(G, topo_order=None)
I replaced topo_order=list and executed and object was created. How do I interpret the different levels and their corresponding nodes in it?. Kindly help me.