Python | Серия панд. Is_monotonic_decreasing
Python - отличный язык для анализа данных, в первую очередь из-за фантастической экосистемы пакетов Python, ориентированных на данные. Pandas - один из таких пакетов, который значительно упрощает импорт и анализ данных.
Серия Pandas - это одномерный массив ndarray с метками осей. Этикетки не обязательно должны быть уникальными, но должны быть хешируемого типа. Объект поддерживает индексирование как на основе целых чисел, так и на основе меток и предоставляет множество методов для выполнения операций, связанных с индексом.
Pandas Series.is_monotonic_decreasing attribute return a boolean value. It returns True if the data in the given Series object is monotonically decreasing else it return False.
Syntax:Series.is_monotonic_decreasing
Parameter : None
Returns : boolean
Example #1: Use Series.is_monotonic_decreasing attribute to check if the underlying data in the given Series object is monotonically decreasing or not.
# importing pandas as pdimport pandas as pd # Creating the Seriessr = pd.Series(["New York", "Chicago", "Toronto", "Lisbon"]) # Creating the row axis labelssr.index = ["City 1", "City 2", "City 3", "City 4"] # Print the seriesprint(sr) |
Выход :
Now we will use Series.is_monotonic_decreasing attribute to check if the underlying data in the given Series object is monotonically decreasing or not.
# check if monotonically decreasingsr.is_monotonic_decreasing |
Выход :

As we can see in the output, the Series.is_monotonic_decreasing attribute has returned False indicating the underlying in the given series object is not monotonically decreasing.
Example #2 : Use Series.is_monotonic_decreasing attribute to check if the underlying data in the given Series object is monotonically decreasing or not.
# importing pandas as pdimport pandas as pd # Creating the Seriessr = pd.Series(["4/1/2018", "3/1/2018", "2/1/2018", "1/1/2018"]) # Creating the row axis labelssr.index = ["Day 1", "Day 2", "Day 3", "Day 4"] # Print the seriesprint(sr) |
Выход :

Now we will use Series.is_monotonic_decreasing attribute to check if the underlying data in the given Series object is monotonically decreasing or not.
# check if monotonically decreasingsr.is_monotonic_decreasing |
Output :
As we can see in the output, the Series.is_monotonic_decreasing attribute has returned True indicating the underlying in the given series object is monotonically decreasing.
Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.
Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.