We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 193b618 commit dac57c2Copy full SHA for dac57c2
app/historeport/routes.py
@@ -48,6 +48,7 @@ def histo_download():
48
onto_tree = json.load(fp)
49
df = db_to_df()
50
df, features_col = table_to_df(df, onto_tree)
51
+ df = df.replace({-0.25: np.nan})
52
resp = make_response(df.to_csv())
53
resp.headers["Content-Disposition"] = "attachment; filename=text_reports.csv"
54
resp.headers["Content-Type"] = "text/csv"
0 commit comments