Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Pandas DataFrame: droplevel() function

DataFrame - droplevel() function

The droplevel() function is used to remove index / column level(s) from a given DataFrame.

Syntax:

DataFrame.droplevel(self, level, axis=0)

Parameters:

Name Description Type/Default Value Required / Optional
level  If a string is given, must be the name of a level If list-like, elements must be names or positional indexes of levels. int, str, or list-like Required
axis         {0 or ‘index’, 1 or ‘columns’}
Default Value: 0
Required

Returns: DataFrame.droplevel()

Example:


Download the Pandas DataFrame Notebooks from here.

Previous: DataFrame-interpolate() function
Next: DataFrame - pivot() function