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
from #7653 cc @bluefir
df = DataFrame(np.random.randn(1000, 27), columns=MultiIndex.from_tuples(list( itertools.product(xrange(3), repeat=3)))) df.stack(level=[1, 2])
should be equiv to:
df.stack(level=1).stack(level=1)
but is raising
The text was updated successfully, but these errors were encountered:
Merge pull request #7770 from onesandzeroes/int-stacking
59ba163
BUG: Fix for passing multiple ints as levels in DataFrame.stack() (#7660)
Successfully merging a pull request may close this issue.
from #7653
cc @bluefir
should be equiv to:
df.stack(level=1).stack(level=1)
but is raising
The text was updated successfully, but these errors were encountered: