VOOZH about

URL: https://www.geeksforgeeks.org/python/python-pandas-multiindex-droplevel/

⇱ Python | Pandas MultiIndex.droplevel() - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | Pandas MultiIndex.droplevel()

Last Updated : 24 Dec, 2018
Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas MultiIndex.droplevel() function return Index with requested level removed. If MultiIndex has only 2 levels, the result will be of Index type not MultiIndex..
Syntax: MultiIndex.droplevel(level=0) Parameters : level : int/level name or list thereof Returns : index : Index or MultiIndex
Example #1: Use MultiIndex.droplevel() function to drop the 0th level of the MultiIndex. Output : 👁 Image
Now let's drop the 0th level of the MultiIndex. Output : 👁 Image
As we can see in the output, the function has dropped the 0th level and returned an Index object.   Example #2: Use MultiIndex.droplevel() function to drop the 1st level of the MultiIndex. Output : 👁 Image
Now let's drop the 1st level of the MultiIndex.
Output : 👁 Image
As we can see in the output, the function has dropped the 1st level and returned an Index object.
Comment