对于某些新闻文章,我有一个带有情感概率的数据框,如下所示:
sentimentPositive sentimentNegative sentimentNeutral
0.219640 0.010708 0.769652
0.539188 0.088198 0.372615
0.561837 0.264411 0.173752
0.570648 0.255499 0.173853
0.525263 0.097155 0.377582
我现在想创建一个新的分类列,告诉我该行中哪种情感具有最高的概率,并用例如(0
,1
,2
)占主导地位。
最终输出应如下所示:
sentimentPositive sentimentNegative sentimentNeutral Sentiment
0.219640 0.010708 0.769652 2
0.539188 0.088198 0.372615 0
0.561837 0.264411 0.173752 0
0.570648 0.255499 0.173853 0
0.097155 0.525263 0.377582 1
我知道我可以通过以下方式获得列的最大值:
df["max"] = df[["sentimentPositive","sentimentNegative","sentimentNeutral"]].max(axis=1)
然后可以将max
列中的值与其他值进行比较以检查类别。但是应该有一种更疯狂的方式来做到这一点,对吧?
答案 0 :(得分:1)
将numpy.argmax
用于职位:
cols = ["sentimentPositive","sentimentNegative","sentimentNeutral"]
df["max"] = df[cols].values.argmax(axis=1)
#for columns names
#df["max"] = df[cols].idxmax(axis=1)
print (df)
sentimentPositive sentimentNegative sentimentNeutral max
0 0.219640 0.010708 0.769652 2
1 0.539188 0.088198 0.372615 0
2 0.561837 0.264411 0.173752 0
3 0.570648 0.255499 0.173853 0
4 0.097155 0.525263 0.377582 1