I have the following Dataframe: Dataframe
I want to plot it into a bar chart. With 3 bars, 1 for Positive, 1 for Neutral and 1 for Negative. Im trying this:
fig = px.bar(senti_df, x=senti_df.index, y=['Positive', 'Neutral', 'Negative'])
fig.show()
But all I get as a result is this: Output
How can I plot them side by side? And is there a possibility to plot it into a pie chart? Thank you so much for your help, I'm a beginner :(


