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