অফসেটে না থাকলেই প্রদত্ত তারিখকে পরবর্তী অফসেটে ফরওয়ার্ড করতে, পান্ডাসে CustomBusinessHour.rollforward() পদ্ধতি ব্যবহার করুন৷
প্রথমে, প্রয়োজনীয় লাইব্রেরিগুলি আমদানি করুন -
import pandas as pd
পান্ডাস-
-এ টাইমস্ট্যাম্প অবজেক্ট সেট করুনtimestamp = pd.Timestamp('2021-12-20 08:35:10')
কাস্টম বিজনেস আওয়ার অফসেট তৈরি করুন। CustomBusinessHour হল ডেটঅফসেট সাবক্লাস। বৈধ ব্যবসায়িক দিনের সপ্তাহের মুখোশ −
cbhOffset = pd.tseries.offsets.CustomBusinessHour(n = 5, weekmask = 'Mon Tue Wed Fri')
টাইমস্ট্যাম্পে অফসেট যোগ করুন এবং আপডেট করা টাইমস্ট্যাম্প −
প্রদর্শন করুনprint("\nUpdated Timestamp...\n",timestamp + cbhOffset)
অফসেট −
না থাকলে এগিয়ে যানroll = cbhOffset.rollforward(pd.Timestamp('2021-12-30 08:35:10'))
ফলাফল প্রদর্শন করুন -
print("\nRoll forward Result...\n",roll)
উদাহরণ
নিম্নলিখিত কোড -
import pandas as pd # Set the timestamp object in Pandas timestamp = pd.Timestamp('2021-12-20 08:35:10') # Display the Timestamp print("Timestamp...\n",timestamp) # Create the CustomBusinessHour Offset # CustomBusinessHour is the DateOffset subclass # Weekmask of valid business days cbhOffset = pd.tseries.offsets.CustomBusinessHour(n = 5, weekmask = 'Mon Tue Wed Fri') # 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) # roll forward if not on offset roll = cbhOffset.rollforward(pd.Timestamp('2021-12-30 08:35:10')) # display the result print("\nRoll forward Result...\n",roll)
আউটপুট
এটি নিম্নলিখিত কোড তৈরি করবে -
Timestamp... 2021-12-20 08:35:10 CustomBusinessHour Offset... <5 * CustomBusinessHours: CBH=09:00-17:00> Updated Timestamp... 2021-12-20 14:00:00 Roll forward Result... 2021-12-31 09:00:00