I am doing sentiment analysis and I want to count the number of unique values of my labels. When I use value_counts() I get multiple values for the same class of labels
labelled_df['sentiment'].value_counts()
the result of the command above is given below
negative 476
neutral 277
positive 122
negative 24
neutral 5
Name: sentiment, dtype: int64
I don’t understand why I am having two values for the negative and neutral classes