2018年3月6日 星期二

[ Python 常見問題 ] Pandas - Get list from pandas DataFrame column headers

Source From Here 
Question 
I want to get a list of the column headers from a pandas DataFrame. For example, if I'm given a DataFrame like this: 
>>> df = pd.DataFrame({"name":('John', 'Ken'), "age":(33, 23)}) 
>>> df.head() 
age name 
0 33 John 
1 23 Ken

How to get the column list as ("age", "name")? 

How-To 
Check below sample code: 
>>> list(df.columns.values) 
['age', 'name'] 
>>> df.columns.values // numpy array 
array(['age', 'name'], dtype=object)


沒有留言:

張貼留言

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