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