📜  Python|熊猫索引.max()

📅  最后修改于: 2022-05-13 01:55:21.886000             🧑  作者: Mango

Python|熊猫索引.max()

Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。

Pandas Index.max()函数返回索引的最大值。该函数适用于数字和字符串类型的对象。在字符串类型对象的情况下,它返回按字典顺序具有最高值的字符串。

示例 #1:使用Index.max()函数查找给定索引中的最大元素。

# importing pandas as pd
import pandas as pd
  
# Creating the Index
idx = pd.Index(['Labrador', 'Beagle', 'Mastiff', 'Lhasa', 'Husky', 'Beagle'])
  
# Print the Index
idx

输出 :

现在我们在给定的索引中找到最大值。

# return max value.
idx.max()

输出 :

正如我们在输出中看到的那样,该函数返回了“Mastiff”,它在索引中存在的值中具有最高的字典顺序。示例 #2:使用Index.max()函数查找索引中的最大值。

# importing pandas as pd
import pandas as pd
  
# Creating the Index
idx = pd.Index([17, 69, 33, 5, 0, 74, 0])
  
# Print the Datetime Index
idx

输出 :

现在我们将在索引的标签中找到最大值。

# the function will return the
# maximum value present in the Index
idx.max()

输出 :

正如我们在输出中看到的,该函数返回了 74,这是索引标签中的最大值。