回答編集履歴
2
indexを1スタートに修正
answer
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
fig, ax = plt.subplots(5, 5, figsize=(15, 15))
|
5
5
|
for row in range(5):
|
6
6
|
for col in range(5):
|
7
|
-
index = row * 5 + col
|
7
|
+
index = row * 5 + col + 1
|
8
8
|
filename = f"H20_kushichouson_{index:02}.csv"
|
9
9
|
df = pd.read_csv(filename, encoding=("SHIFT-JIS"))
|
10
10
|
ax[row][col].plot(
|
1
誤字の修正
answer
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
単純に`昼と夜のプロットを横に5個、縦に5個
|
1
|
+
単純に`昼と夜のプロットを横に5個、縦に5個並べる方法`が良いと思います。
|
2
2
|
|
3
3
|
```python
|
4
4
|
fig, ax = plt.subplots(5, 5, figsize=(15, 15))
|