We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The last part of the documentation says
>>> df = s.unstack(level=0) >>> df.unstack() one a 1. b 3. two a 2. b 4.
although we'd have
>>> import pandas as pd >>> index = pd.MultiIndex.from_tuples([('one', 'a'), ('one', 'b'), ... ('two', 'a'), ('two', 'b')]) >>> import numpy as np >>> s = pd.Series(np.arange(1.0, 5.0), index=index) >>> s one a 1.0 b 2.0 two a 3.0 b 4.0 dtype: float64 >>> s.unstack(level=-1) a b one 1.0 2.0 two 3.0 4.0 >>> s.unstack(level=0) one two a 1.0 3.0 b 2.0 4.0 >>> df = s.unstack(level=0) >>> df.unstack() one a 1.0 b 2.0 two a 3.0 b 4.0 dtype: float64
The text was updated successfully, but these errors were encountered:
Hmm, I thought this was already fixed before, but apparently not ..
PR to fix this very welcome!
Sorry, something went wrong.
Seems that I corrected one of the examples a long time ago, but not that last one :-) #4776
@jorisvandenbossche : Hey, I have created the PR including the suggestions mentioned in the thread, kindly take a look.
Successfully merging a pull request may close this issue.
The last part of the documentation says
although we'd have
The text was updated successfully, but these errors were encountered: