You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importpandasaspdpanel=pd.util.testing.makePanel()
pd.ix[0] # get first item into cachepanel.ix[:, :, 'A+1'] =panel.ix[:, :, 'A'] +1assert"A+1"inpanel.ix[0].columns# fails due to stale item cacheassert"A+1"inpanel.ix[1].columns# succeeds
When doing setting with enlargement like:
The same thing happens with DataFrames.
The text was updated successfully, but these errors were encountered: