日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

python dataframe 取每行的最大值,在python数据框中的每一行中查找最大值

發布時間:2025/3/15 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python dataframe 取每行的最大值,在python数据框中的每一行中查找最大值 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

I'd like to find the highest values in each row and return the column header for the value in python. For example, I'd like to find the top two in each row:

df =

A B C D

5 9 8 2

4 1 2 3

I'd like my for my output to look like this:

df =

B C

A D

解決方案

You can use a dictionary comprehension to generate the largest_n values in each row of the dataframe. I transposed the dataframe and then applied nlargest to each of the columns. I used .index.tolist() to extract the desired top_n columns. Finally, I transposed this result to get the dataframe back into the desired shape.

top_n = 2

>>> pd.DataFrame({n: df.T[col].nlargest(top_n).index.tolist()

for n, col in enumerate(df.T)}).T

0 1

0 B C

1 A D

總結

以上是生活随笔為你收集整理的python dataframe 取每行的最大值,在python数据框中的每一行中查找最大值的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。