We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
inplace
df.droplevel(level, axis=0)
vs
df.droplevel(level, axis=0, inplace=False)
Currently .droplevel DataFrame / Series does not expose inplace kwarg, and it defaults to False under the hood, in NDFrame.set_axis method
.droplevel
NDFrame.set_axis
cc @jreback @TomAugspurger