在python2中,pivot_table 方法的 rows 参数在python3中已经弃用了,改成了 index:
In [275]: tips.pivot_table(index=['sex', 'smoker'])
Out[275]:
size tip tip_pct total_bill
sex smoker
Female No 2.592593 2.773519 0.156921 18.105185
Yes 2.242424 2.931515 0.182150 17.977879
Male No 2.711340 3.113402 0.160669 19.791237
Yes 2.500000 3.051167 0.152771 22.284500
其实就算是在python2中,rows这个参数名也一直很少出现,一直都是用index来表示行(但与之对应的却仍是columns表示列)。