pandas - tabla - TypeError: pivot_table() obtuvo un argumento de palabra clave inesperado ''rows''
rows to columns pandas (1)
La solución para mí fue cambiar ''rows => index'' y ''cols => columns''):
Desde:
mean_ratings = data.pivot_table(''rating'', rows=''title'', cols=''gender'', aggfunc=''mean'')
a:
mean_ratings = data.pivot_table(''rating'', index=''title'', columns=''gender'', aggfunc=''mean'')
Estoy tratando de usar el método pivot_table de un DataFrame de pandas;
mean_ratings = data.pivot_table(''rating'', rows=''title'', cols=''gender'', aggfunc=''mean'')
Sin embargo, recibo el siguiente error:
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-55-cb4d494f2f39> in <module>()
----> 1 mean_ratings = data.pivot_table(''rating'', rows=''title'', cols=''gender'', aggfunc=''mean'')
TypeError: pivot_table() got an unexpected keyword argument ''rows''
El comando anterior fue tomado del libro '' Python for Data Analysis '' por Wes McKinney (el creador de pandas)