✏️

[メモ]Matplotlibでよく使うコマンド

2022/09/29に公開

軸のスケールを揃える。(https://stackoverflow.com/questions/17990845/how-to-equalize-the-scales-of-x-axis-and-y-axis-in-matplotlib)

plt.gca().set_aspect('equal', adjustable='box')
# or 
plt.axis('scaled')

フォントを変更する。(https://stackoverflow.com/questions/3899980/how-to-change-the-font-size-on-a-matplotlib-plot)

import matplotlib
matplotlib.rc('font',  **{'size'   : 22})

Discussion