
- 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 - Check if the given CustomBusinessHour is Anchored
To check if the given CustomBusinessHour is Anchored, use the CustomBusinessHour.is_anchored() method in Pandas.
At first, import the required libraries −
import pandas as pd
Set the timestamp object in Pandas −
timestamp = pd.Timestamp('2021-11-14 05:20:30')
Create the CustomBusinessHour Offset. CustomBusinessHour is the DateOffset subclass −
cbhOffset = pd.tseries.offsets.CustomBusinessHour(start="09:30", end = "18:30")
Add the offset to the Timestamp and display the Updated Timestamp −
print("\nUpdated Timestamp...\n",timestamp + cbhOffset)
Check whether the CustomBusinessHour is anchored −
print("\nCheck whether the CustomBusinessHour is anchored...\n", cbhOffset.is_anchored())
Example
Following is the code −
import pandas as pd # Set the timestamp object in Pandas timestamp = pd.Timestamp('2021-11-14 05:20:30') # Display the Timestamp print("Timestamp...\n",timestamp) # Create the CustomBusinessHour Offset # CustomBusinessHour is the DateOffset subclass # Here, "start" is the start time of your custom business hour in 24h format. # The "end" is the end time of your custom business hour in 24h format. cbhOffset = pd.tseries.offsets.CustomBusinessHour(start="09:30", end = "18:30") # Display the CustomBusinessHour Offset print("\nCustomBusinessHour Offset...\n",cbhOffset) # Add the offset to the Timestamp and display the Updated Timestamp print("\nUpdated Timestamp...\n",timestamp + cbhOffset) # Check whether the CustomBusinessHour is anchored print("\nCheck whether the CustomBusinessHour is anchored...\n", cbhOffset.is_anchored())
Output
This will produce the following code −
Timestamp... 2021-11-14 05:20:30 CustomBusinessHour Offset... <CustomBusinessHour: CBH=09:30-18:30> Updated Timestamp... 2021-11-15 10:30:00 Check whether the CustomBusinessHour is anchored... True
- Related Articles
- Python Pandas - Check if the given DateOffset is Anchored
- Python Pandas CustomBusinessHour - Check if the given timestamp is on offset or not
- Python Pandas - Display the keyword arguments applied on the given CustomBusinessHour object
- Python Pandas - Return the rule code applied on the given CustomBusinessHour object
- Python Pandas - Check whether the CustomBusinessHour Offset has been normalized or not
- Python Pandas - Return frequency applied on the given CustomBusinessHour Offset object as a string
- Python Pandas - Return the name of the frequency applied on the given CustomBusinessHour offset object
- Python Pandas - Create a CustomBusinessHour Offset object
- Python Pandas CustomBusinessHour - Roll provided date backward
- Python Pandas - Get the weekmask applied on the CustomBusinessHour offset
- Python Pandas - Check if an interval is empty
- Python - Check if the Pandas Index is a floating type
- Python Pandas - Check if the Pandas Index holds Interval objects
- Python Pandas - Check if the Intervals in the IntervalArray is empty
- Python - Check if the Pandas Index is of the object dtype

Advertisements