কম্পিউটার

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


DateTimeIndex-এ তারিখটি মাসের প্রথম দিন কিনা তা পরীক্ষা করতে, DateTimeIndex.is_month_start ব্যবহার করুন সম্পত্তি।

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

import pandas as pd

পিরিয়ড 6 সহ একটি ডেটটাইম ইনডেক্স তৈরি করুন এবং ডি অর্থাৎ দিন হিসাবে ফ্রিকোয়েন্সি তৈরি করুন। টাইমজোন অস্ট্রেলিয়া/অ্যাডিলেড -

datetimeindex = pd.date_range('2021-9-21 02:30:50', periods=6, tz='Australia/Adelaide', freq='5D')

DateTimeIndex-

প্রদর্শন করুন
print("DateTimeIndex...\n", datetimeindex)

DateTimeIndex-এ তারিখটি মাসের প্রথম দিন কিনা তা পরীক্ষা করুন −

print("\nCheck whether the date in DateTimeIndex is the first day of the month...\n",
datetimeindex.is_month_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-9-21 02:30:50', periods=6, tz='Australia/Adelaide', freq='5D')

# 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 month
print("\nCheck whether the date in DateTimeIndex is the first day of the month...\n",
datetimeindex.is_month_start)

আউটপুট

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

DateTimeIndex...
DatetimeIndex(['2021-09-21 02:30:50+09:30', '2021-09-26 02:30:50+09:30',
'2021-10-01 02:30:50+09:30', '2021-10-06 02:30:50+10:30',
'2021-10-11 02:30:50+10:30', '2021-10-16 02:30:50+10:30'],
dtype='datetime64[ns, Australia/Adelaide]', freq='5D')
DateTimeIndex frequency...
<5 * Days>

Check whether the date in DateTimeIndex is the first day of the month...
[False False True False False False]

  1. Python Pandas - পিরিয়ড যে সপ্তাহে আছে সেই সপ্তাহের দিন পান

  2. Python Pandas - মাসের যে দিনটি একটি পিরিয়ড পড়ে সেই দিনটি পান৷

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

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