Guest User

Untitled

a guest
Oct 23rd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. def max_sentiment_class(row):
  2. sentiment_columns = ["neg", "neu", "pos"]
  3. idx_max = np.argmax(row[sentiment_columns].values)
  4. return sentiment_columns[idx_max]
  5.  
  6. df['sentiment_class'] = df.apply(lambda x: max_sentiment_class(x), axis=1)
Add Comment
Please, Sign In to add comment