কম্পিউটার

Python Pandas - প্রদত্ত CustomBusinessDay অফসেট অবজেক্টে প্রয়োগ করা ফ্রিকোয়েন্সির নাম ফেরত দিন


প্রদত্ত CustomBusinessDay অফসেট অবজেক্টে প্রয়োগ করা ফ্রিকোয়েন্সির নাম ফেরত দিতে, CustomBusinessDay.name বৈশিষ্ট্য ব্যবহার করুন।

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

import pandas as pd

পান্ডাস-

-এ টাইমস্ট্যাম্প অবজেক্ট সেট করুন
timestamp = pd.Timestamp('2021-12-31 08:35:10')

কাস্টম বিজনেস ডে অফসেট তৈরি করুন। CustomBusinessDay হল ডেটঅফসেট সাবক্লাস যা ছুটির দিনগুলি ব্যতীত কাস্টম ব্যবসায়িক দিনের প্রতিনিধিত্ব করে −

cbdOffset = pd.tseries.offsets.CustomBusinessDay(n = 2, weekmask = 'Mon Tue Wed Fri')

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

প্রদর্শন করুন
print("\nUpdated Timestamp...\n",timestamp + cbdOffset)

প্রদত্ত CustomBusinessDay অবজেক্ট −

-এ প্রয়োগ করা ফ্রিকোয়েন্সির নামটি ফেরত দিন
print("\nThe name of the frequency on the CustomBusinessDay object..\n", cbdOffset.name)

উদাহরণ

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

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)

# return the name of the frequency applied on the given CustomBusinessDay object
print("\nThe name of the frequency on the CustomBusinessDay object..\n", cbdOffset.name)

আউটপুট

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

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

The name of the frequency on the CustomBusinessDay object..
 C

  1. Python Pandas - অফসেট অবজেক্টে প্রয়োগ করা ফ্রিকোয়েন্সিটির নাম ফেরত দিন

  2. Python Pandas - প্রদত্ত তারিখ অফসেট অবজেক্টে প্রয়োগ করা ফ্রিকোয়েন্সি ফেরত দিন

  3. Python Pandas - প্রদত্ত তারিখ অফসেট অবজেক্টে স্ট্রিং হিসাবে রিটার্ন ফ্রিকোয়েন্সি প্রয়োগ করা হয়েছে

  4. Python Pandas - প্রদত্ত পিরিয়ড অবজেক্টে প্রয়োগ করা টাইম সিরিজ ফ্রিকোয়েন্সির স্ট্রিং উপনাম ফেরত দিন