开发者社区> 问答> 正文

如何获取dataframe行方向上最大值个数最多的列?

如何获取dataframe行方向上最大值个数最多的列?

展开
收起
游客y244y7ln2rlpa 2021-12-05 20:29:38 378 0
1 条回答
写回答
取消 提交回答
  • df = pd.DataFrame(np.random.randint(1,100, 9).reshape(3, -1))
    print(df)
    # 获取每列包含行方向上最大值的个数
    count_series = df.apply(np.argmax, axis=1).value_counts()
    print(count_series)
    # 输出行方向最大值个数最多的列的索引
    print('Column with highest row maxes: ', count_series.index[0])
    
    #>	    0   1   2
    	0  46  31  34
    	1  38  13   6
    	2   1  18  15
    
    #>统计列的最大值的个数
    		0    2
    		1    1
    		dtype: int64
    	
    #>	Column with highest row maxes:  0
    
    
    2021-12-05 22:22:58
    赞同 展开评论 打赏
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载