Computer >> Máy Tính >  >> Lập trình >> Python

Python Pandas - Kiểm tra xem giá trị DateOffset đã được chuẩn hóa hay chưa

Để kiểm tra xem giá trị đặt DateOff đã được chuẩn hóa hay chưa, hãy sử dụng thuộc tính offset.normalize trong Pandas.

Đầu tiên, hãy nhập các thư viện được yêu cầu -

from pandas.tseries.offsets import DateOffset
import pandas as pd

Đặt đối tượng dấu thời gian trong Pandas -

timestamp = pd.Timestamp('2021-09-26 03:25:02.000045')

Tạo DateOffset. Tăng số tháng ở đây bằng cách sử dụng tham số "tháng". Chúng tôi đã chuẩn hóa DateOffset bằng cách sử dụng tham số "normalize" -

offset = pd.tseries.offsets.DateOffset(months=4, normalize=True)

Hiển thị Dấu thời gian đã cập nhật -

print("\nUpdated Timestamp...\n",timestamp + offset)

Kiểm tra xem DateOffset có được chuẩn hóa hay không -

print("\nThe DateOffset is normalized..\n", offset.normalize)

Ví dụ

Sau đây là mã -

from pandas.tseries.offsets import DateOffset
import pandas as pd

# Set the timestamp object in Pandas
timestamp = pd.Timestamp('2021-09-26 03:25:02.000045')

# Display the Timestamp
print("Timestamp...\n",timestamp)

# Create the DateOffset
# Incrementing the months here using the "months" parameter
# We have normalized the DateOffset using the "normalize" parameter
offset = pd.tseries.offsets.DateOffset(months=4, normalize=True)

# Display the DateOffset
print("\nDateOffset...\n",offset)

# Display the Updated Timestamp
print("\nUpdated Timestamp...\n",timestamp + offset)

# check whether the DateOffset is normalized or not
print("\nThe DateOffset is normalized..\n", offset.normalize)

Đầu ra

Điều này sẽ tạo ra mã sau -

Timestamp...
 2021-09-26 03:25:02.000045

DateOffset...
 <DateOffset: months=4>

Updated Timestamp...
 2022-01-26 00:00:00

The DateOffset is normalized..
 True