Created
August 8, 2018 09:03
-
-
Save FelixChop/760b8e2b8dbb5a87e79225ab561b16f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import networkx as nx | |
| G = nx.from_pandas_edgelist(df=d, source=column_ID, target=column_ID+'_2', edge_attr=column_edge) | |
| G.add_nodes_from(nodes_for_adding=d.ID.tolist()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment