python excel 透视表_如何从python pandas的excel文档中读取透视表?

本文介绍了如何使用Pandas的pivot_table函数创建类似Excel的透视表。示例展示了如何根据'A'、'B'、'C'列进行分组并计算'D'列的总和。之后,文章提到了将包含缺失值的Excel表格读入Pandas DataFrame,并使用fillna方法处理NaN值。
摘要由CSDN通过智能技术生成

pandas.pivot_table用于支持数据分析,并帮助您创建类似于excel的透视表,而不是读取excel透视表。在Create a spreadsheet-style pivot table as a DataFrame. The levels in the pivot table will be stored in MultiIndex objects (hierarchical indexes) on the index and columns of the result DataFrame

文档中的示例>>> df

A B C D

0 foo one small 1

1 foo one large 2

2 foo one large 2

3 foo two small 3

4 foo two small 3

5 bar one large 4

6 bar one small 5

7 bar two small 6

8 bar two large 7

>>> table = pivot_table(df, values='D', index=['A', 'B'],

... columns=['C'], aggfunc=np.sum)

>>> table

small large

foo one 1 4

two 6 NaN

bar one 5 4

two 6 7

现在为了帮助您解决这个问题,我创建了一个示例数据集和一个透视表。在

然后将excel表读入pandas dataframe。此数据帧包含要使用df.fillna(method='ffill')替换的nan

^{pr2}$

输出Sports Name Address Age

0 basketball Abhijit 129 ABC 20

1 basketball Rajesh 128 ABC 20

2 Cricket Mahesh 123 ABC 20

3 Cricket Ramesh 126 ABC 20

4 Cricket Suresh 124 ABC 20

5 Football Riyash 125 ABC 20

6 Football suraj 127 ABC 20

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值