当前位置: 首页 > 图灵资讯 > 行业资讯> python中pivot()函数是什么?

python中pivot()函数是什么?

来源:图灵python
时间: 2024-10-08 20:44:03

函数语法:

pivot()

参数:

Index需要注意的是,前者是可选参数,后者是必选参数。

使用实例:

importpandasaspd
df=pd.read_csv("user_label_part1.csv",sep=',',encoding='gbk')

注意点:

记得在分析数据时要记住pivot结果reset__index()

函数使用:

df.head(10)
temp=df.pivot(index='user_log_acct',columns='item_third_cate_cd',values='label')
temp.to_csv("res.csv",sep=',',encoding='gbk')
df.head(3)

以上是关于的本文介绍了pivot函数的使用情况。如果您感兴趣,可以将其带入项目进行使用和学习~