df_time = pd.to_datetime(df_name['Date']),将其中的时间格式为‘年-月-日’
时间: 2024-03-09 21:49:14 浏览: 87
date.js 时间格式转换
好的,您可以使用Pandas中的`strftime()`方法将时间格式转换为‘年-月-日’。以下是一个示例代码:
```python
import pandas as pd
# 假设您的DataFrame中有一个名为'Date'的时间列
df_time = pd.to_datetime(df_name['Date'])
# 将时间格式化为'年-月-日'的字符串
df_time_formatted = df_time.dt.strftime('%Y-%m-%d')
# 将格式化后的时间列替换原有的时间列
df_name['Date'] = df_time_formatted
```
这个代码将把`df_name`中的'Date'列转换为`datetime`类型,然后使用`strftime()`方法将时间格式化为'年-月-日'的字符串。最后,将格式化后的时间列替换原有的时间列。
阅读全文