用法:
Series.max(axis=None, skipna=True, split_every=False, out=None, numeric_only=None)
返回請求軸上的最大值。
此文檔字符串是從 pandas.core.frame.DataFrame.max 複製而來的。
可能存在與 Dask 版本的一些不一致之處。
如果你想要 index 的最大值,使用
idxmax
.這相當於numpy.ndarray
方法argmax
.- axis:{索引 (0), 列 (1)}
要應用的函數的軸。
- skipna:布爾值,默認為真
計算結果時排除 NA/null 值。
- level:int 或級別名稱,默認無(Dask 中不支持)
如果軸是 MultiIndex(分層),則沿特定級別計數,折疊成一個係列。
- numeric_only:布爾值,默認無
僅包括 float、int、boolean 列。如果沒有,將嘗試使用所有內容,然後僅使用數字數據。未針對係列實施。
- **kwargs:
要傳遞給函數的附加關鍵字參數。
- Series 或 DataFrame(如果指定了級別)
參數:
返回:
例子:
>>> idx = pd.MultiIndex.from_arrays([ ... ['warm', 'warm', 'cold', 'cold'], ... ['dog', 'falcon', 'fish', 'spider']], ... names=['blooded', 'animal']) >>> s = pd.Series([4, 2, 0, 8], name='legs', index=idx) >>> s blooded animal warm dog 4 falcon 2 cold fish 0 spider 8 Name: legs, dtype: int64
>>> s.max() 8
相關用法
- Python dask.dataframe.Series.map_partitions用法及代碼示例
- Python dask.dataframe.Series.map用法及代碼示例
- Python dask.dataframe.Series.mask用法及代碼示例
- Python dask.dataframe.Series.map_overlap用法及代碼示例
- Python dask.dataframe.Series.mod用法及代碼示例
- Python dask.dataframe.Series.min用法及代碼示例
- Python dask.dataframe.Series.mul用法及代碼示例
- Python dask.dataframe.Series.memory_usage用法及代碼示例
- Python dask.dataframe.Series.apply用法及代碼示例
- Python dask.dataframe.Series.clip用法及代碼示例
- Python dask.dataframe.Series.prod用法及代碼示例
- Python dask.dataframe.Series.fillna用法及代碼示例
- Python dask.dataframe.Series.to_frame用法及代碼示例
- Python dask.dataframe.Series.sum用法及代碼示例
- Python dask.dataframe.Series.dropna用法及代碼示例
- Python dask.dataframe.Series.gt用法及代碼示例
- Python dask.dataframe.Series.ge用法及代碼示例
- Python dask.dataframe.Series.repartition用法及代碼示例
- Python dask.dataframe.Series.count用法及代碼示例
- Python dask.dataframe.Series.append用法及代碼示例
注:本文由純淨天空篩選整理自dask.org大神的英文原創作品 dask.dataframe.Series.max。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。