experiment-impact-tracker
experiment-impact-tracker copied to clipboard
Pandas 2.0 fixes
Updating to Pandas 2.0 resulted in a few minor errors, and this PR should handle the issues I encountered. Fixes include
-
pandas.io.json.json_normalize
is now located inpandas.json_normalize
-
pandas.set_option('display.max_colwidth', -1)
does not accept negative values, updated to passNone
instead - casting Series/DataFrame entries to float is deprecated, updated to use
float(df.iloc[0])