2021年1月25日 星期一

[ 常見問題 ] find the max from each row in python

 Source From Here

Question
  1. 0.511474    0.488526  
  2. 0.468783    0.531217  
  3. 0.35111     0.64889  
  4. 0.594834    0.405166  
"How to find the max from each row in python and store it in an numpy array or pandas Dataframe and store it in an numpy array , i.e the output below"

HowTo
Use the numpy amax function. np.amax:
  1. import numpy as np  
  2. a = np.array([[0.511474,    0.488526],  
  3.             [0.468783,    0.531217],  
  4.             [0.35111,     0.64889],  
  5.             [0.594834,    0.405166]])  
  6. x = np.amax(a, 1)  
  7. print(x)  
which returns:
[0.511474 0.531217 0.64889 0.594834]


沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...