I want to plot graph using matplotlib for the following dataset.
But I an getting this error.
None of [Index(['roberta_neg', 'roberta_neu', 'roberta_pos'], dtype='object')] are in the [columns].
the code that i have used is:
df.plot(x="Ratings", y=["roberta_neg", "roberta_neu","roberta_pos"], kind="bar")

