pandas.errors.DataError# exception pandas.errors.DataError[源代码][源代码]# 在对非数值数据执行操作时引发的异常。 例如,对非数值列调用 ohlc 或在滚动窗口上调用函数。 示例 >>> ser = pd.Series(["a", "b", "c"]) >>> ser.rolling(2).sum() Traceback (most recent call last): DataError: No numeric types to aggregate