用法:
DataFrame.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.DataFrame.apply用法及代码示例
- Python cudf.DataFrame.apply_rows用法及代码示例
- Python cudf.DataFrame.add用法及代码示例
- Python cudf.DataFrame.asin用法及代码示例
- Python cudf.DataFrame.abs用法及代码示例
- Python cudf.DataFrame.apply_chunks用法及代码示例
- Python cudf.DataFrame.atan用法及代码示例
- Python cudf.DataFrame.acos用法及代码示例
- Python cudf.DataFrame.astype用法及代码示例
- Python cudf.DataFrame.any用法及代码示例
- Python cudf.DataFrame.assign用法及代码示例
- Python cudf.DataFrame.append用法及代码示例
- Python cudf.DataFrame.argsort用法及代码示例
- Python cudf.DataFrame.mod用法及代码示例
- Python cudf.DataFrame.isin用法及代码示例
- Python cudf.DataFrame.rmul用法及代码示例
- Python cudf.DataFrame.exp用法及代码示例
- Python cudf.DataFrame.drop用法及代码示例
- Python cudf.DataFrame.where用法及代码示例
- Python cudf.DataFrame.median用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.DataFrame.all。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。