James McCool
commited on
Commit
·
33fc799
1
Parent(s):
58be65b
Update selectbox labels in app.py: change "Select sort type" to "Select Sorting variable" and "Select trimming variable type" to "Select trimming variable" for improved clarity in user interface.
Browse files
app.py
CHANGED
@@ -836,8 +836,8 @@ with tab3:
|
|
836 |
export_file = st.session_state['portfolio'].copy()
|
837 |
st.session_state['portfolio'] = st.session_state['portfolio'].sort_values(by='median', ascending=False)
|
838 |
with st.form(key='trim_form'):
|
839 |
-
performance_type = st.selectbox("Select
|
840 |
-
own_type = st.selectbox("Select trimming variable
|
841 |
|
842 |
submitted = st.form_submit_button("Trim")
|
843 |
if submitted:
|
|
|
836 |
export_file = st.session_state['portfolio'].copy()
|
837 |
st.session_state['portfolio'] = st.session_state['portfolio'].sort_values(by='median', ascending=False)
|
838 |
with st.form(key='trim_form'):
|
839 |
+
performance_type = st.selectbox("Select Sorting variable", ['median', 'Finish_percentile'])
|
840 |
+
own_type = st.selectbox("Select trimming variable", ['Own', 'Weighted Own'])
|
841 |
|
842 |
submitted = st.form_submit_button("Trim")
|
843 |
if submitted:
|