用法:
Series.all(axis=0, bool_only=None, skipna=True, level=None, **kwargs)
返回 DataFrame 中的所有元素是否為 True。
- skipna: bool, default True:
排除 NA/空值。如果整個行/列為 NA 並且 skipna 為 True,則結果將為 True,與空行/列一樣。如果 skipna 為 False,則 NA 被視為 True,因為它們不等於零。
- Series
參數:
返回:
注意:
當前不支持的參數是
axis
,bool_only
,level
。例子:
>>> import cudf >>> df = cudf.DataFrame({'a': [3, 2, 3, 4], 'b': [7, 0, 10, 10]}) >>> df.all() a True b False dtype: bool
相關用法
- Python cudf.Series.add用法及代碼示例
- Python cudf.Series.apply用法及代碼示例
- Python cudf.Series.acos用法及代碼示例
- Python cudf.Series.autocorr用法及代碼示例
- Python cudf.Series.append用法及代碼示例
- Python cudf.Series.as_mask用法及代碼示例
- Python cudf.Series.any用法及代碼示例
- Python cudf.Series.asin用法及代碼示例
- Python cudf.Series.applymap用法及代碼示例
- Python cudf.Series.astype用法及代碼示例
- Python cudf.Series.argsort用法及代碼示例
- Python cudf.Series.abs用法及代碼示例
- Python cudf.Series.atan用法及代碼示例
- Python cudf.Series.ceil用法及代碼示例
- Python cudf.Series.update用法及代碼示例
- Python cudf.Series.max用法及代碼示例
- Python cudf.Series.head用法及代碼示例
- Python cudf.Series.reindex用法及代碼示例
- Python cudf.Series.interleave_columns用法及代碼示例
- Python cudf.Series.min用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.Series.all。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。