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
I will collect here the raised warnings from pandas.
in main.rivus.create_model()
line 94 & 169: sortlevel is deprecated.
line 145: Boolen Series will be reindexed
in def multiply_by_area_demand
DeprecationWarning:
.ix is deprecated. Please use
.loc for label based indexing or
.iloc for positional indexing
df.convert_objects(convert_numeric)
FutureWarning: convert_objects is deprecated.
Use the data-type specific converters pd.to_datetime, pd.to_timedelta and pd.to_numeric.
df = df.convert_objects(convert_numeric=True)
The text was updated successfully, but these errors were encountered:
I will collect here the raised warnings from pandas.
in
main.rivus.create_model()
def multiply_by_area_demand
The text was updated successfully, but these errors were encountered: