7
Matplotlibでは、fig.add_subplot(111)の引数は何を意味しますか?
時々私はこのようなコードに出くわします: import matplotlib.pyplot as plt x = [1, 2, 3, 4, 5] y = [1, 4, 9, 16, 25] fig = plt.figure() fig.add_subplot(111) plt.scatter(x, y) plt.show() 生成されるもの: 私は狂ったようにドキュメントを読んでいますが、の説明が見つかりません111。時々私は見る212。 の議論はfig.add_subplot()どういう意味ですか?
472
python
matplotlib
figure