কম্পিউটার

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


প্রদত্ত পিরিয়ড অবজেক্টে প্রয়োগ করা টাইম সিরিজ ফ্রিকোয়েন্সির স্ট্রিং উপনাম ফেরত দিতে, period.freqstr ব্যবহার করুন সম্পত্তি।

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

import pandas as pd

পান্ডা. পিরিয়ড সময়কালের প্রতিনিধিত্ব করে। দুটি পিরিয়ড অবজেক্ট তৈরি করা -

period1 = pd.Period("2020-09-23 03:55:20")
period2 = pd.Period(freq="Y", year = 2021, month = 2, day = 14, hour = 2, minute = 35)

পিরিয়ড অবজেক্ট −

প্রদর্শন করুন
print("Period1...\n", period1)
print("Period2...\n", period2)

ফ্রিকোয়েন্সি −

এর স্ট্রিং উপনাম পান
res1 = period1.freqstr
res2 = period2.freqstr

উদাহরণ

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

import pandas as pd

# The pandas.Period represents a period of time
# creating two Period objects
period1 = pd.Period("2020-09-23 03:55:20")
period2 = pd.Period(freq="Y", year = 2021, month = 2, day = 14, hour = 2, minute = 35)

# display the Period objects
print("Period1...\n", period1)
print("Period2...\n", period2)

# get the string alias of the frequency
res1 = period1.freqstr
res2 = period2.freqstr

# Return the string alias of the frequency from two Period objects
print("\nString alias of the frequency from the 1st Period object ...\n", res1)
print("\nString alias of the frequency from the 2nd Period object ...\n", res2)

আউটপুট

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

Period1...
2020-09-23 03:55:20

Period2...
2021

String alias of the frequency from the 1st Period object ...
<Second>

String alias of the frequency from the 2nd Period object ...
<YearEnd: month=12>

  1. Python Pandas - পিরিয়ড অবজেক্টের স্ট্রিং রিপ্রেজেন্টেশন ফরম্যাট করুন এবং রিটার্ন করুন

  2. Python Pandas - প্রদত্ত পিরিয়ড অবজেক্টের জন্য শুরুর সময় খুঁজুন

  3. Python Pandas - প্রদত্ত পিরিয়ড অবজেক্টের শেষ সময় খুঁজুন

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