質問するログイン新規登録

質問編集履歴

2

ax2=plt.subplot(1,3,3) ax2.plot([1,2,3,4])は重複していたので、ax3=plt.subplot(1,3,3) ax3.plot([1,2,3,4])に訂正します

2020/05/16 04:38

投稿

okahijiki
okahijiki

スコア404

title CHANGED
File without changes
body CHANGED
@@ -31,7 +31,7 @@
31
31
  ax2=plt.subplot(1,3,2)
32
32
  ax2.plot([1,2,3,4])
33
33
 
34
- ax2=plt.subplot(1,3,3)
34
+ ax3=plt.subplot(1,3,3)
35
- ax2.plot([1,2,3,4])
35
+ ax3.plot([1,2,3,4])
36
36
  ```
37
37
  ![イメージ説明](fb7524d5555a7f851800d6d06f03c9c6.png)

1

質問タイトルを変更した

2020/05/16 04:38

投稿

okahijiki
okahijiki

スコア404

title CHANGED
@@ -1,1 +1,1 @@
1
- plt.subplot
1
+ plt.subplotの働きについて
body CHANGED
File without changes