Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- 티스토리
- 리눅스
- matplotlib
- 파이썬 시각화
- Ga
- Python
- MySQL
- Blog
- 독후감
- Google Analytics
- 파이썬
- tensorflow
- Pandas
- 월간결산
- python visualization
- Linux
- 서평단
- 텐서플로
- 한빛미디어서평단
- 시각화
- Visualization
- Tistory
- 딥러닝
- MATLAB
- 통계학
- 한빛미디어
- 블로그
- SQL
- 매틀랩
- 서평
Archives
- Today
- Total
목록네트워크분석 (1)
pbj0812의 코딩 일기

1. 설치 pip install networkx 2. 코드 1) 라이브러리 호출 import networkx as nx import matplotlib.pyplot as plt # 그래프 생성 G = nx.DiGraph() 2) 노드(점) 생성 G.add_nodes_from([1, 2, 3, 4, 5]) 3) 엣지(선) 생성 G.add_edges_from([(1, 2), (2, 1), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2,4), (4, 2), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3), (2, 3)]) 4) degree 생성 ..
ComputerLanguage_Program/PYTHON
2020. 4. 9. 01:37