2017年7月12日 星期三

[ Python 常見問題 ] Pandas - How to get a value from a cell of a data frame?

Source From Here 
Question 
For example: 
>>> import pandas as pd 
>>> John = pd.Series(['John', 36, 'Male']) 
>>> Mary = pd.Series(['Mary', 23, 'Female']) 
>>> people_df = pd.DataFrame([list(John), list(Mary)], columns=['Name', 'Age', 'Sex']) 
>>> people_df // Show content of dataframe 
Name Age Sex 
0 John 36 Male 
1 Mary 23 Female

How do I access the 'Age' of second Series (Here is 23)? 

How-To 
Using DataFrame.iloc (Purely integer-location based indexing for selection by position.): 
>>> people_df.iloc[1]['Age'] 
23


沒有留言:

張貼留言

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