Python | Отметка времени Pandas.is_quarter_end

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

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

Pandas Timestamp.is_quarter_end attribute return a boolean value. It return True if the date in the given Timestamp object is the quarter end else it return False.

Syntax : Timestamp.is_quarter_end

Parameters : None

Return : boolean

Example #1: Use Timestamp.is_quarter_end attribute to check if the date in the given Timestamp object is the quarter end or not.

# importing pandas as pd
import pandas as pd
  
# Create the Timestamp object
ts = pd.Timestamp(2016, 3, 31, 12)
  
# Print the Timestamp object
print(ts)

Выход :

Now we will use the Timestamp.is_quarter_end attribute to check if the date in the ts object is the quarter end or not.

# check if the date is quarter end or not
ts.is_quarter_end

Выход :

As we can see in the output, the Timestamp.is_quarter_end attribute has returned True indicating the date in the given Timestamp object is quarter end

Example #2: Use Timestamp.is_quarter_end attribute to check if the date in the given Timestamp object is the quarter end or not.

Выход :

Now we will use the Timestamp.is_quarter_end attribute to check if the date in the ts object is the quarter end or not.

# check if the date is quarter end or not
ts.is_quarter_end

Выход :

As we can see in the output, the Timestamp.is_quarter_end attribute has returned False indicating the date in the given Timestamp object is not the quarter end.

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

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