lynn-twinkl
commited on
Commit
·
24cd2ab
1
Parent(s):
fb8ff02
moved metric card for consistency with shortllist manager tab
Browse files
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("
|
| 323 |
col2.metric("Median N.I", df['necessity_index'].median().round(2))
|
| 324 |
-
col3.metric("
|
| 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)
|