pandas.errors.AttributeConflictWarning#

exception pandas.errors.AttributeConflictWarning[源代码][源代码]#

当使用 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]...