用法:
Series.bool()
返回单个元素 Series 或 DataFrame 的布尔值。
这必须是一个布尔标量值,True 或 False。如果 Series 或 DataFrame 没有恰好 1 个元素,或者该元素不是布尔值(整数值 0 和 1 也会引发异常),它将引发 ValueError。
- bool
Series 或 DataFrame 中的值。
返回:
例子:
该方法仅适用于具有布尔值的单个元素对象:
>>> pd.Series([True]).bool() True >>> pd.Series([False]).bool() False
>>> pd.DataFrame({'col':[True]}).bool() True >>> pd.DataFrame({'col':[False]}).bool() False
相关用法
- Python pandas.Series.between_time用法及代码示例
- Python pandas.Series.between用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.map用法及代码示例
- Python pandas.Series.max用法及代码示例
- Python pandas.Series.str.isdecimal用法及代码示例
- Python pandas.Series.str.get用法及代码示例
- Python pandas.Series.to_csv用法及代码示例
- Python pandas.Series.dt.day_name用法及代码示例
- Python pandas.Series.sample用法及代码示例
- Python pandas.Series.head用法及代码示例
- Python pandas.Series.eq用法及代码示例
- Python pandas.Series.plot.line用法及代码示例
- Python pandas.Series.to_pickle用法及代码示例
- Python pandas.Series.reindex_like用法及代码示例
- Python pandas.Series.dt.is_year_end用法及代码示例
- Python pandas.Series.repeat用法及代码示例
- Python pandas.Series.str.replace用法及代码示例
- Python pandas.Series.update用法及代码示例
- Python pandas.Series.iat用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.bool。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。