James McCool commited on
Commit
b34c0d7
·
1 Parent(s): 615c09a

display the damn pick6 frame

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -672,7 +672,9 @@ with tab5:
672
  if game_select_var == 'Pick6':
673
  final_outcomes = final_outcomes.drop_duplicates(subset=['Player', 'Prop Type'])
674
  final_outcomes = final_outcomes.sort_values(by='Edge', ascending=False)
675
-
 
 
676
  with df_hold_container:
677
  df_hold_container = st.empty()
678
  st.dataframe(final_outcomes.style.background_gradient(axis=0).background_gradient(cmap='RdYlGn').format(precision=2), use_container_width = True)
 
672
  if game_select_var == 'Pick6':
673
  final_outcomes = final_outcomes.drop_duplicates(subset=['Player', 'Prop Type'])
674
  final_outcomes = final_outcomes.sort_values(by='Edge', ascending=False)
675
+ with st.container():
676
+ df_hold_container = st.empty()
677
+ st.dataframe(pick_frame.style.background_gradient(axis=0).background_gradient(cmap='RdYlGn').format(precision=2), use_container_width = True)
678
  with df_hold_container:
679
  df_hold_container = st.empty()
680
  st.dataframe(final_outcomes.style.background_gradient(axis=0).background_gradient(cmap='RdYlGn').format(precision=2), use_container_width = True)