PeriodIndex অবজেক্ট থেকে ফ্রিকোয়েন্সি অবজেক্ট ফেরত দিতে, PeriodIndex.freq ব্যবহার করুন সম্পত্তি।
প্রথমে, প্রয়োজনীয় লাইব্রেরিগুলি আমদানি করুন -
import pandas as pd
একটি PeriodIndex অবজেক্ট তৈরি করুন। আমরা "freq" প্যারামিটার −
ব্যবহার করে ফ্রিকোয়েন্সি সেট করেছিperiodIndex = pd.PeriodIndex(['2021-09-25', '2019-10-30', '2020-11-20', '2021-07-15', '2022-06-12', '2023-07-10'], freq="D")
ডিসপ্লে PeriodIndex অবজেক্ট −
print("PeriodIndex...\n", periodIndex)
ডিসপ্লে পিরিয়ড ইনডেক্স ফ্রিকোয়েন্সি −
print("\nPeriodIndex frequency...\n", periodIndex.freq)
উদাহরণ
নিম্নলিখিত কোড -
import pandas as pd # Create a PeriodIndex object # PeriodIndex is an immutable ndarray holding ordinal values indicating regular periods in time # We have set the frequency using the "freq" parameter periodIndex = pd.PeriodIndex(['2021-09-25', '2019-10-30', '2020-11-20', '2021-07-15', '2022-06-12', '2023-07-10'], freq="D") # Display PeriodIndex object print("PeriodIndex...\n", periodIndex) # Display PeriodIndex frequency print("\nPeriodIndex frequency...\n", periodIndex.freq) # Display the month number i.e. 1 = January, 2 = February ... 12 = December print("\nMonth number...\n", periodIndex.month)
আউটপুট
এটি নিম্নলিখিত কোড তৈরি করবে -
PeriodIndex... PeriodIndex(['2021-09-25', '2019-10-30', '2020-11-20', '2021-07-15', '2022-06-12', '2023-07-10'], dtype='period[D]') PeriodIndex frequency... <Day> Month number... Int64Index([9, 10, 11, 7, 6, 7], dtype='int64')