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
During development for #79, found that the remove_missing_data_rows() wasn't doing anything. "Null", "null" "nan" and NaN are all used throughout these scripts without much consistency - and so some search/replace actions don't work. Also some fillna() actions work on the entire dataframe which has knockon impacts downstream.
Finally, many actions could have an inplace=True option set, which might speed up and reduce memory requirements.
With some known good outputs, go through to tidy and tweak.
The text was updated successfully, but these errors were encountered:
During development for #79, found that the
remove_missing_data_rows()
wasn't doing anything. "Null", "null" "nan" andNaN
are all used throughout these scripts without much consistency - and so some search/replace actions don't work. Also somefillna()
actions work on the entire dataframe which has knockon impacts downstream.Finally, many actions could have an
inplace=True
option set, which might speed up and reduce memory requirements.With some known good outputs, go through to tidy and tweak.
The text was updated successfully, but these errors were encountered: