2

是否可以在熊猫中使用查询方法,其中列没有名称或其名称中有特殊字符?我想使用配置文件中的查询字符串,但对于某些列,这不起作用。我知道有效的 Python 标识符限制 ,但我想知道是否还有其他特殊关键字,例如我没见过的 index

>>>df = pd.DataFrame(np.ones((3,4)))
>>>df['Special:chars'] = [1,2,9]
>>>df

   0  1  2  3  Special:chars
0  1  1  1  1              1
1  1  1  1  1              2
2  1  1  1  1              9

>>>df.query('index in [0,2]') #the only working query I was able to find

   0  1  2  3  Special:chars
0  1  1  1  1              1
2  1  1  1  1              9

>>>df.query('0<2')
KeyError: True

>>>df.query('"0"<2')
TypeError: data type "" not understood

>>>df.query('Special:chars >=2')
    Special :chars >=2
            ^
SyntaxError: invalid syntax

>>>df.query('"Special:chars" >=2')
data type "Special:chars" not understood
4

0 回答 0