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
- 완전탐색
- FastAPI
- Kaggle
- pytorch
- GCP
- 코딩테스트
- PytorchLightning
- GIT
- autoencoder
- 알고리즘
- torchserve
- vscode
- wandb
- pep8
- python
- 백준
- 프로그래머스
- github
- NLP
- GitHub Action
- DeepLearning
- docker
- 네이버AItech
- Kubernetes
- NaverAItech
- FDS
- Matplotlib
- datascience
- leetcode
- rnn
Archives
- Today
- Total
목록Matplotlib (1)
Sangmun

1. mpl.rc https://matplotlib.org/stable/tutorials/introductory/customizing.html mlp.rc로 line의 style을 바꾸어 본다면 아래와 같은 2가지 방법이 있다. import matplotlib.pyplot as plt # 1번째 방법 plt.rcParams['lines.linewidth'] = 2 plt.rcParams['lines.linestyle'] = ':' # 2번째 방법 plt.rc('lines', linewidth=2, linestyle=':') 2. theme matplotlib 에서 기본적으로 사용가능한 theme는 아래와 같으며 print(mpl.style.available) # output ['Solarize_Light..
네이버 AI 부스트캠프 4기/Data viz
2022. 11. 8. 15:34