Python_数据分析_pandaspython

Pandas实战——数据透视及重构操作

2021-09-15  本文已影响0人  深思海数_willschang
pandas in action.png

原书地址

本篇笔记为原书第八章节的内容。


本章开始对比论述了DataFrame数据格式(narrow OR wide)的优劣势,从而引出透视表的优势。


wide format.png
narrow format.png

透视表

margins 参数

索引Stackin和Unstacking操作

stack method moves an index level from the column axis to the row axis.

stack.png

unstack method moves the innermost level of the row index to the column index.

unstack

数据融合+透视处理

melt method. (Melting is the process of converting a wide data set to a narrow one.)
id_vars: 标识列
values_vars:哪些列需要melt操作并填写入新的一列

image.png image.png melt && pivot_table
上一篇下一篇

猜你喜欢

热点阅读