일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- elasticsearch cache
- api cache
- aqqle
- TSLA
- 양자컴퓨터
- NORI
- JPA
- 테슬라
- Query
- KNN
- Cache
- redis
- mysql
- API
- Analyzer
- Selenium
- file download
- Aggregation
- aggs
- ann
- Elastic
- 아이온큐
- vavr
- Elasticsearch
- request cache
- dbeaver
- java
- Docker
- IONQ
- java crawler
Archives
- Today
- Total
아빠는 개발자
[matplotlib] TypeError: __init__() got an unexpected keyword argument 'ncols' 본문
카테고리 없음
[matplotlib] TypeError: __init__() got an unexpected keyword argument 'ncols'
father6019 2024. 6. 15. 23:48728x90
반응형
TypeError: __init__() got an unexpected keyword argument 'ncols'
TypeError: init() got an unexpected keyword argument 'layout'
matplotlib 버전확인
import matplotlib
print(matplotlib.__version__)
pip install --upgrade matplotlib
ncols 같은에러는 ncol 로 변경하면 해결되긴했지만 버전을 올려서 해결하는 방법으로 해보잣
- matplotlib를 최신 버전으로 업데이트하십시오.
- ax.legend(loc='upper left', ncols=3) 대신 ax.legend(loc='upper left', ncol=3)를 사용하십시오.
728x90
반응형