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
Pandas is migrating to copy and write behaviour (see here). In pandas>=3.0 this will be the default.
Most of the problems currently associated with current implementation are already handled by pandas warnings (see docs). But we might want to switch to this at some point before pandas 3.0 arrives, to get all the benefits and let people be more sure about their data references. There's a lot of safety-first .copy()ing going on now, which wouldn't be necessary and would be more clear.
The text was updated successfully, but these errors were encountered:
Since this has come up in discussions:
pandas>=3.0
this will be the default.pandas
3.0 arrives, to get all the benefits and let people be more sure about their data references. There's a lot of safety-first.copy()
ing going on now, which wouldn't be necessary and would be more clear.The text was updated successfully, but these errors were encountered: