pandas.errors.AttributeConflictWarning # 异常 pandas.errors。属性冲突警告[来源] # 使用 HDFStore 时索引属性冲突时引发警告。 当尝试附加名称与 HDFStore 上现有索引不同的索引或尝试附加频率与 HDFStore 上现有索引不同时发生。 例子 >>> idx1 = pd.Index(['a', 'b'], name='name1') >>> df1 = pd.DataFrame([[1, 2], [3, 4]], index=idx1) >>> df1.to_hdf('file', 'data', 'w', append=True) >>> idx2 = pd.Index(['c', 'd'], name='name2') >>> df2 = pd.DataFrame([[5, 6], [7, 8]], index=idx2) >>> df2.to_hdf('file', 'data', 'a', append=True) AttributeConflictWarning: the [index_name] attribute of the existing index is [name1] which conflicts with the new [name2]...