우노
[Python] Matplotlib Color 종류 본문
- Matplotlib에서 그래프를 plot,scatter 등으로 표현 할 때, 파라미터를 통해 점의 색깔(color)를 지정할 수 있다.
Color 종류
예제 코드
plot
from matplotlib import pyplot as plt # x,y 축 데이터 years = [1950, 1960, 1970, 1980, 1990, 2000, 2010] gdp = [300.2, 543.3, 1075.9, 2862.5, 5979.6, 10289.7, 14958.3] # 표 내부 설정 plt.plot(years, gdp, color='darkmagenta', marker='o', linestyle='solid') # 표 외부 설정 plt.title("Nominal GDP") plt.ylabel("Billions of $") plt.xlabel("Years") # 표 그리기 plt.show()
scatter
from matplotlib import pyplot as plt # x,y 축 데이터 years = [1950, 1960, 1970, 1980, 1990, 2000, 2010] gdp = [300.2, 543.3, 1075.9, 2862.5, 5979.6, 10289.7, 14958.3] # 표 내부 설정 plt.scatter(years, gdp, marker='^', color='limegreen') # 표 외부 설정 plt.title("Nominal GDP") plt.ylabel("Billions of $") plt.xlabel("Years") # 표 그리기 plt.show()
참고
'Language > Python' 카테고리의 다른 글
[Python] Python 에서 Shell 명령어 실행하는 방법 (0) | 2020.12.20 |
---|---|
[Python] Numpy random 모듈 정리 (0) | 2020.12.03 |
[Python] file read 시 head 제거 (0) | 2020.11.30 |
[Python] Pandas DataFrame을 numpy 배열로 변환하는 방법 (1) | 2020.11.26 |
[Python] Numpy 2차원 배열 생성 방법 (0) | 2020.11.26 |
Comments