विशिष्ट समय श्रृंखला आवृत्ति के साथ DateTimeIndex से मिनट निकालने के लिए, DateTimeIndex.minute का उपयोग करें संपत्ति।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
6 अवधि और आवृत्ति के रूप में टी यानी मिनट के साथ डेटाटाइम इंडेक्स बनाएं। समय क्षेत्र ऑस्ट्रेलिया/सिडनी है -
datetimeindex = pd.date_range('2021-10-20 02:30:55', periods=6, tz='Australia/Sydney', freq='T')
डेटटाइम इंडेक्स प्रदर्शित करें -
print("DateTimeIndex...\n", datetimeindex)
मिनट पाएं -
print("\nGetting the minute..\n",datetimeindex.minute)
उदाहरण
निम्नलिखित कोड है -
import pandas as pd # DatetimeIndex with period 6 and frequency as T i.e. minute # The timezone is Australia/Sydney datetimeindex = pd.date_range('2021-10-20 02:30:55', periods=6, tz='Australia/Sydney', freq='T') # display DateTimeIndex print("DateTimeIndex...\n", datetimeindex) # display DateTimeIndex frequency print("DateTimeIndex frequency...\n", datetimeindex.freq) # get the minute print("\nGetting the minute..\n",datetimeindex.minute)
आउटपुट
यह निम्नलिखित कोड उत्पन्न करेगा -
DateTimeIndex... DatetimeIndex(['2021-10-20 02:30:55+11:00', '2021-10-20 02:31:55+11:00', '2021-10-20 02:32:55+11:00', '2021-10-20 02:33:55+11:00', '2021-10-20 02:34:55+11:00', '2021-10-20 02:35:55+11:00'], dtype='datetime64[ns, Australia/Sydney]', freq='T') DateTimeIndex frequency... <Minute> Getting the minute.. Int64Index([30, 31, 32, 33, 34, 35], dtype='int64')