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
When accessing the history of a column like df.Origin this returns a series. But this is stored in a cache so the method that transfers metadata including history from the parent df which is either def _constructor_sliced(self): or __finalize__() is only called once. Therefore the first time df.Origin is referenced it includes all the history from df up to that point, but on subsequent references to df.Origin the history does not contain all of df's history
Not sure what expected behavior should be. Doesn't break anything currently.
The text was updated successfully, but these errors were encountered:
When accessing the history of a column like
df.Origin
this returns a series. But this is stored in a cache so the method that transfers metadata including history from the parent df which is eitherdef _constructor_sliced(self):
or__finalize__()
is only called once. Therefore the first timedf.Origin
is referenced it includes all the history from df up to that point, but on subsequent references todf.Origin
the history does not contain all of df's historyNot sure what expected behavior should be. Doesn't break anything currently.
The text was updated successfully, but these errors were encountered: