DateTimeIndex को मिनट आवृत्ति के साथ गोल करने के लिए, DateTimeIndex.round() . का उपयोग करें तरीका। मिनट आवृत्ति के लिए, फ़्रीक . का उपयोग करें मान 'T' . के साथ पैरामीटर ।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
डेटटाइम इंडेक्स अवधि 5 और आवृत्ति एस यानी सेकंड के रूप में। समय क्षेत्र ऑस्ट्रेलिया/एडिलेड है -
datetimeindex = pd.date_range('2021-09-29 07:00', periods=5, tz='Australia/Adelaide', freq='45s')
डेटटाइम इंडेक्स प्रदर्शित करें -
print("DateTimeIndex...\n", datetimeindex)
डेटटाइमइंडेक्स तिथि पर मिनट आवृत्ति के साथ राउंड ऑपरेशन। मिनट आवृत्ति के लिए, हमने 'T -
.' का प्रयोग किया हैprint("\nPerforming round operation with minute frequency...\n", datetimeindex.round(freq='T'))
उदाहरण
निम्नलिखित कोड है -
import pandas as pd # DatetimeIndex with period 5 and frequency as s i.e. seconds # timezone is Australia/Adelaide datetimeindex = pd.date_range('2021-09-29 07:00', periods=5, tz='Australia/Adelaide', freq='45s') # display DateTimeIndex print("DateTimeIndex...\n", datetimeindex) # display DateTimeIndex frequency print("DateTimeIndex frequency...\n", datetimeindex.freq) # getting the minute res = datetimeindex.minute # display only the minute print("\nThe minute from DateTimeIndex...\n", res) # Round operation on DateTimeIndex date with minute frequency # For minute frequency, we have used 'T' print("\nPerforming round operation with minute frequency...\n", datetimeindex.round(freq='T'))
आउटपुट
यह निम्नलिखित कोड उत्पन्न करेगा -
DateTimeIndex... DatetimeIndex(['2021-09-29 07:00:00+09:30', '2021-09-29 07:00:45+09:30', '2021-09-29 07:01:30+09:30', '2021-09-29 07:02:15+09:30', '2021-09-29 07:03:00+09:30'], dtype='datetime64[ns, Australia/Adelaide]', freq='45S') DateTimeIndex frequency... <45 * Seconds> The minute from DateTimeIndex... Int64Index([0, 0, 1, 2, 3], dtype='int64') Performing round operation with minute frequency... DatetimeIndex(['2021-09-29 07:00:00+09:30', '2021-09-29 07:01:00+09:30', '2021-09-29 07:02:00+09:30', '2021-09-29 07:02:00+09:30', '2021-09-29 07:03:00+09:30'], dtype='datetime64[ns, Australia/Adelaide]', freq=None)