VOOZH about

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

⇱ Python | Pandas MultiIndex.from_tuples() - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | Pandas MultiIndex.from_tuples()

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.from_tuples() function is used to convert list of tuples to MultiIndex. It is one of the several ways in which we construct a MultiIndex.
Syntax: MultiIndex.from_tuples(tuples, sortorder=None, names=None) Parameters : tuples : Each tuple is the index of one row/column. sortorder : Level of sortedness (must be lexicographically sorted by that level) Returns: index : MultiIndex
Example #1: Use MultiIndex.from_tuples() function to construct a MultiIndex using python tuples. Output : 👁 Image
Now let's create the MultiIndex using the Tuples. Output : 👁 Image
As we can see in the output, the function has created a MultiIndex object using the Tuples.   Example #2: Use MultiIndex.from_tuples() function to construct a MultiIndex using python tuples. Output : 👁 Image
Now let's create the MultiIndex using the Tuples.
Output : 👁 Image
Comment