简体   繁体   English

使用 Pandas query() 过滤时间戳列上的数据框

[英]Using Pandas query() to filter dataframe on a timestamp column

I'm trying to filter a Pandas dataframe using a string and function query() on a timestamp column:我正在尝试在时间戳列上使用字符串和函数query()过滤 Pandas 数据帧:

df.query('Timestamp < "2020-02-01"')

However, I get the following error:但是,我收到以下错误:

Traceback (most recent call last):   
File "C:\ENERCON\Python 3.7.2\lib\site-packages\IPython\core\interactiveshell.py", line 3326, in run_code
     exec(code_obj, self.user_global_ns, self.user_ns)   
File "<ipython-input-3-7bb40e9c631a>", line 1, in <module>
     df.query('Timestamp < "2020-02-01"')   
File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\frame.py", line 3199, in query
     res = self.eval(expr, **kwargs)   
File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\frame.py", line 3315, in eval
     return _eval(expr, inplace=inplace, **kwargs)   
File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\eval.py", line 327, in eval
     ret = eng_inst.evaluate()   
File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\engines.py", line 142, in evaluate
     return self.expr()   
File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\expr.py", line 837, in __call__
     return self.terms(self.env)   
File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\ops.py", line 380, in __call__
     return self.func(left, right) 
TypeError: '<' not supported between instances of 'type' and 'str'

Also tried to convert the string to datetime, but the error is similar.还尝试将字符串转换为日期时间,但错误类似。

df.query('Timestamp < @pd.to_datetime("2020-02-01")')
Traceback (most recent call last):
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\IPython\core\interactiveshell.py", line 3326, in run_code
    exec(code_obj, self.user_global_ns, self.user_ns)
  File "<ipython-input-5-23540526aad9>", line 1, in <module>
    df.query('Timestamp < @pd.to_datetime("2020-02-01")')
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\frame.py", line 3199, in query
    res = self.eval(expr, **kwargs)
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\frame.py", line 3315, in eval
    return _eval(expr, inplace=inplace, **kwargs)
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\eval.py", line 322, in eval
    parsed_expr = Expr(expr, engine=engine, parser=parser, env=env, truediv=truediv)
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\expr.py", line 830, in __init__
    self.terms = self.parse()
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\expr.py", line 847, in parse
    return self._visitor.visit(self.expr)
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\expr.py", line 441, in visit
    return visitor(node, **kwargs)
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\expr.py", line 447, in visit_Module
    return self.visit(expr, **kwargs)
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\expr.py", line 441, in visit
    return visitor(node, **kwargs)
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\expr.py", line 450, in visit_Expr
    return self.visit(node.value, **kwargs)
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\expr.py", line 441, in visit
    return visitor(node, **kwargs)
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\expr.py", line 747, in visit_Compare
    return self.visit(binop)
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\expr.py", line 441, in visit
    return visitor(node, **kwargs)
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\expr.py", line 565, in visit_BinOp
    return self._maybe_evaluate_binop(op, op_class, left, right)
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\expr.py", line 547, in _maybe_evaluate_binop
    return self._maybe_eval(res, self.binary_ops)
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\expr.py", line 519, in _maybe_eval
    self.env, self.engine, self.parser, self.term_type, eval_in_python
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\ops.py", line 399, in evaluate
    res = self(env)
  File "C:\ENERCON\Python 3.7.2\lib\site-packages\pandas\core\computation\ops.py", line 380, in __call__
    return self.func(left, right)
TypeError: '<' not supported between instances of 'type' and 'Timestamp'

If I run the equivalent function using .loc I have the desired results (but I can't use a user input string).如果我使用.loc运行等效函数,我将获得所需的结果(但我不能使用用户输入字符串)。

df.loc[df['Timestamp'] < "2020-02-01"]
Out[4]:                 
     Timestamp  Error  ...  ToD  Day_Night
0    2020-01-17 00:00:00      0  ...    0      Night  
1    2020-01-17 00:10:00      0  ...    0      Night
2    2020-01-17 00:20:00      0  ...    0      Night
3    2020-01-17 00:30:00      0  ...    0      Night 
4    2020-01-17 00:40:00      0  ...    0      Night 
2154 2020-01-31 23:10:00      0  ...   23      Night  
2155 2020-01-31 23:20:00      0  ...   23      Night 
2156 2020-01-31 23:30:00      0  ...   23      Night
2157 2020-01-31 23:40:00      0  ...   23      Night 
2158 2020-01-31 23:50:00      0  ...   23      Night
[2159 rows x 37 columns]

Does anyone knows how to use query() with datetime columns?有谁知道如何将query()与 datetime 列一起使用?

The Timestamp column name shadows the built-in type timestamp . Timestamp列名称隐藏了内置类型timestamp As a first step, you can rename the column to something else, using rename() :作为第一步,您可以使用rename()将列重命名为其他名称:

df.rename(columns={"Timestamp": "MyTimestamp"})

Then the following should do the trick for the datetime:那么以下应该对日期时间起作用:

df.query('MyTimestamp < 20200201')

Alternatively, if you want to query the dataframe using a timestamp:或者,如果您想使用时间戳查询数据帧:

df.query('MyTimestamp < @ts("20200201T071320")' 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM