Graph-and-Social-Network-Analytics icon indicating copy to clipboard operation
Graph-and-Social-Network-Analytics copied to clipboard

social network analytics

Results 1 Graph-and-Social-Network-Analytics issues
Sort by recently updated
recently updated
newest added

sc = nx.read_gpickle('Datasets/Synthetic Social Network.pkl') plt.figure(figsize=(10,7)) nx.draw_networkx(sc,node_color='c',node_size=900,with_labels=True) got this error AttributeError Traceback (most recent call last) in 3 plt.figure(figsize=(10,7)) 4 ----> 5 nx.draw_networkx(sc,node_color='c',node_size=900,with_labels=True) ~/.local/lib/python3.6/site-packages/networkx/drawing/nx_pylab.py in draw_networkx(G, pos, arrows, with_labels, **kwds)...