2021年3月13日 星期六

[ Python 常見問題 ] Pandas - Set value for particular cell in pandas DataFrame using index

 Source From Here

Question
I've created a Pandas DataFrame
  1. import pandas as pd  
  2.   
  3. df = pd.DataFrame(index=['A','B','C'], columns=['x','y'])  
  4. df  
Output:
  1.     x    y  
  2. A  NaN  NaN  
  3. B  NaN  NaN  
  4. C  NaN  NaN  
Then I want to assign value to particular cell, for example for row 'C' and column 'x'. I've expected to get such result:Any suggestions?
  1.     x    y  
  2. A  NaN  NaN  
  3. B  NaN  NaN  
  4. C  10  NaN  
Any suggestions?

HowTo
Going forward, the recommended method is .iat/.at. So the recommended approach is:


沒有留言:

張貼留言

[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...