Python | Панды Index.max ()
Python - отличный язык для анализа данных, в первую очередь из-за фантастической экосистемы пакетов Python, ориентированных на данные. Pandas - один из таких пакетов, который значительно упрощает импорт и анализ данных.
Pandas Index.max() function returns the maximum value of the Index. The function works with both numerical as well as the string type objects. In case of string type object it returns the string which has highest value in lexicographical order.
Syntax: Index.max()
Parameters : Doesn’t take any parameter.
Returns : scalar: Maximum value.
Example #1: Use Index.max() function to find the maximum element in the given Index.
# importing pandas as pdimport pandas as pd # Creating the Indexidx = pd.Index(["Labrador", "Beagle", "Mastiff", "Lhasa", "Husky", "Beagle"]) # Print the Indexidx |
Выход :
Now we find the max value in the given Index.
# return max value.idx.max() |
Output :
As we can see in the output, the function has returned ‘Mastiff’ which has the highest lexicographical order among the values present in the Index.
Example #2: Use Index.max() function to find the maximum value in the Index.
# importing pandas as pdimport pandas as pd # Creating the Indexidx = pd.Index([17, 69, 33, 5, 0, 74, 0]) # Print the Datetime Indexidx |
Выход :
Now we will find the maximum value among the labels of the Index.
# the function will return the# maximum value present in the Indexidx.max() |
Выход :
Как видно из выходных данных, функция вернула 74, что является наибольшим значением среди меток индекса.
Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.
Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.