TypeError: pivot_table() got an unexpected keyword argument 'rows'

时间:2022-10-26 22:22:55

mean_rating = data.pivot_table('rating', rows='title', cols='gender', aggfunc='mean')

这一段代码执行的时候老是报错:

错误信息

mean_rating = data.pivot_table('rating', rows='title', cols='gender', aggfunc='mean')
TypeError: pivot_table() got an unexpected keyword argument 'rows'
按照百度的答案就是rows改成index,cols改成columns,
mean_ratings = data.pivot_table('rating', index = 'title',columns = 'gender', aggfunc= 'mean')
print(mean_ratings[:5])酱紫就可以了。