Python | Pandas Period.start_time

Опубликовано: 28 Марта, 2022

Python - отличный язык для анализа данных, в первую очередь из-за фантастической экосистемы пакетов Python, ориентированных на данные. Pandas - один из таких пакетов, который значительно упрощает импорт и анализ данных.

Pandas Period.start_time attribute returns a Timestamp object containing the start time of the given period object.

Syntax : Period.start_time

Parameters : None

Return : Timestamp object

Example #1: Use Period.start_time attribute to find the start time for the given Period object.

# importing pandas as pd
import pandas as pd
  
# Create the Period object
prd = pd.Period(freq ="S", year = 2000, month = 2, day = 22,
                         hour = 8, minute = 21, second = 24)
  
# Print the Period object
print(prd)

Выход :

Now we will use the Period.start_time attribute to find the start time for prd object.

# return the start time
prd.start_time

Выход :

As we can see in the output, the Period.start_time attribute has returned a Timestamp object which contains the date value as well as the start time of the given period object.

Example #2: Use Period.start_time attribute to find the start time for the given Period object.

Выход :

Now we will use the Period.start_time attribute to find the start time for prd object.

# return the start time
prd.start_time

Выход :

As we can see in the output, the Period.start_time attribute has returned a Timestamp object which contains the date value as well as the start time of the given period object.

Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.

Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.