pandas.errors.SpecificationError # 异常 pandas.errors。规范错误[来源] # agg当函数未指定时引发异常。 异常在两种情况下引发。 第一种方法是agg使用嵌套重命名器(dict-of-dict)调用 Dataframe 或 Series。 第二种方法是调用agg具有重复函数名称的数据框而不分配列名称。 例子 >>> df = pd.DataFrame({'A': [1, 1, 1, 2, 2], ... 'B': range(5), ... 'C': range(5)}) >>> df.groupby('A').B.agg({'foo': 'count'}) ... # SpecificationError: nested renamer is not supported >>> df.groupby('A').agg({'B': {'foo': ['sum', 'max']}}) ... # SpecificationError: nested renamer is not supported >>> df.groupby('A').agg(['min', 'min']) ... # SpecificationError: nested renamer is not supported