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 | 31 |
Tags
- 매틀랩
- Tistory
- 파이썬
- Python
- python visualization
- 서평
- 독후감
- 한빛미디어서평단
- 서평단
- 블로그
- 리눅스
- 텐서플로
- Visualization
- Linux
- matplotlib
- 딥러닝
- Google Analytics
- 한빛미디어
- 월간결산
- 시각화
- Blog
- 통계학
- Ga
- 티스토리
- SQL
- 파이썬 시각화
- tensorflow
- MySQL
- Pandas
- MATLAB
Archives
- Today
- Total
목록networkx (1)
pbj0812의 코딩 일기
[PYTHON] 네트워크 분석을 위한 networkx 예제
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