我想将字符串列的小时数转换为仅包含小时数的strongstrong日期时间格式,例如texColor.r
或%H%M
。
%H%M%S
包含类似df["hours"]
的字符串
我尝试过的事情:
"08:20"
这不能很好地工作,因为转换后df = pd.read_csv("data/ground_truth.csv", parse_dates=["date"])
df["hours"]= pd.to_datetime(df["hours"], format = '%H:%M%S').dt.time
的类型仍为df["hours"]
。
也:
object
添加这样的日期:df["hours"]= pd.to_datetime(df["hours"], format = '%H:%M%S')
没有简单的方法可以做到这一点吗?