我有一个整数数据帧,根据此答案,我在其中添加了另外2个生成的行,称为“ sum”和“ cumsum”(累积和): Dataframe: Computed row based on cell above and cell on the left
现在,当我按索引访问新添加的行时,就像这样:
myMatrix.iloc['sum']['January']
我收到以下错误:
jinja2.exceptions.UndefinedError: 'pandas.core.indexing._iLocIndexer object' has no attribute 'sum'
因此,我尝试重置索引以确保将“ sum”和“ cumsum”添加到索引中。
myMatrix.reset_index(drop = True,inplace = True)
但是我仍然遇到相同的错误。
我在做什么错了?