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