当我评估以下代码片段时,得到的值是True

import pandas as pd
df = pd.DataFrame({'a': ['assa', '100', 'AJSAND']})
(df < 0).all()


在Pandas DataFrame中,字符串总是小于零吗?

但是,以下导致错误

's' < 0

最佳答案

如果检查熊猫的源代码,则可以在_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,然后​​再用真正的布尔值将其删除!

关于python - pandas.Series中的字符串是否总是小于0?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50971119/

10-11 10:38