কম্পিউটার

Python Pandas CustomBusinessHour - প্রদত্ত টাইমস্ট্যাম্প অফসেটে আছে কি না তা পরীক্ষা করুন


প্রদত্ত টাইমস্ট্যাম্প অফসেটে আছে কি না তা পরীক্ষা করতে, পান্ডাসে CustomBusinessHour.is_on_offset() ব্যবহার করুন। চেক করার জন্য একটি যুক্তি হিসাবে টাইমস্ট্যাম্প পাস করুন।

প্রথমে, প্রয়োজনীয় লাইব্রেরিগুলি আমদানি করুন -

import pandas as pd

পান্ডাস-

-এ টাইমস্ট্যাম্প অবজেক্ট সেট করুন
timestamp = pd.Timestamp('2021-11-14 05:20:30')

কাস্টম বিজনেস আওয়ার অফসেট তৈরি করুন। CustomBusinessHour হল তারিখ অফসেট সাবক্লাস −

cbhOffset = pd.tseries.offsets.CustomBusinessHour(start="09:30", end = "18:30")

টাইমস্ট্যাম্পে অফসেট যোগ করুন এবং আপডেট করা টাইমস্ট্যাম্প প্রদর্শন করুন

print("\nUpdated Timestamp...\n",timestamp + cbhOffset)

প্রদত্ত টাইমস্ট্যাম্প অফসেটে আছে কিনা তা পরীক্ষা করুন -

offset = cbhOffset.is_on_offset(pd.Timestamp('2021-11-20 05:20:30'))

ফলাফল প্রদর্শন করুন -

print("\nCheck if the given timestamp is on offset or not...\n",offset)

উদাহরণ

নিম্নলিখিত কোড -

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 if the given timestamp is on offset or not
offset = cbhOffset.is_on_offset(pd.Timestamp('2021-11-20 05:20:30'))

# display the result
print("\nCheck if the given timestamp is on offset or not...\n",offset)

আউটপুট

এটি নিম্নলিখিত কোড তৈরি করবে -

Timestamp...
 2021-11-14 05:20:30

CustomBusinessHour Offset...
 <CustomBusinessHour: CBH=09:30-18:30>

Updated Timestamp...
 2021-11-15 10:30:00

Check if the given timestamp is on offset or not...
 False

  1. Python Pandas - প্রদত্ত তারিখ অফসেট নোঙ্গর করা হয়েছে কিনা তা পরীক্ষা করুন

  2. Python Pandas - UTC অফসেট সময় পান

  3. প্রদত্ত নম্বরটি পাইথনে ইউক্লিড নম্বর কিনা তা পরীক্ষা করুন

  4. প্রদত্ত নম্বরটি Ore নম্বর কিনা তা পাইথনে পরীক্ষা করুন