NO IMAGE

【Python,matplotlib】matplotlibのグラフを編集(コピペ可)

matlibplotのグラフを編集する方法について、コピペでそのまま使えるように整理しました。

サンプル

fig = plt.figure()

#図のサイズ変更
plt.figure(figsize=(15,6))

#データをプロット&ラベル名設定
plt.plot(data,label='label_name')

#補助線
plt.grid()

#サブプロット間の正しい間隔を自動的に維持
plt.tight_layout()

#軸目盛の設定(日付ver)
plt.gca().xaxis.set_major_formatter(mdates.DateFormatter('%Y-%m/%d'))

#x軸の設定(日付ver)
sxmin='2020-12-01'
sxmax='2020-12-31'
xmin = datetime.datetime.strptime(sxmin, '%Y/%m/%d')
xmax = datetime.datetime.strptime(sxmax, '%Y/%m/%d')
plt.xlim([xmin,xmax])

#y軸の設定
plt.ylim([0,6])

#軸ラベルの設定
plt.ylabel('sample',fontsize=18)
plt.xlabel('year/month',fontsize=18)

#凡例の設定
plt.legend(loc='lower left',fontsize=18)

詳細解説

以下のブログで細かい解説はしています。

NO IMAGE
最新情報をチェックしよう!