Опираясь на ход мыслей @ Godsmith и обращаясь к необходимости @ Zitrax (я думаю) сделать копию данных для всех атрибутов в конструкторе:
class ConfusionMatrix(pd.DataFrame):
def __init__(self, df, *args, **kwargs):
try:
# Check if `df` looks like a `ConfusionMatrix`
# Could check `isinstance(df, ConfusionMatrix)`
# But might miss some "ConfusionMatrix-elligible" `DataFrame`s
assert((df.columns == df.index).all())
assert(df.values.dtype == int)
self.construct_copy(df, *args, **kwargs)
return
except (AssertionError, AttributeError, ValueError):
pass
# df is just data, so continue with normal constructor here ...
def construct_copy(self, other, *args, **kwargs):
# construct a parent DataFrame instance
parent_type = super(ConfusionMatrix, self)
parent_type.__init__(other)
for k, v in other.__dict__.iteritems():
if hasattr(parent_type, k) and hasattr(self, k) and getattr(parent_type, k) == getattr(self, k):
continue
setattr(self, k, deepcopy(v))
Этот класс ConfusionMatrix
наследует pandas.DataFrame
и добавляет тонну других атрибутов и методов, которые необходимо пересчитать, если только данные матрицы other
не могут быть скопированы. В поисках решения я нашел этот вопрос.