質問編集履歴

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

test CHANGED
File without changes
test CHANGED
@@ -64,9 +64,9 @@
64
64
 
65
65
 
66
66
 
67
- ax2=plt.subplot(1,3,3)
67
+ ax3=plt.subplot(1,3,3)
68
68
 
69
- ax2.plot([1,2,3,4])
69
+ ax3.plot([1,2,3,4])
70
70
 
71
71
  ```
72
72
 

1

質問タイトルを変更した

2020/05/16 04:38

投稿

okahijiki
okahijiki

スコア404

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