質問編集履歴
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])に訂正します
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
|
-
|
34
|
+
ax3=plt.subplot(1,3,3)
|
35
|
-
|
35
|
+
ax3.plot([1,2,3,4])
|
36
36
|
```
|
37
37
|

|
1
質問タイトルを変更した
title
CHANGED
@@ -1,1 +1,1 @@
|
|
1
|
-
plt.subplot
|
1
|
+
plt.subplotの働きについて
|
body
CHANGED
File without changes
|