0
私はまだfig、pltの最高の使い方を理解していません。と斧。 matplotlibで 私はpltを使っていますか?いつも? どうすればいいですか?利用される?いつaxを使うべきですか? matplotlibで?
私はまだfig、pltの最高の使い方を理解していません。と斧。 matplotlibで 私はpltを使っていますか?いつも? どうすればいいですか?利用される?いつaxを使うべきですか? matplotlibで?
使用fig
およびax
は、object oriented interfaceの一部であり、可能な限り頻繁に使用する必要があります。古いplt
インタフェースを使用して
も、ほとんどの場合で動作しますが、作成したとき、多くの数字を操作したり、それはすべてあなたの数字を追跡するのは非常にトリッキーになることができ軸:
に比べplt.figure()
plt.plot(...) # this implicitly modifies the axis created beforehand
plt.xlim([0, 10]) # this implicitly modifies the axis created beforehand
plt.show()
fig, ax = plt.subplots(1, 1)
ax.plot(...) # this explicitly modifies the axis created beforehand
ax.set_xlim([0, 10]) # this explicitly modifies the axis created beforehand
plt.show()