I want to add a graph to my file and it shows the following error and prints an empty graph. I want to plot a graph between the rating column that has values (1,2,3,4,5) and the
You should pass data parameter instead of edata
sns.countplot(x='Rating', data=Edata);