Python | Панды TimedeltaIndex.com компоненты
Python - отличный язык для анализа данных, в первую очередь из-за фантастической экосистемы пакетов Python, ориентированных на данные. Pandas - один из таких пакетов, который значительно упрощает импорт и анализ данных.
Pandas TimedeltaIndex.components attribute return a dataframe of the components (days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds) of the Timedeltas.
Syntax: TimedeltaIndex.components
Return : a DataFrame
Example #1: Use TimedeltaIndex.components attribute to return a dataframe of the components of the Timedeltas.
Выход :
Now we want to return a dataframe of the components of the tidx object.
# return a dataframe constructed from# the components of the Timedeltatidx.components |
Output :
As we can see in the output, the TimedeltaIndex.components attribute has returned a dataframe constructed from the components of the Timedelta
Example #2: Use TimedeltaIndex.components attribute to return a dataframe of the components of the Timedeltas.
# importing pandas as pdimport pandas as pd # Create the TimedeltaIndex objecttidx = pd.TimedeltaIndex(data =["-1 days 2 min 3us", "1 days 06:05:01.000030", "-1 days + 23:59:59.999999"]) # Print the TimedeltaIndexprint(tidx) |
Выход :
Now we want to return a dataframe of the components of the tidx object.
# return a dataframe constructed from# the components of the Timedeltatidx.components |
Output :
As we can see in the output, the TimedeltaIndex.components attribute has returned a dataframe constructed from the components of the Timedelta
Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.
Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.