pandas 取两列的最大值

可以使用 pandas 的 DataFrame.max() 函数,对指定的两列求最大值:

df[['column1', 'column2']].max(axis=1)

其中 df 是你的数据帧,column1column2 是列名。

  •