
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Python Pandas - Return a sorted copy of the index
To return a sorted copy of the index, use the index.sort_values() method in Pandas. At first, import the required libraries −
import pandas as pd
Creating Pandas index −
index = pd.Index([50, 10, 70, 95, 110, 90, 30])
Display the Pandas index −
print("Pandas Index...\n",index)
Sort index values. By default, sorts in Ascending order −
print("\nSort the index values...\n",index.sort_values())
Example
Following is the code −
import pandas as pd # Creating Pandas index index = pd.Index([50, 10, 70, 95, 110, 90, 30]) # Display the Pandas index print("Pandas Index...\n",index) # Return the number of elements in the Index print("\nNumber of elements in the index...\n",index.size) # Return the dtype of the data print("\nThe dtype object...\n",index.dtype) # Sort index values # By default, sorts in Ascending order print("\nSort the index values...\n",index.sort_values())
Output
This will produce the following output −
Pandas Index... Int64Index([50, 10, 70, 95, 110, 90, 30], dtype='int64') Number of elements in the index... 7 The dtype object... int64 Sort the index values... Int64Index([10, 30, 50, 70, 90, 95, 110], dtype='int64')
- Related Articles
- Python Pandas - Return a sorted copy of the index in descending order
- Python Pandas - Return a list of the Index values
- Python Pandas - Return the Transpose of the index
- Python Pandas - Return a Series containing counts of unique values from Index object sorted in Ascending Order
- Python - Return the minimum value of the Pandas Index
- Python - Return the maximum value of the Pandas Index
- Python Pandas - Return the memory usage of the Index values
- Python Pandas - Return unique values in the index
- Python Pandas - Return Index without NaN values
- Python Pandas - Return a new Index of the values selected by the indices
- Python Pandas - Return a new Index of the values set with the mask
- Python Pandas - Return the relative frequency from Index object
- Python Pandas - Return number of unique elements in the Index object
- Python Pandas - Return Index with duplicate values removed
- Python Pandas - Return the number of bytes in the underlying Index data

Advertisements