lynn-twinkl commited on
Commit
24cd2ab
·
1 Parent(s): fb8ff02

moved metric card for consistency with shortllist manager tab

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -319,9 +319,9 @@ if uploaded_file is not None:
319
  add_vertical_space(1)
320
 
321
  col1, col2, col3 = st.columns(3)
322
- col1.metric("Avg. Word Count", f"{df['word_count'].mean().round(1)}")
323
  col2.metric("Median N.I", df['necessity_index'].median().round(2))
324
- col3.metric("Total Applications", len(df))
325
 
326
  ## --- NI Distribution Plot ---
327
  ni_distribution_plt = plot_histogram(df, col_to_plot='necessity_index', bins=50)
 
319
  add_vertical_space(1)
320
 
321
  col1, col2, col3 = st.columns(3)
322
+ col1.metric("Applications Submitted", len(df))
323
  col2.metric("Median N.I", df['necessity_index'].median().round(2))
324
+ col3.metric("Avg. Word Count", f"{df['word_count'].mean().round(1)}")
325
 
326
  ## --- NI Distribution Plot ---
327
  ni_distribution_plt = plot_histogram(df, col_to_plot='necessity_index', bins=50)