Skip to content

Commit

Permalink
change title emoji, reduce verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasrodes committed Dec 12, 2024
1 parent 5d1ce18 commit 3eb556c
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions apps/wizard/app_pages/producer_analytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,15 +250,12 @@ def prepare_summary(
########################################################################################################################

# Streamlit app layout.
st.markdown(
"""# 📊 Producer analytics
Explore analytics of data producers."""
)
st.title(":material/bar_chart: Producer analytics")
st.markdown("Explore analytics of data producers.")

with st.container(border=True):
st.markdown(
f"Select the minimum and maximum dates for the custom date range (note that this metric started to be recorded on {MIN_DATE.strftime('%Y-%m-%d')})."
f"Select a custom date range (note that this metric started to be recorded on {MIN_DATE.strftime('%Y-%m-%d')})."
)

with st_horizontal():
Expand All @@ -273,7 +270,7 @@ def prepare_summary(
"Exclude auxiliary steps (e.g. population)",
False,
help="Exclude steps that are commonly used as auxiliary data, so they do not skew the analytics in favor of a few producers. But note that this will exclude all uses of these steps, even when they are the main datasets (not auxiliary). Auxiliary steps are:\n- "
+ "\n- ".join(sorted(AUXILIARY_STEPS)),
+ "\n- ".join(sorted(f"`{s}`" for s in AUXILIARY_STEPS)),
)

if exclude_auxiliary_steps:
Expand Down

0 comments on commit 3eb556c

Please sign in to comment.