কম্পিউটার

Python Pandas - DateTimeIndex-এ তারিখটি বছরের প্রথম দিন কিনা তা নির্দেশ করুন


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]

  1. Python Pandas - প্রথম ঘটনা ব্যতীত ডুপ্লিকেট সূচক মান নির্দেশ করে

  2. পাইথন ব্যবহার করে প্রদত্ত বছরের প্রথম তারিখ কীভাবে খুঁজে পাবেন?

  3. একটি নির্দিষ্ট তারিখ সিরিজে বছরের দিন মুদ্রণ করতে পাইথনে একটি প্রোগ্রাম লিখুন

  4. পাইথনে বছরের দিন