Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python Pandas - DateTimeIndex에서 주파수 객체를 문자열로 추출

<시간/>

DateTimeIndex에서 빈도 개체를 문자열로 추출하려면 DateTimeIndex.freqstr을 사용합니다. Pandas의 속성

먼저 필요한 라이브러리를 가져옵니다 -

pandas를 pd로 가져오기

기간이 6이고 빈도가 D 즉 day −

인 DatetimeIndex를 만듭니다.
datetimeindex =pd.date_range('2021-10-20 02:30:50', period=6, tz='Australia/Adelaide', freq='D')

DateTimeIndex 표시 -

print("DateTimeIndex...\n", datetimeindex)

DateTimeIndex 빈도를 문자열로 표시 -

print("DateTimeIndex 빈도를 문자열로...\n", datetimeindex.freqstr)

예시

다음은 코드입니다 -

판다를 pd#로 가져오기 기간이 6이고 빈도가 D 즉, day#인 DatetimeIndex 시간대는 Australia/Adelaidedatetimeindex =pd.date_range('2021-10-20 02:30:50', period=6, tz='입니다. Australia/Adelaide', freq='D')# display DateTimeIndexprint("DateTimeIndex...\n", datetimeindex)# display DateTimeIndex frequencyprint("DateTimeIndex frequency...\n", datetimeindex.freq)# display DateTimeIndex 빈도 as a stringprint("DateTimeIndex 빈도를 문자열로...\n", datetimeindex.freqstr)

출력

이것은 다음 코드를 생성합니다 -

DateTimeIndex...DatetimeIndex(['2021-10-20 02:30:50+10:30', '2021-10-21 02:30:50+10:30','2021-10-22 02:30:50+10:30', '2021-10-23 02:30:50+10:30','2021-10-24 02:30:50+10:30', '2021-10- 25 02:30:50+10:30'],dtype='datetime64[ns, Australia/Adelaide]', freq='D')DateTimeIndex 빈도...DateTimeIndex 빈도를 문자열로...D