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
- 기타 연주
- pandas
- C#
- YOLO
- LIST
- VS Code
- ubuntu
- mysql
- 오류
- OpenCV
- 채보
- 핑거스타일
- pytorch
- error
- JSON
- paramiko
- Visual Studio
- C++
- Numpy
- 명령어
- Linux
- 프로그래머스
- Python
- Selenium
- pip
- Docker
- SSH
- label
- C
- windows forms
Archives
- Today
- Total
목록matplotlib (1)
기계는 거짓말하지 않는다
Python Matplotlib 폰트 확인, 적용
matplotlib을 사용할 때 한글이 깨지는 경우가 있다. import matplotlib.pyplot as plt import numpy as np a = np.linspace(1, 10, 20) fig = plt.gcf() fig.canvas.set_window_title('확인') plt.plot(a) plt.title("한글 확인") plt.xlabel("엑스 라벨") plt.ylabel("와이 라벨") plt.show() 사용 가능한 폰트 확인 matplotlib.font_manager로 확인 import matplotlib.font_manager as fm # list로 모든 폰트 확인 fl = [font.name for font in fm.fontManager.ttflist] print(f..
Python
2021. 7. 23. 22:21