Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

Python Pandas - ระบุว่าวันที่ใน DateTimeIndex เป็นวันแรกของเดือนหรือไม่


ในการตรวจสอบว่าวันที่ใน DateTimeIndex เป็นวันแรกของเดือนหรือไม่ ให้ใช้ DateTimeIndex.is_month_start ทรัพย์สิน

ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

สร้าง DatetimeIndex ด้วยระยะเวลา 6 และความถี่เป็น D เช่นวัน เขตเวลาคือ ออสเตรเลีย/แอดิเลด −

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]