반응형
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
- gas
- GIT
- PostgreSQL
- Google Excel
- google apps script
- Excel
- numpy
- math
- SQL
- Google Spreadsheet
- 파이썬
- Python
- django
- string
- Java
- array
- PySpark
- Apache
- dataframe
- list
- Kotlin
- Mac
- matplotlib
- PANDAS
- Redshift
- hive
- Tkinter
- c#
- Github
Archives
- Today
- Total
목록colormaps (1)
달나라 노트
Python matplotlib : colormaps (colormap 종류, cmap)
matplotlib에서는 색상의 그라데이션을 사용할 때가 있습니다. 주로 어떤 데이터셋에서 숫자가 낮을 수록 흰색, 숫자가 높을 수록 검은색 이런 식으로 색상의 그라데이션을 통해 숫자의 크기를 나타낼 때가 있는데 이런 경우에 그라데이션을 자주 사용하죠. matplotlib에는 이미 내장된 다양한 종류의 그라데이션 세트가 있으며 이를 colormap이라고 합니다. colormap의 종류는 matplotlib.colormaps를 통해서 알 수 있습니다. from matplotlib import colormaps print(colormaps) -- Result 'magma', 'inferno', 'plasma', 'viridis', 'cividis', 'twilight', 'twilight_shifted', ..
Python/Python matplotlib
2024. 4. 1. 23:28