CustomBusinessDay অফসেটে প্রয়োগকৃত বৃদ্ধির গণনা ফেরত দিতে, Pandas-এ CustomBusinessDay.n প্রপার্টি ব্যবহার করুন।
প্রথমে, প্রয়োজনীয় লাইব্রেরিগুলি আমদানি করুন -
import pandas as pd
পান্ডাস-
-এ টাইমস্ট্যাম্প অবজেক্ট সেট করুনtimestamp = pd.Timestamp('2021-10-22 03:10:35')
কাস্টম বিজনেস ডে অফসেট −
তৈরি করুনcbdOffset = pd.tseries.offsets.CustomBusinessDay(n = 4, weekmask = 'Mon Tue Wed Fri')
টাইমস্ট্যাম্পে অফসেট যোগ করুন এবং আপডেট করা টাইমস্ট্যাম্প −
প্রদর্শন করুনprint("\nUpdated Timestamp...\n",timestamp + cbdOffset)
প্রদত্ত CustomBusinessDay অবজেক্ট -
-এ বৃদ্ধির গণনা ফেরত দিনprint("\nThe count of increments on the CustomBusinessDay object..\n", cbdOffset.n)
উদাহরণ
নিম্নলিখিত কোড -
import pandas as pd # Set the timestamp object in Pandas timestamp = pd.Timestamp('2021-10-22 03:10:35') # Display the Timestamp print("Timestamp...\n",timestamp) # Create the CustomBusinessDay Offset # CustomBusinessDay is the DateOffset subclass representing custom business days excluding holidays # Weekmask of valid business days cbdOffset = pd.tseries.offsets.CustomBusinessDay(n = 4, weekmask = 'Mon Tue Wed Fri') # Display the CustomBusinessDay Offset print("\nCustomBusinessDay Offset...\n",cbdOffset) # Add the offset to the Timestamp and display the Updated Timestamp print("\nUpdated Timestamp...\n",timestamp + cbdOffset) # Return frequency applied on the given CustomBusinessDay Offset object as a string print("\nFrequency applied on the given CustomBusinessDay Offset object...\n",cbdOffset.freqstr) # return the count of increments on the given CustomBusinessDay object print("\nThe count of increments on the CustomBusinessDay object..\n", cbdOffset.n)
আউটপুট
এটি নিম্নলিখিত কোড তৈরি করবে -
Timestamp... 2021-10-22 03:10:35 CustomBusinessDay Offset... <4 * CustomBusinessDays> Updated Timestamp... 2021-10-29 03:10:35 Frequency applied on the given CustomBusinessDay Offset object... 4C The count of increments on the CustomBusinessDay object.. 4