Python是进行数据分析的一种出色语言,主要是因为以数据为中心的python软件包具有奇妙的生态系统。 Pandas是其中的一种,使导入和分析数据更加容易。
Pandas Index.max()
函数返回Index的最大值。该函数适用于数字对象和字符串类型的对象。如果是字符串类型的对象,则按字典顺序返回具有最高值的字符串。
用法: 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,这是Index的标签中的最大值。
相关用法
- Python pandas.map()用法及代码示例
- Python Pandas Timestamp.now用法及代码示例
- Python Pandas Timestamp.second用法及代码示例
- Python Pandas DataFrame.abs()用法及代码示例
- Python Pandas Series.lt()用法及代码示例
- Python Pandas dataframe.all()用法及代码示例
- Python Pandas DataFrame.ix[ ]用法及代码示例
- Python Pandas Series.pop()用法及代码示例
- Python Pandas TimedeltaIndex.max用法及代码示例
- Python Pandas Timestamp.dst用法及代码示例
- Python Pandas Timestamp.tz用法及代码示例
- Python Pandas Series.mean()用法及代码示例
- Python Pandas TimedeltaIndex.min用法及代码示例
- Python Pandas Series.ptp()用法及代码示例
- Python Pandas dataframe.cov()用法及代码示例
注:本文由纯净天空筛选整理自Shubham__Ranjan大神的英文原创作品 Python | Pandas Index.max()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。