প্রদত্ত CustomBusinessDay অবজেক্টে প্রয়োগ করা কীওয়ার্ড আর্গুমেন্টগুলি প্রদর্শন করতে, Pandas-এ CustomBusinessDay.kwds বৈশিষ্ট্য ব্যবহার করুন৷
প্রথমে, প্রয়োজনীয় লাইব্রেরিগুলি আমদানি করুন -
import pandas as pd
পান্ডাস-
-এ টাইমস্ট্যাম্প অবজেক্ট সেট করুনtimestamp = pd.Timestamp('2021-12-31 08:35:10')
কাস্টম বিজনেস ডে অফসেট −
তৈরি করুনcbdOffset = pd.tseries.offsets.CustomBusinessDay(n = 2, weekmask = 'Mon Tue Wed Fri')
টাইমস্ট্যাম্পে অফসেট যোগ করুন এবং আপডেট করা টাইমস্ট্যাম্প −
প্রদর্শন করুনprint("\nUpdated Timestamp...\n",timestamp + cbdOffset)
কীওয়ার্ড আর্গুমেন্ট প্রদর্শন করুন −
print("\nKeyword arguments on the given CustomBusinessDay Offset...\n",cbdOffset.kwds)
উদাহরণ
নিম্নলিখিত কোড -
import pandas as pd # Set the timestamp object in Pandas timestamp = pd.Timestamp('2021-12-31 08:35:10') # 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 = 2, 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) # Display the keyword arguments print("\nKeyword arguments on the given CustomBusinessDay Offset...\n",cbdOffset.kwds)
আউটপুট
এটি নিম্নলিখিত কোড তৈরি করবে -
Timestamp... 2021-12-31 08:35:10 CustomBusinessDay Offset... <2 * CustomBusinessDays> Updated Timestamp... 2022-01-04 08:35:10 Frequency applied on the given CustomBusinessDay Offset object... 2C Keyword arguments on the given CustomBusinessDay Offset... {'weekmask': 'Mon Tue Wed Fri', 'holidays': (), 'calendar': <numpy.busdaycalendar object at 0x00000134D22E5FC0>, 'offset': datetime.timedelta(0)}