Python|熊猫索引.min()
Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。
Pandas Index.min()
函数返回索引的最小值。该函数适用于数字和字符串类型的对象。在字符串类型对象的情况下,它返回按字典顺序具有最小值的字符串。
Syntax: Index.min()
Parameters : Doesn’t take any parameter.
Returns : scalar: Minimum value.
示例 #1:使用Index.min()
函数查找给定索引中的最小元素。
# 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 min value.
idx.min()
输出 :
正如我们在输出中看到的那样,该函数返回了“Beagle”,它在索引中存在的值中具有最小的字典顺序。示例 #2:使用Index.min()
函数查找索引中的最小值。
# 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 minimum
# value present in the Index
idx.min()
输出 :
正如我们在输出中看到的,该函数返回了 0,它是索引标签中的最小值。