当我评估以下代码片段时,我得到的值是True
import pandas as pd
df = pd.DataFrame({'a': ['assa', '100', 'AJSAND']})
(df < 0).all()
在Pandas DataFrame中字符串是否总是小于零?
但是,以下内容会导致错误
's' < 0
答案 0 :(得分:2)
如果检查熊猫的源代码,则可以在 _comp_method_FRAME 方法下找到以下几行。您可以找到完整的说明here。总而言之,它更多地是一种比较各种类型而不会导致异常的方法。
def _comp_method_FRAME(cls, func, special):
str_rep = _get_opstr(func, cls)
op_name = _get_op_name(func, special)
@Appender('Wrapper for comparison method {name}'.format(name=op_name))
def f(self, other):
if isinstance(other, ABCDataFrame):
# Another DataFrame
if not self._indexed_same(other):
raise ValueError('Can only compare identically-labeled '
'DataFrame objects')
return self._compare_frame(other, func, str_rep)
elif isinstance(other, ABCSeries):
return _combine_series_frame(self, other, func,
fill_value=None, axis=None,
level=None, try_cast=False)
else:
# straight boolean comparisons we want to allow all columns
# (regardless of dtype to pass thru) See #4537 for discussion.
res = self._combine_const(other, func,
errors='ignore',
try_cast=False)
return res.fillna(True).astype(bool)
f.__name__ = op_name
return f
因此,基本上,数据框首先填充有NaN,然后再用真正的布尔值将其删除!