Pandas DataFrame.max(~)
方法計算 DataFrame 的每列或行的最大值。
參數
1.axis
| int
或 string
| optional
是否按行或按列計算最大值:
軸 |
說明 |
---|---|
|
計算每列的最大值。 |
|
計算每行的最大值。 |
默認情況下,axis=0
。
2. skipna
| boolean
| optional
是否跳過 NaN
。默認情況下,skipna=True
。
3. level
| string
或 int
| optional
要考慮的級別的名稱或整數索引。僅當您的 DataFrame 是多索引時,這才有意義。
4. numeric_only
| None
或 boolean
| optional
允許的值如下:
值 |
說明 |
---|---|
|
僅考慮數字行/列(例如 |
|
嘗試使用所有類型(例如字符串和日期)進行計算,並在無法計算最大值時拋出錯誤。 |
|
嘗試使用所有類型進行計算,並忽略無法計算最大值的所有行/列不會引發錯誤. |
請注意,隻有當類型之間明確定義了 >
運算符時,才能計算最大值。
默認情況下,numeric_only=None
。
返回值
如果指定了level
參數,則將返回DataFrame
。否則,將返回Series
。
例子
考慮以下 DataFrame :
df = pd.DataFrame({"A":[2,3], "B":[4,5]})
df
A B
0 2 4
1 3 5
列最大值
要計算每列的最大值:
df.max() # or axis=0
A 3
B 5
dtype: int64
行方向最大值
要計算每行的最大值,請設置 axis=1
:
df.max(axis=1)
0 4
1 5
dtype: int64
指定skipna
考慮以下帶有缺失值的DataFrame:
df = pd.DataFrame({"A":[4,pd.np.nan]})
df
A
0 4.0
1 NaN
默認情況下, skipna=True
,這意味著缺失值將被忽略:
df.max() # skipna=True
A 4.0
dtype: float64
考慮缺失值:
df.max(skipna=False)
A NaN
dtype: float64
請注意,包含缺失值的行/列的最大值將為 NaN
。
指定numeric_only
考慮以下 DataFrame :
df = pd.DataFrame({"A":[4,5], "B":[2,True], "C":["6",False]})
df
A B C
0 4 2 "6"
1 5 True False
此處, B
和 C
列都包含混合類型,但主要區別在於最大值是為 B
定義的,而不是為 C
定義的。計算最大值需要明確定義類型之間的比較運算符( <
和 >
)。
回想一下,True
布爾值的內部表示是 1
,因此定義了操作 2>True
:
2 > True
True
另一方麵,"6">False
拋出錯誤:
"6" > False
TypeError: '>' not supported between instances of 'str' and 'bool'
None
默認情況下, numeric_only=None
,這意味著混合類型的行/列也會被考慮:
df.max(numeric_only=None)
A 5
B 2
dtype: int64
在這裏,請注意如何計算列的最大值B
,但不適合C
。通過傳入None
,無法計算最大值的行/列(由於未定義<
和>
類型之間)將被簡單地忽略不會引發錯誤.
False
通過設置 numeric_only=False
,將再次考慮混合類型的行/列,但當無法計算最大值時會拋出錯誤:
df.max(numeric_only=False)
TypeError: '<=' not supported between instances of 'str' and 'bool'
在這裏,我們最終得到一個錯誤,因為 C
列包含混合類型,其中 <
操作未定義。
True
通過設置 numeric_only=True
,僅考慮數字行/列:
df.max(numeric_only=True)
A 5
dtype: int64
請注意,B
和 C
列這次被忽略,因為它們包含非數字類型。
相關用法
- Python Pandas DataFrame mask方法用法及代碼示例
- Python Pandas DataFrame mad方法用法及代碼示例
- Python Pandas DataFrame mean方法用法及代碼示例
- Python Pandas DataFrame mod方法用法及代碼示例
- Python Pandas DataFrame memory_usage方法用法及代碼示例
- Python Pandas DataFrame mode方法用法及代碼示例
- Python Pandas DataFrame merge方法用法及代碼示例
- Python Pandas DataFrame melt方法用法及代碼示例
- Python Pandas DataFrame median方法用法及代碼示例
- Python Pandas DataFrame min方法用法及代碼示例
- Python Pandas DataFrame mul方法用法及代碼示例
- Python Pandas DataFrame empty屬性用法及代碼示例
- Python Pandas DataFrame pop方法用法及代碼示例
- Python Pandas DataFrame nsmallest方法用法及代碼示例
- Python Pandas DataFrame sample方法用法及代碼示例
- Python Pandas DataFrame items方法用法及代碼示例
- Python Pandas DataFrame swaplevel方法用法及代碼示例
- Python Pandas DataFrame agg方法用法及代碼示例
- Python Pandas DataFrame copy方法用法及代碼示例
- Python Pandas DataFrame pow方法用法及代碼示例
- Python Pandas DataFrame insert方法用法及代碼示例
- Python Pandas DataFrame lt方法用法及代碼示例
- Python Pandas DataFrame all方法用法及代碼示例
- Python Pandas DataFrame unstack方法用法及代碼示例
- Python PySpark DataFrame filter方法用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 Pandas DataFrame | max method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。