दिए गए DateOffset ऑब्जेक्ट पर लागू वेतन वृद्धि की संख्या वापस करने के लिए, पंडों में ऑफ़सेट.n गुण का उपयोग करें। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
from pandas.tseries.frequencies import to_offset import pandas as pd
पंडों में टाइमस्टैम्प ऑब्जेक्ट सेट करें -
timestamp = pd.Timestamp('2021-09-26 03:25:02.000045')
डेटऑफ़सेट बनाएं। हम यहां "M" फ़्रीक्वेंसी का उपयोग करके महीनों को बढ़ा रहे हैं -
offset = to_offset("5M")
अपडेट किया गया टाइमस्टैम्प प्रदर्शित करें -
print("\nUpdated Timestamp...\n",timestamp + offset)
दिए गए DateOffset ऑब्जेक्ट पर वेतन वृद्धि की संख्या लौटाएं -
print("\nThe count of increments on the DateOffset object..\n", offset.n)
उदाहरण
निम्नलिखित कोड है -
from pandas.tseries.frequencies import to_offset 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 # We are incrementing the months here using the "M" frequency offset = to_offset("5M") # Display the DateOffset print("\nDateOffset...\n",offset) # Display the Updated Timestamp print("\nUpdated Timestamp...\n",timestamp + offset) # return the count of increments on the given DateOffset object print("\nThe count of increments on the DateOffset object..\n", offset.n)
आउटपुट
यह निम्नलिखित कोड उत्पन्न करेगा -
Timestamp... 2021-09-26 03:25:02.000045 DateOffset... <5 * MonthEnds> Updated Timestamp... 2022-01-31 03:25:02.000045 The count of increments on the DateOffset object.. 5