James McCool
commited on
Commit
·
e599376
1
Parent(s):
50fa4f0
Update trimming variable options in app.py: add 'Geomean' to the selection for trimming variable, enhancing user choice in portfolio analysis.
Browse files
app.py
CHANGED
@@ -808,7 +808,7 @@ with tab3:
|
|
808 |
st.info("Make sure you filter before trimming if you want to filter, trimming before a filter will reset your portfolio")
|
809 |
with st.form(key='trim_form'):
|
810 |
performance_type = st.selectbox("Select Sorting variable", ['median', 'Finish_percentile'])
|
811 |
-
own_type = st.selectbox("Select trimming variable", ['Own', 'Weighted Own'])
|
812 |
|
813 |
submitted = st.form_submit_button("Trim")
|
814 |
if submitted:
|
|
|
808 |
st.info("Make sure you filter before trimming if you want to filter, trimming before a filter will reset your portfolio")
|
809 |
with st.form(key='trim_form'):
|
810 |
performance_type = st.selectbox("Select Sorting variable", ['median', 'Finish_percentile'])
|
811 |
+
own_type = st.selectbox("Select trimming variable", ['Own', 'Geomean', 'Weighted Own'])
|
812 |
|
813 |
submitted = st.form_submit_button("Trim")
|
814 |
if submitted:
|