CCockrum commited on
Commit
27712af
Β·
verified Β·
1 Parent(s): 30ccd16

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -243,9 +243,10 @@ if fetch_data:
243
  """
244
  stats_placeholder.markdown(stats_html, unsafe_allow_html=True)
245
 
246
- # Render field-level completeness table in sidebar
247
- with st.sidebar.expander("πŸ§ͺ Field Completeness Breakdown", expanded=False):
248
- st.dataframe(completeness_table.style.background_gradient(cmap="Greens").format("{:.1f}%"))
 
249
 
250
  # Utility functions for deeper metadata quality analysis
251
  def is_incomplete(value):
 
243
  """
244
  stats_placeholder.markdown(stats_html, unsafe_allow_html=True)
245
 
246
+ # πŸ“Š Field Completeness Breakdown
247
+ st.sidebar.markdown("### πŸ“Š Field Completeness Breakdown", unsafe_allow_html=True)
248
+ st.sidebar.dataframe(completeness_table.style.format("{:.1f}%"))
249
+
250
 
251
  # Utility functions for deeper metadata quality analysis
252
  def is_incomplete(value):