質問編集履歴
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])に訂正します
test
CHANGED
File without changes
|
test
CHANGED
@@ -64,9 +64,9 @@
|
|
64
64
|
|
65
65
|
|
66
66
|
|
67
|
-
ax
|
67
|
+
ax3=plt.subplot(1,3,3)
|
68
68
|
|
69
|
-
ax
|
69
|
+
ax3.plot([1,2,3,4])
|
70
70
|
|
71
71
|
```
|
72
72
|
|
1
質問タイトルを変更した
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
plt.subplot
|
1
|
+
plt.subplotの働きについて
|
test
CHANGED
File without changes
|