यह जाँचने के लिए कि डेटऑफ़ सेट मान को सामान्य किया गया है या नहीं, पंडों में ऑफ़सेट.नॉर्मलाइज़ प्रॉपर्टी का उपयोग करें।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
from pandas.tseries.offsets import DateOffset import pandas as pd
पंडों में टाइमस्टैम्प ऑब्जेक्ट सेट करें -
timestamp = pd.Timestamp('2021-09-26 03:25:02.000045')
डेटऑफ़सेट बनाएं। "महीने" पैरामीटर का उपयोग करके यहां महीनों को बढ़ाना। हमने "सामान्यीकृत" पैरामीटर का उपयोग करके डेटऑफ़सेट को सामान्य कर दिया है -
offset = pd.tseries.offsets.DateOffset(months=4, normalize=True)
अपडेट किया गया टाइमस्टैम्प प्रदर्शित करें -
print("\nUpdated Timestamp...\n",timestamp + offset)
जांचें कि डेटऑफ़सेट सामान्यीकृत है या नहीं -
print("\nThe DateOffset is normalized..\n", offset.normalize)
उदाहरण
निम्नलिखित कोड है -
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)
आउटपुट
यह निम्नलिखित कोड उत्पन्न करेगा -
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