我如何获得 Pandas 数据框中 str 类型的平均值
我有一个来自 pandas 的 DataFrame:
我想获得每个“violation_raw”的“stop_duration”的平均值。 如果列“stop_duration”是对象类型我该怎么办
df = enter code herepd.read_csv('police.csv', parse_dates=['stop_date'])
df[['stop_date', 'violation_raw','stop_duration']]
我的表:
I have a DataFrame from pandas:
i want to get a mean value of "stop_duration" for each "violation_raw".
How can i do it if column "stop_duration" is object type
df = enter code herepd.read_csv('police.csv', parse_dates=['stop_date'])
df[['stop_date', 'violation_raw','stop_duration']]
My table:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 to_datetime 函数将对象转换为日期时间。还指定与您的数据匹配的格式。
Use to_datetime function to convert object to datetime. Also specifying a format to match your data.