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
- lv.4
- 다시풀어보기
- 프리미엄
- join
- 파이썬을활용한시계열데이터분석AtoZ올인원패키지Online
- solvesql
- RANK
- 어려웠음
- 패스트캠퍼스후기
- LeetCode
- 패스트캠퍼스
- 해커랭크
- row_number
- meidum
- SELF-JOIN
- 시계열데이터분석
- SQL
- 직장인자기계발
- MySQL
- 직장인인강
- 패캠챌린지
- recursive
- 프로그래머스
- group by
- Hard
- HACKER_RANK
- medium
- 파이썬을활용한시계열데이터분석
- easy
- Hackerrank
Archives
- Today
- Total
~고군분투 인생살이~
[PYTHON] random_state_index is incorrect 본문
상황
networkx 임포트 후, nx.draw 함수 사용 시 아래와 같은 문제 발생
networkx.exception.NetworkXError: random_state_index is incorrect
해결방법
pip install decorator==4.3 로 재설치 후 사용 가능.
그래도 안된다면 아래 링크 확인
https://stackoverflow.com/questions/66922359/unexpected-error-while-drawing-networkx-graph
Unexpected error while drawing networkx graph
I have a simple graph and need to draw it on my screen, here is my code: def gera_grafo(matriz): grafo = nx.to_networkx_graph(matriz, create_using=nx.Graph) nx.draw(grafo) plt.show() return grafo
stackoverflow.com
'오류' 카테고리의 다른 글
Comments