Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -545,14 +545,14 @@ with tab1:
|
|
545 |
})
|
546 |
|
547 |
# Display the summary dataframe
|
548 |
-
st.subheader("
|
549 |
st.dataframe(summary_df.style.format({
|
550 |
-
'
|
551 |
-
'
|
552 |
'Own': '{:.2%}',
|
553 |
'Fantasy': '{:.2f}',
|
554 |
'GPP_Proj': '{:.2f}'
|
555 |
-
}).background_gradient(cmap='RdYlGn', axis=0, subset=['
|
556 |
with st.container():
|
557 |
tab1, tab2, tab3, tab4, tab5, tab6, tab7, tab8, tab9 = st.tabs(['Overall Exposures', 'QB Exposures', 'RB-WR-TE Exposures', 'RB Exposures', 'WR Exposures', 'TE Exposures', 'FLEX Exposures', 'DST Exposures', 'Team Exposures'])
|
558 |
with tab1:
|
|
|
545 |
})
|
546 |
|
547 |
# Display the summary dataframe
|
548 |
+
st.subheader("Winning Frame Statistics")
|
549 |
st.dataframe(summary_df.style.format({
|
550 |
+
'Salary': '{:.2f}',
|
551 |
+
'Proj': '{:.2f}',
|
552 |
'Own': '{:.2%}',
|
553 |
'Fantasy': '{:.2f}',
|
554 |
'GPP_Proj': '{:.2f}'
|
555 |
+
}).background_gradient(cmap='RdYlGn', axis=0, subset=['Salary', 'Proj', 'Own', 'Fantasy', 'GPP_Proj']), use_container_width=True)
|
556 |
with st.container():
|
557 |
tab1, tab2, tab3, tab4, tab5, tab6, tab7, tab8, tab9 = st.tabs(['Overall Exposures', 'QB Exposures', 'RB-WR-TE Exposures', 'RB Exposures', 'WR Exposures', 'TE Exposures', 'FLEX Exposures', 'DST Exposures', 'Team Exposures'])
|
558 |
with tab1:
|