回答編集履歴
1
説明の追記
answer
CHANGED
@@ -1,7 +1,9 @@
|
|
1
|
+
> module 'pandas' has no attribute 'DateFrame'
|
2
|
+
|
1
3
|
```python
|
2
4
|
df = pd.DateFrame(...
|
3
5
|
```
|
4
|
-
↓
|
6
|
+
↓ 修正 (スペルミスを直す)
|
5
7
|
```python
|
6
8
|
df = pd.DataFrame(...
|
7
9
|
```
|