-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
ENH/CLN: Make df.pivot to the mapping of pivot_table #6950
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I remember an issue about this, but can't find it now. What API change would this entail, e.g. visible to user? |
From user, keywords only in pivot_table ( |
oh...this is just a pass-trhu of keywords....ok then |
Thanks, let me try. |
I don't know if it is that simple: there is also a Because it would be strange to have a |
I've compared
I noticed that
If it is OK, I'll prepare. |
More complete docs are certainly good! Maybe adding somewhere a better explanation of the difference between both functions could also be helpfull (in reshaping.rst or in the docstring of both (see also section)). |
Hi (I'm new) but came into a problem with the 0.13.1 pivot_table function. Not totally sure if this is relevant to this discussion... but I lifted my question from http://stackoverflow.com/questions/23366016/pandas-0-13-1-pivot-table-pivot-error-not-in-0-12-0-should-and-how-i-go So I have two lines of code below. One that works successfully with Python 2.7.5 and Pandas 0.12.0
Lastly, since I've been using 0.12.0 for a while and am comfortable with it, is it possible to downgrade from 0.13.1 to 0.12.0 on my new machine? (Also, can I go back in Python versions so all my machines have the same version of Python and Pandas?) Edits for questions: Both OS's are OS X 10.9.2. Here's a subset of 9 rows of data in the CSV. https://github.com/nygeog/python/blob/master/pandas/pivot_sample.csv The actual file has ~1.7 million rows. Which works fine on machine with 0.12.0. Thanks, Danny |
Move pivot paragraph to pivot table section add pivot_table reference to pivot
Related to #6913.
DataFrame.pivot
function uses separate logic and has less keyword options thanpandas.tools.pivot_table
. How about makingDataFrame.pivot
to callpivot_table
internally to support same keywords aspivot_table
?The text was updated successfully, but these errors were encountered: