Multichem commited on
Commit
b0e122b
·
verified ·
1 Parent(s): bed23ec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -79,6 +79,9 @@ with col1:
79
  team_dict = dict(zip(adp_table.Player, adp_table.Team))
80
  proj_dict = dict(zip(adp_table.Player, adp_table.Projection))
81
  diff_dict = dict(zip(adp_table.Player, adp_table.Diff))
 
 
 
82
 
83
  with col2:
84
  stack_hold_container = st.empty()
@@ -92,7 +95,7 @@ with col2:
92
  raw_baselines = adp_table[adp_table['Position'].str.contains('|'.join(pos_var2))]
93
 
94
  for cur_team in team_var2:
95
- working_baselines = raw_baselines
96
  working_baselines = working_baselines[working_baselines['Team'] == cur_team]
97
  order_list = working_baselines['Player']
98
 
 
79
  team_dict = dict(zip(adp_table.Player, adp_table.Team))
80
  proj_dict = dict(zip(adp_table.Player, adp_table.Projection))
81
  diff_dict = dict(zip(adp_table.Player, adp_table.Diff))
82
+
83
+ st.write(proj_dict)
84
+ st.write(diff_dict)
85
 
86
  with col2:
87
  stack_hold_container = st.empty()
 
95
  raw_baselines = adp_table[adp_table['Position'].str.contains('|'.join(pos_var2))]
96
 
97
  for cur_team in team_var2:
98
+ working_baselines = raw_baselines.copy()
99
  working_baselines = working_baselines[working_baselines['Team'] == cur_team]
100
  order_list = working_baselines['Player']
101