-
[matplotlib] plt colors 컬러이름 모음, 컬러이름 출력하기 :: mcolors직접 해보기/Python 2024. 6. 27. 16:48728x90반응형
matplotlib (plt) 컬러이름 모음, 쓸 수 있는 컬러이름 출력해보기
# mcolors 모듈 불러오기 import matplotlib.colors as mcolors # 기본컬러 이름 및 RGB출력 (8가지) mcolors.BASE_COLORS # Tableau컬러 이름 및 컬러코드 출력 (10가지) mcolors.TABLEAU_COLORS # CSS컬러 이름 및 컬러코드출력 (148가지) mcolors.cnames # 혹은 mcolors.CSS4_COLORS # XKCD컬러 이름 및 컬러코드 출력 (949가지) mcolors.XKCD_COLORS
- mcolors 모듈을 가져오고, 위 코드를 실행하면 아래와 같이 이름 및 컬러코드가 출력됩니다.
- 아래는 matplotlib 공식 문서에서 가져온 컬러 일람표입니다.
(https://matplotlib.org/stable/gallery/color/named_colors.html)
BASE_COLORS TABLEAU_COLORS CSS4_COLORS 728x90반응형'직접 해보기 > Python' 카테고리의 다른 글
[seaborn] 데이터프레임으로 박스플롯 그리기 :: sns.boxplot (0) 2024.06.27 [matplotlib][seaborn] 데이터프레임으로 히스토그램 그리기 :: plt.hist sns.histplot (0) 2024.06.27 [matplotlib] 데이터프레임으로 파이차트 원형그래프 그리기 :: plt.pie (0) 2024.06.27 [matplotlib] plt 컬러맵 확인하기 :: plt.colormaps plt.cm (0) 2024.06.26 [matplotlib][seaborn] 데이터프레임으로 막대그래프 그리기 :: plt.bar sns.barplot (0) 2024.06.26