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
- 코딩테스트
- 자료구조
- MySQL
- pandas
- Algorithm
- openCV
- 백준
- 정보처리기사 c언어
- NumPy
- 노마드코딩
- 프로그래머스
- javascript
- dataframe
- Matplotlib
- 선그래프
- python
- 파이썬
- programmers
- queue
- String Method
- 가상환경
- 알고리즘 스터디
- type hint
- 알고리즘스터디
- aws jupyter notebook
- 데이터시각화
- Selenium
- Join
- 알고리즘
- Stack
Archives
- Today
- Total
조금씩 꾸준히 완성을 향해
[Matplotlib] 그래프에 사용가능한 색 이름 모음 (List of named colors) 본문
이름이 지정된 색깔 목록 (List of named colors)
색 관련한 더 많은 정보는 아래를 참조
- the Specifying colors tutorial;
- the matplotlib.colors API;
- the Color Demo.
▶ Base colors
plot_colortable(mcolors.BASE_COLORS, ncols=3, sort_colors=False)
▶ Tableau Palette
plot_colortable(mcolors.TABLEAU_COLORS, ncols=2, sort_colors=False)
▶ CSS Colors
plot_colortable(mcolors.CSS4_COLORS)
plt.show()
▶ XKCD Colors
XKCD 색이 사용가능하지만, 그래프를 크게 만들기 때문에 권장하지는 않는다.
xkcd_fig = plot_colortable(mcolors.XKCD_COLORS)
xkcd_fig.savefig("XKCD_Colors.png")
'Python > 데이터 시각화' 카테고리의 다른 글
[Folium] 단계 구분도(Choropleth Map) 표시하기 (0) | 2022.10.02 |
---|---|
[Folium] 지도 만들기, Marker 표시하기 (0) | 2022.10.02 |
[Seaborn] 다양한 그래프 그리기3 (violinplot, jointplot, FacetGrid, pairplot) (0) | 2022.10.01 |
[Seaborn] 다양한 그래프 그리기2 (pie chart, boxplot, heatmap, stripplot, swarmplot, barplot, countplot) (0) | 2022.10.01 |
[Seaborn] 다양한 그래프 그리기1 (regplot, distplot, histogram, scatter plot) (0) | 2022.10.01 |