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