pandas使用笔记

设置索引名称

import pandas as pd

df = pd.DataFrame({'辣条': [1, 1, 3], '面包': [4, 5, 6], '火腿': [7, 8, 9]})
print(df)
df.index.rename('index_test', inplace=True)
print(df)

索引的设置和修改

https://zhuanlan.zhihu.com/p/499849597

你可能感兴趣的:(实践,pandas,python,数据分析)