
- 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 - Compute indexer and mask for new index given the current index
To compute indexer and mask for new index given the current index, use the index.get_indexer() method in Pandas.
At first, import the required libraries −
import pandas as pd
Creating Pandas index −
index = pd.Index([10, 20, 30, 40, 50, 60, 70])
Display the Pandas index −
print("Pandas Index...\n",index)
Compute indexer and mask. Marked by -1, as it is not in index −
print("\nGet the indexes...\n",index.get_indexer([30, 40, 90, 100, 50]))
Example
Following is the code −
import pandas as pd # Creating Pandas index index = pd.Index([10, 20, 30, 40, 50, 60, 70]) # 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) # Compute indexer and mask # Marked by -1, as it is not in index print("\nGet the indexes...\n",index.get_indexer([30, 40, 90, 100, 50]))
Output
This will produce the following output −
Pandas Index... Int64Index([10, 20, 30, 40, 50, 60, 70], dtype='int64') Number of elements in the index... 7 Get the indexes... [ 2 3 -1 -1 4]
- Related Articles
- Python Pandas - Compute indexer and mask for new index even for non-uniquely valued objects
- Python Pandas - Compute indexer and find the previous index value if no exact match
- Python Pandas - Compute indexer and find the next index value if no exact match
- Python Pandas - Compute indexer and find the nearest index value if no exact match
- Python Pandas - Return a new Index of the values set with the mask
- Python Pandas - Compute the slice indexer for input labels
- Python - Make new Pandas Index with deleting multiple index elements
- Python Pandas - Compute the symmetric difference of two Index objects
- Python Pandas - Insert a new index value at the first index from the last
- Python - Create a new view of the Pandas Index
- Python Pandas - Create a DataFrame from original index but enforce a new index
- Python Pandas - Return a new Index with elements of index not in other and get the difference
- Python - Make new Pandas Index with passed location deleted
- Python Pandas - Compute the symmetric difference of two Index objects and unsort the result
- Python Pandas - Set index name for an already created Index object

Advertisements