Why is my code not working?
df_segmentation - pd.read_csv('segmentation data.csv', index_col - 0)
This code isn't working on my Jupyter, I don't know why
2 answers ( 0 marked as helpful)
Hi UrWiseman,
there seems to be a typo, which might be causing the problem. You need '=' instead of '-'. So
df_segmentation = pd.read_csv(‘segmentation data.csv’, index_col = 0)
Best,
Eli
Please, where can I download this segmentation data?