[실습] 네트워크 시각화 :: Python 네트워크 분석 - mindscale
Skip to content

[실습] 네트워크 시각화

import networkx as nx

G = nx.DiGraph()
G.add_edges_from([(1, 2), (1, 3), (2, 3)])
nx.draw(G)
nx.draw(
    G, 
    with_labels=True,      # True면 레이블을 표시한다
    node_color='white',    # 노드 색상   (기본 파란색)
    node_size=500,         # 노드 크기   (기본 300)
    font_size=24,          # 글꼴 크기   (기본 12)
    font_color='#fcba03',  # 글꼴 색상   (기본 검은색)
    edge_color='green',    # 에지 색생   (기본 검은색)
    arrowsize=30)          # 화살표 크기 (기본 10)