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 b7b12ef commit 89cb595Copy full SHA for 89cb595
code/pages/0_Data inventory.py
@@ -67,6 +67,7 @@ def load_presets():
67
QUERY_PRESET, VENN_PRESET = load_presets()
68
69
META_COLUMNS = [
70
+ "PI",
71
"Han_temp_pipeline (bpod)",
72
"Han_temp_pipeline (bonsai)",
73
"VAST_raw_data_on_VAST",
@@ -486,7 +487,7 @@ def add_venn_diagrms(df_merged):
486
487
# -- Show and download df for this Venn --
488
circle_columns = [c_s["column"] for c_s in venn_preset["circle_settings"]]
489
# Show histogram over time for the columns and patches in preset
- df_this_preset = df_merged[circle_columns]
490
+ df_this_preset = df_merged[["PI"] + circle_columns]
491
# Filter out rows that have at least one True in this Venn
492
df_this_preset = df_this_preset[df_this_preset.any(axis=1)]
493
0 commit comments