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
DeprecationWarning: In a future version, df.iloc[:, i] = newvalswill attempt to set the values inplace instead of always setting a new array. To retain the old behavior, use eitherdf[df.columns[i]] = newvalsor, if columns are non-unique,df.isetitem(i, newvals)`
When i remove this part from the file loader.py the problem is no longer occuring. I'm using meteostat version 1.6.7
# Force datetime conversion # if coerce_dates: # df.iloc[:, parse_dates] = df.iloc[:, parse_dates].apply( # pd.to_datetime, errors="coerce" # )
The text was updated successfully, but these errors were encountered:
I'm getting the following error:
DeprecationWarning: In a future version,
df.iloc[:, i] = newvalswill attempt to set the values inplace instead of always setting a new array. To retain the old behavior, use either
df[df.columns[i]] = newvalsor, if columns are non-unique,
df.isetitem(i, newvals)`When i remove this part from the file loader.py the problem is no longer occuring. I'm using meteostat version 1.6.7
# Force datetime conversion # if coerce_dates: # df.iloc[:, parse_dates] = df.iloc[:, parse_dates].apply( # pd.to_datetime, errors="coerce" # )
The text was updated successfully, but these errors were encountered: