回答編集履歴
1
別解追記
test
CHANGED
@@ -3,3 +3,15 @@
|
|
3
3
|
df = df.reset_index().reset_index().set_index('Date')
|
4
4
|
|
5
5
|
```
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
別解
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
```Python
|
14
|
+
|
15
|
+
df['index'] = df.reset_index().index
|
16
|
+
|
17
|
+
```
|