'df.set_index=("Neighbourhood",inplace=True) giving me SyntaxError: invalid syntax

All of my previous code runs well.

It is only when I try to set the index to a particular column as the code below shows, that I run into an error.

Honestly - this same method has worked before and I have not been able to find any other method to do the same thing.

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

Error message:

File "", line 1 df.set_index=("Neighbourhood",inplace=True) ^ SyntaxError: invalid syntax



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source