-
-
Save amankharwal/aa30043b3ef5794512f7958e23c86f66 to your computer and use it in GitHub Desktop.
This file contains 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 | |
import matplotlib.pyplot as plt | |
import pandas as pd | |
# Input data files check | |
from subprocess import check_output | |
import warnings | |
warnings.filterwarnings('ignore') | |
G = nx.Graph(day="Stackoverflow") | |
df_nodes = pd.read_csv('stack_network_nodes.csv') | |
df_edges = pd.read_csv('stack_network_links.csv') | |
for index, row in df_nodes.iterrows(): | |
G.add_node(row['name'], group=row['group'], nodesize=row['nodesize']) | |
for index, row in df_edges.iterrows(): | |
G.add_weighted_edges_from([(row['source'], row['target'], row['value'])]) | |
color_map = {1:'#f09494', 2:'#eebcbc', 3:'#72bbd0', 4:'#91f0a1', 5:'#629fff', 6:'#bcc2f2', | |
7:'#eebcbc', 8:'#f1f0c0', 9:'#d2ffe7', 10:'#caf3a6', 11:'#ffdf55', 12:'#ef77aa', | |
13:'#d6dcff', 14:'#d2f5f0'} | |
plt.figure(figsize=(25,25)) | |
options = { | |
'edge_color': '#FFDEA2', | |
'width': 1, | |
'with_labels': True, | |
'font_weight': 'regular', | |
} | |
colors = [color_map[G.node[node]['group']] for node in G] | |
sizes = [G.node[node]['nodesize']*10 for node in G] | |
""" | |
Using the spring layout : | |
- k controls the distance between the nodes and varies between 0 and 1 | |
- iterations is the number of times simulated annealing is run | |
default k=0.1 and iterations=50 | |
""" | |
nx.draw(G, node_color=colors, node_size=sizes, pos=nx.spring_layout(G, k=0.25, iterations=50), **options) | |
ax = plt.gca() | |
ax.collections[0].set_edgecolor("#555555") | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment