I have a dataframe with spaces in column names. I am trying to use query
method to get the results. It is working fine with ‘c’ column but getting error for ‘a b’
JavaScript
x
6
1
import pandas as pd
2
a = pd.DataFrame(columns=["a b", "c"])
3
a["a b"] = [1,2,3,4]
4
a["c"] = [5,6,7,8]
5
a.query('a b==5')
6
For this I am getting this error:
JavaScript
1
4
1
a b ==5
2
^
3
SyntaxError: invalid syntax
4
I don’t want to fill up space with other characters like ‘_’ etc.
There is one hack using pandasql to put variable name inside brackets example: [a b]
Advertisement
Answer
From pandas 0.25
onward you will be able to escape column names with backticks so you can do
JavaScript
1
2
1
a.query('`a b` == 5')
2