matplotlib 그래프 관계 망비록(최소한)

4212 단어 파이썬matplotlib

일본어화


import matplotlib.pyplot as plt
import japanize_matplotlib

저장(해상도 설정)


plt.savefig("name.png",format = 'png', dpi=300)

figure와 axes를 동시 작성



아래의 예에서 ax는 행 x 열 수의 요소를 가지고 있습니다.
#figureという大きな領域を用意し、rows_graph×columns_graph個のグラフ描画領域を作成するイメージ
fig, ax = plt.subplots(rows_graph,columns_graph,figsize=(10,42))

#各ax要素にアクセスし、プロット。
ax[i,j].plot(x,y)

#複数描きたい場合は、for文(ネスト)で複数のグラフ描画
for j,day in enumerate(date_list):
    for i,item in enumerate(cal_items):
        ax[i,j].plot(x,y)

제목, 축, 범례 관계



axis가 아니라 axes의 메소드임에 주의
ax.set_title('タイトル')
ax.set_xlabel('x軸名')
ax.set_ylabel('y軸名')
ax.set_xlim(min,max)
ax.set_ylim(min,max)
ax.legend(['A','B'])#系列が2つある時

htps // tp t b. rg / 1.5.1 / 후 q / 토끼 _ 후 q. html # 파 rts - 오 - 아 - 푹신한

좋은 웹페이지 즐겨찾기