AttributeError: 'Series' object has no attribute 'date'. Did you mean: '_data'?
时间: 2023-09-30 11:09:09 浏览: 145
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常发生在 Pandas 的 Series 对象上,因为 Series 对象没有 `date` 属性。如果你想要获取 Series 中的日期,可以使用 `index` 属性来获取索引,然后再使用 `date` 方法来转换为日期。
例如,假设有一个 Series 对象 `s`,它的索引是日期类型,你可以使用下面的代码来获取日期:
```python
dates = s.index.date
```
这将返回一个包含所有日期的数组。如果你想要获取某个特定位置的日期,可以使用 `s.index[i].date()`,其中 `i` 是位置的索引。
阅读全文