pandas使用技巧【13】理解 index 与columns
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pandas使用技巧【13】理解 index 与columns相关的知识,希望对你有一定的参考价值。
参考技术A (1)index 与columns都不是DataFrame的数据组成部分通过查看shape属性验证
index的name
1,identification
过滤的时候,index是不会变化的。
2,selection
loc,iloc,索引方法
3,alignment
如当两个series做计算或者合并的时候,可以起到对齐的作用
set_index()方法
reset_index()方法
使用前要确保index的名字要存在。
sort_index()方法
附上小哥哥的视频链接Data analysis in Python with pandas
Youtube 🔗
哔哩哔哩 🔗
本系列文章列表
pandas使用技巧总览
以上是关于pandas使用技巧【13】理解 index 与columns的主要内容,如果未能解决你的问题,请参考以下文章
pandas-13 时间序列操作方法pd.date_range()