Skip to content

Instantly share code, notes, and snippets.

@inc0
Created May 9, 2019 22:20
Show Gist options
  • Save inc0/3006930ef42974978b5777b036db4161 to your computer and use it in GitHub Desktop.
Save inc0/3006930ef42974978b5777b036db4161 to your computer and use it in GitHub Desktop.
def ego_graph(row, graph, radius):
if row == 'foo':
return
reurn nx.ego_graph(G, row, radius).edges()
test_user_dd.apply(ego_graph, graph=G, radius=2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment