2018年3月5日 星期一

[ Python 常見問題 ] Pandas - Get column index from column name in python pandas

Source From Here 
Question 
Need to retrieve a column index based on the name of the column from Pandas. 

How-To 
Check below sample code for pandas.Index.get_loc: 
>>> import pandas as pd 
>>> df = pd.DataFrame({"pear": [1,2,3], "apple": [2,3,4], "orange": [3,4,5]}) 
>>> df.columns 
Index([u'apple', u'orange', u'pear'], dtype='object') 
>>> df.columns.get_loc("pear") 
2


沒有留言:

張貼留言

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