DateTimeIndex-এ তারিখটি বছরের প্রথম দিন কিনা তা পরীক্ষা করতে, DateTimeIndex.is_year_start ব্যবহার করুন সম্পত্তি।
প্রথমে, প্রয়োজনীয় লাইব্রেরিগুলি আমদানি করুন -
import pandas as pd
পিরিয়ড 6 এবং ফ্রিকোয়েন্সি D অর্থাৎ দিন −
সহ একটি DatetimeIndex তৈরি করুনdatetimeindex = pd.date_range('2021-12-30 02:30:50', periods=6, tz='Australia/Adelaide', freq='1D')
DateTimeIndex-
প্রদর্শন করুনprint("DateTimeIndex...\n", datetimeindex)
DateTimeIndex-এ তারিখটি বছরের প্রথম দিন কিনা তা পরীক্ষা করুন −
print("\nCheck whether the date in DateTimeIndex is the first day of the year...\n", datetimeindex.is_year_start)
উদাহরণ
নিম্নলিখিত কোড -
import pandas as pd # DatetimeIndex with period 6 and frequency as D i.e. days # The timezone is Australia/Adelaide datetimeindex = pd.date_range('2021-12-30 02:30:50', periods=6, tz='Australia/Adelaide', freq='1D') # display DateTimeIndex print("DateTimeIndex...\n", datetimeindex) # display DateTimeIndex frequency print("DateTimeIndex frequency...\n", datetimeindex.freq) # Check whether the date in DateTimeIndex is the first day of the year print("\nCheck whether the date in DateTimeIndex is the first day of the year...\n", datetimeindex.is_year_start)
আউটপুট
এটি নিম্নলিখিত কোড তৈরি করবে -
DateTimeIndex... DatetimeIndex(['2021-12-30 02:30:50+10:30', '2021-12-31 02:30:50+10:30', '2022-01-01 02:30:50+10:30', '2022-01-02 02:30:50+10:30', '2022-01-03 02:30:50+10:30', '2022-01-04 02:30:50+10:30'], dtype='datetime64[ns, Australia/Adelaide]', freq='D') DateTimeIndex frequency... <Day> Check whether the date in DateTimeIndex is the first day of the year... [False False True False False False]