gpt4 book ai didi

python - 如何根据pandas中的时间值过滤数据?

转载 作者:太空宇宙 更新时间:2023-11-03 14:09:29 26 4
gpt4 key购买 nike

我是 Python 新手。我正在研究 pandas 包来分析工作负载模式。我的数据框包含两列,其中包含工作的开始时间和结束时间。我想过滤特定开始时间和结束时间之间的数据帧行。例如,上午 7:00:00 之后和下午 18:00:00 之前。我尝试使用以下内容:

(df['STime'] > '7:00:00') & (df['ETime'] < '18:00:00') 

但它对所有行返回False

最佳答案

您只是比较这些值,这就是为什么您只得到 False 值将此表达式与数据框一起使用。

 df=df[(df['STime'] > '7:00:00') and (df['ETime'] < '18:00:00')]

关于python - 如何根据pandas中的时间值过滤数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48617580/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com