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
Changed behavior in setting values with df.loc[:, foo] = bar or df.iloc[:, foo] = bar, these now always attempt to set values inplace before falling back to casting (GH45333)
This results in the following line to fail to change column data type (assuming datatype is originall float):
df.loc[:, 'a'] =df.loc[:, 'a'].astype(int)
The text was updated successfully, but these errors were encountered:
Right now some tests fail in #76 due to
stormevents
not supporting the latestpandas
version. For specifics see:#76 (comment)
Also this update from https://pandas.pydata.org/docs/whatsnew/v2.0.0.html is causing an issue:
This results in the following line to fail to change column data type (assuming datatype is originall
float
):The text was updated successfully, but these errors were encountered: