I have a pandas DataFrame with no header and I have to assign string type names to the columns to be able to use the pandas query() method.
df.columns = ['A', 'B', 'C']
df.query('A > 0')
I'm wondering how can I query a DateFarame with no header?
querymethod.