所以我使用to_datetime()将看起来像'23 Jan 2015'的字符串转换为看起来像'2015-01-23'的日期时间,但它的dtype是datetime[ns]而不是datetime[D]。我如何将其转换为日期时间[D],而不是在使用to_datetime()或之后的过程中?谢谢。
我建议你可以使用strptime()和date()
例如:datetime.datetime.strptime('23 Jan 2015', "%d %b %Y").date()
返回"2015-01-23"