I am trying to create a graph where number of nodes is more than 400 which is not visualizing in a proper way.
import networkx as nx
G=nx.MultiGraph()
G.add_nodes_from(freqItemSet)
G.add_edges_from([edge])
plt.figure(figsize=(10000,10000))
nx.draw(G)
I was using the above code. Is there any other way to visualize in a proper way.
Thank you