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

Python Pandas - แยกหมายเลขเดือนจาก DateTimeIndex ด้วยความถี่ของอนุกรมเวลาเฉพาะ


ในการดึงหมายเลขเดือนจาก DateTimeIndex ด้วยความถี่ของอนุกรมเวลาที่ระบุ ให้ใช้ DateTimeIndex.month ทรัพย์สิน

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

import pandas as pd

DatetimeIndex ที่มีระยะเวลา 6 และความถี่เป็น M คือเดือน เขตเวลาคือ ออสเตรเลีย/ซิดนีย์ −

datetimeindex = pd.date_range('2021-09-24 02:35:55', periods=6, tz='Australia/Sydney',freq='M')

แสดง DateTimeIndex -

print("DateTimeIndex...\n", datetimeindex)

รับหมายเลขเดือน เช่น มกราคม=1, กุมภาพันธ์=2, ..., ธันวาคม=12 –

print("\nGetting the month number..\n",datetimeindex.month)

ตัวอย่าง

ต่อไปนี้เป็นรหัส -

import pandas as pd

# DatetimeIndex with period 6 and frequency as M i.e. month
# timezone is Australia/Sydney
datetimeindex = pd.date_range('2021-09-24 02:35:55', periods=6, tz='Australia/Sydney',freq='M')

# display DateTimeIndex
print("DateTimeIndex...\n", datetimeindex)

# display DateTimeIndex frequency
print("DateTimeIndex frequency...\n", datetimeindex.freq)

# get the month number i.e. January=1, february=2, ..., December=12
print("\nGetting the month number..\n",datetimeindex.month)

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

DateTimeIndex...
DatetimeIndex(['2021-09-30 02:35:55+10:00', '2021-10-31 02:35:55+11:00',
               '2021-11-30 02:35:55+11:00', '2021-12-31 02:35:55+11:00',
               '2022-01-31 02:35:55+11:00', '2022-02-28 02:35:55+11:00'],
               dtype='datetime64[ns, Australia/Sydney]', freq='M')
DateTimeIndex frequency...
   <MonthEnd>

Getting the month number..
   Int64Index([9, 10, 11, 12, 1, 2], dtype='int64')