python利用pandas找出矩陣的最大值或最小值及其對應的位置

import pandas as pd text = pd.DataFrame([[21,45,78],[23,56,89],[14,25,36],[47,58,69]]) # 先創建一個矩陣 print(text) Out[1]: 0 1 2 0 21 45 78 1 23 56 89 2 14 25 36 3 47 58 69 # 找到最大值和最
相關文章
相關標籤/搜索