Skip to content

Commit

Permalink
BLD: another 2to3 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wesm committed Oct 25, 2011
1 parent c7e3cdb commit 2ce209a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tools/pivot.py
Expand Up @@ -34,7 +34,7 @@ def pivot_table(data, values=None, rows=None, cols=None, aggfunc=np.mean,
7 bar two small 6
8 bar two large 7
>>> table = pivot_table(df, values='D', rows=['A, 'B'],
>>> table = pivot_table(df, values='D', rows=['A', 'B'],
... cols=['C'], aggfunc=np.sum)
>>> table
small large
Expand Down

0 comments on commit 2ce209a

Please sign in to comment.