James McCool
commited on
Commit
·
ff85862
1
Parent(s):
7905ae8
Update sorting variable options in app.py to include 'Own' and 'Weighted Own' for enhanced user selection. This change improves the flexibility of variable sorting, allowing for more tailored data analysis.
Browse files
app.py
CHANGED
@@ -1081,7 +1081,7 @@ with tab2:
|
|
1081 |
st.write("Sorting and trimming variables:")
|
1082 |
perf_var, own_var = st.columns(2)
|
1083 |
with perf_var:
|
1084 |
-
performance_type = st.selectbox("Sorting variable", ['median', '
|
1085 |
with own_var:
|
1086 |
own_type = st.selectbox("Trimming variable", ['Own', 'Geomean', 'Weighted Own', 'Similarity Score'], key='trim_var')
|
1087 |
|
|
|
1081 |
st.write("Sorting and trimming variables:")
|
1082 |
perf_var, own_var = st.columns(2)
|
1083 |
with perf_var:
|
1084 |
+
performance_type = st.selectbox("Sorting variable", ['median', 'Own', 'Weighted Own'], key='sort_var')
|
1085 |
with own_var:
|
1086 |
own_type = st.selectbox("Trimming variable", ['Own', 'Geomean', 'Weighted Own', 'Similarity Score'], key='trim_var')
|
1087 |
|