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 a032196 commit b6ff7ceCopy full SHA for b6ff7ce
src/fractal_feature_explorer/pages/explore_page/_heat_map_plot.py
@@ -70,6 +70,9 @@ def heat_map_component(
70
df_piv = df_piv.median(numeric_only=True)
71
elif aggregation == "Counts":
72
df_piv = df_piv.count()
73
+ elif aggregation is None:
74
+ st.error("Please select one aggregation")
75
+ st.stop()
76
else:
77
raise ValueError(f"Unknown aggregation: {aggregation}")
78
0 commit comments