Home > Blockchain >  'Could not interpret input' error with Seaborn when plotting
'Could not interpret input' error with Seaborn when plotting

Time:05-25

Basically I converted query result into dataframe and tried plotting it using seaborn but I get a value error

This is a snapshot of the dataframe

enter image description here

This is a snapshot of error

enter image description here

CodePudding user response:

Welcome to StackOverflow. The issue you are seeing is that the column name is testscore while you are calling it as x='Test Score' when calling the seaborn barplot. Correct the name there and you should be able to proceed

  • Related