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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。