
- 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 - Calculate the right slice bound that corresponds to given label
To calculate the right slice bound that corresponds to given label, use the index.get_slice_bound(). Set the side parameter to right.
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)
Get the right slice bound. Returns the right slice bound of given label if "side" parameter is set to "right" −
print("\nGet the right slice bound...\n",index.get_slice_bound(30, side='right', kind ='getitem'))
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) # Get the right slice bound # Returns the right slice bound of given label if "side" parameter is set to "right" print("\nGet the right slice bound...\n", index.get_slice_bound(30, side='right', kind ='getitem'))
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 right slice bound... 3
- Related Articles
- Python Pandas - Calculate the left slice bound that corresponds to given label
- Python Pandas - Get the right bound for the IntervalIndex
- Python Pandas - Get the right bound for the interval
- Python Pandas - Get the left bound for the IntervalIndex
- Python Pandas - Get the left bound for the interval
- Python Pandas - Compute the slice indexer for input labels
- Python Pandas - Compute slice locations for input labels
- Python Pandas - Get integer location for requested label
- Python Pandas - Get the codes (location of each label) in MultiIndex
- Python Pandas IntervalIndex - Get integer location for requested label
- Fix MySQL ERROR 1064 (42000) check the manual that corresponds to your MySQL server version for the right syntax to use near ')'
- Name the physical quantity that corresponds to the rate of change of momentum.
- Python Pandas - How to select rows from a DataFrame by passing row label
- Python Pandas - Convert given Timestamp to Period
- Python Pandas - Return the label from the index if all of the labels in the index are later than the passed label

Advertisements