Multichem commited on
Commit
d0dab28
·
1 Parent(s): b8d0525

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -106,16 +106,16 @@ with tab1:
106
  game_model, season_model, seed_probs, title_sims = init_baselines()
107
  split_var1 = st.radio("Would you like to view all teams or specific ones?", ('All', 'Specific Teams'), key='split_var1')
108
  if split_var1 == 'Specific Teams':
109
- team_var1 = st.multiselect('Which teams would you like to include in the tables?', options = game_model['Team'].unique(), key='team_var1')
110
  elif split_var1 == 'All':
111
- team_var1 = game_model.Team.values.tolist()
112
  date_split_var1 = st.radio("Would you like to view all Dates or specific ones?", ('All', 'Specific Dates'), key='date_split_var1')
113
  if date_split_var1 == 'Specific Teams':
114
  date_var1 = st.multiselect('Which Dates would you like to include in the tables?', options = game_model['Date'].unique(), key='date_var1')
115
  elif date_split_var1 == 'All':
116
  date_var1 = game_model.Date.values.tolist()
117
  with col2:
118
- game_display = game_model[game_model['Team'].isin(team_var1)]
119
  game_display = game_display[game_display['Date'].isin(date_var1)]
120
  game_display = game_display.set_index('Team Date')
121
  st.dataframe(game_display.style.background_gradient(axis=0).background_gradient(cmap='RdYlGn').format(precision=2), use_container_width = True)
 
106
  game_model, season_model, seed_probs, title_sims = init_baselines()
107
  split_var1 = st.radio("Would you like to view all teams or specific ones?", ('All', 'Specific Teams'), key='split_var1')
108
  if split_var1 == 'Specific Teams':
109
+ team_var1 = st.multiselect('Which teams would you like to include in the tables?', options = game_model['Acro'].unique(), key='team_var1')
110
  elif split_var1 == 'All':
111
+ team_var1 = game_model.Acro.values.tolist()
112
  date_split_var1 = st.radio("Would you like to view all Dates or specific ones?", ('All', 'Specific Dates'), key='date_split_var1')
113
  if date_split_var1 == 'Specific Teams':
114
  date_var1 = st.multiselect('Which Dates would you like to include in the tables?', options = game_model['Date'].unique(), key='date_var1')
115
  elif date_split_var1 == 'All':
116
  date_var1 = game_model.Date.values.tolist()
117
  with col2:
118
+ game_display = game_model[game_model['Acro'].isin(team_var1)]
119
  game_display = game_display[game_display['Date'].isin(date_var1)]
120
  game_display = game_display.set_index('Team Date')
121
  st.dataframe(game_display.style.background_gradient(axis=0).background_gradient(cmap='RdYlGn').format(precision=2), use_container_width = True)