繁体   English   中英

如何将这三列 dataframe 转换为一列,该列的值在一行中的最大值

[英]how can I transform this three column dataframe to a one column with the value of the column in the highest value in a row

如何将这三列 dataframe 转换为一列,该列的值在一行中的最大值。 例如,第一行变为 -1,第二行变为 1。

dataframe概述:-

在此处输入图像描述

idxmax是您要找的

df["max"] = df.idxmax(axis=1)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM