is_triad# is_triad(G)[source]# Returns True if the graph G is a triad, else False. Parameters: GgraphA NetworkX Graph Returns: istriadbooleanWhether G is a valid triad Examples >>> G = nx.DiGraph([(1, 2), (2, 3), (3, 1)]) >>> nx.is_triad(G) True >>> G.add_edge(0, 1) >>> nx.is_triad(G) False