우노
[Matplotlib] figure, subplot 차이 본문
matplotlib.pyplot.figure
reference
example
import matplotlib.pyplot as plt # figure 크기 설정 plt.figure(figsize=(15,7)) # grid 설정 plt.grid(True) # title 설정 plt.title() # x, y축 라벨 설정 plt.xlabel() plt.ylabel() # x, y축 범위 설정 plt.xlim() plt.xlim() # x, y축 눈금 설정 plt.xticks() plt.yticks() # 범례 plt.legend() # 그리기 plt.plot() # 보이기 plt.show()
matplotlib.pyplot.subplot
reference
example
import matplotlib.pyplot as plt # figure 크기 설정 fig = plt.figure(figsize=(15,7)) # subplot 추가 ax = fig.add_subplot(111) # grid 설정 ax.grid(True) # title 설정 ax.set_title() # x, y축 라벨 설정 ax.set_xlabel() ax.set_ylabel() # x, y축 범위 설정 ax.set_xlim() ax.set_ylim() # x, y축 눈금 설정 ax.set_xticks() ax.set_yticks() # x, y축 눈금 라벨 설정 ax.set_xticklabels() ax.set_yticklabels() # 범례 ax.legend() # 그리기 ax.plot() # 보이기 plt.show()
'Language > Python' 카테고리의 다른 글
[Python] 시간 측정 (0) | 2021.08.19 |
---|---|
[Python] pip 개념 및 설치 (0) | 2021.06.25 |
[Python] Pandas DataFrame 컬럼 값 조건 변경 (4) | 2021.06.05 |
[Python] dictionary 키, 값 정렬 (0) | 2021.05.26 |
[Python] zip, 인자 언패킹(argument unpacking), *args, **kwargs (0) | 2021.04.18 |
Comments