将df的“Date_reported”列数据类型转换为时间类型, 打印该列的数据类型
时间: 2023-12-14 15:37:00 浏览: 65
数据库的日期格式转换
可以使用 pandas 的 `to_datetime()` 方法将 DataFrame 中的某一列数据类型从字符串类型转换为时间类型。具体操作如下:
```python
import pandas as pd
# 读取数据
df = pd.read_csv('data.csv')
# 将 "Date_reported" 列转换为时间类型
df['Date_reported'] = pd.to_datetime(df['Date_reported'])
# 打印 "Date_reported" 列的数据类型
print(df['Date_reported'].dtype)
```
输出结果应该为:
```
datetime64[ns]
```
表示该列数据类型已经成功转换为时间类型。
阅读全文