df.set_index =(“ Neighbourhood”,inplace = True)给我SyntaxError:无效的语法

时间:2019-08-14 10:55:39

标签: python-3.x indexing methods

我以前的所有代码都运行良好。

只有当我尝试将索引设置为特定的列(如以下代码所示)时,我才遇到错误。

老实说-以前,这种方法已经奏效,但我找不到其他方法来做同样的事情。

df.set_index=("Neighbourhood",inplace=True)

错误消息:

文件“”,第1行     df.set_index =(“ Neighbourhood”,inplace = True)                                          ^ SyntaxError:语法无效

1 个答案:

答案 0 :(得分:0)

set_index是一个函数,您需要调用它。

尝试df.set_index("Neighbourhood",inplace=True)(无=