I think something is wrong with the column name “FILM”. I followed the syntax for reading csv files. And I am using the script.py in the portal.
import pandas as pd
reviews = pd.read_csv(‘fandango_scores.csv’,index_col=0)
reviews.index.name = None
norm_reviews = reviews.loc[:, [“FILM”,“RT_user_norm”,“Metacritic_user_nom”,“IMBD_norm”,“Fandango_Ratingvalue”,“Fandango_Stars”]]