此方法用於將long-format數據整形為寬。這是DataFrame.pivot的廣義逆。
用法: pandas.lreshape(data, groups, dropna=True, label=None)
Arguments:
- data: DataFrame
- groups:字典{new_name:list_of_columns}
- dropna :boolean,默認為True
下麵是上述方法的實現示例:
Python3
# importing package
import numpy
import pandas
# create and view data
data = pandas.DataFrame({
'hr1':[514, 573],
'hr2':[545, 526],
'team':['Red Sox', 'Yankees'],
'year1':[2007, 2007],
'year2':[2008, 2008]
})
print(data)
# use pandas.lreshape() method
print(pd.lreshape(data, {'year':['year1', 'year2'],
'hr':['hr1', 'hr2']}))
輸出:
相關用法
- Python Wand function()用法及代碼示例
- Python Sorted()用法及代碼示例
- Python Numbers choice()用法及代碼示例
- Python Tkinter askopenfile()用法及代碼示例
- Python ord()用法及代碼示例
- Python sum()用法及代碼示例
- Python round()用法及代碼示例
- Python id()用法及代碼示例
- Python vars()用法及代碼示例
注:本文由純淨天空篩選整理自deepanshu_rustagi大神的英文原創作品 pandas.lreshape() function in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。