I want to select a sub-set of a pandas dataframe df where the column text has the value '0.0, 0.0'. I thought the command for this would be df.ix[df['text'] == "0.0, 0.0"] but this returns
<console>:1: error: identifier expected but symbol literal found.
df.ix[df['text'] == "0.0, 0.0"]
^
<console>:1: error: unclosed character literal
df.ix[df['text'] == "0.0, 0.0"]
^
What am I doing wrong?