Spaces:
Sleeping
Sleeping
James McCool
commited on
Commit
·
ddf3ed9
1
Parent(s):
5a3709f
Add baseline initialization for NFL in app.py
Browse filesThis update introduces the initialization of raw data for DraftKings and FanDuel contests by adding the `dk_raw` and `fd_raw` variables. This change sets the stage for improved data handling and analysis in contest simulations.
app.py
CHANGED
@@ -250,6 +250,8 @@ def sim_contest(Sim_size, seed_frame, maps_dict, Contest_Size):
|
|
250 |
|
251 |
return Sim_Winners
|
252 |
|
|
|
|
|
253 |
tab1, tab2 = st.tabs(['Contest Sims', 'Data Export'])
|
254 |
with tab2:
|
255 |
col1, col2 = st.columns([1, 7])
|
|
|
250 |
|
251 |
return Sim_Winners
|
252 |
|
253 |
+
dk_raw, fd_raw = init_baselines('NFL')
|
254 |
+
|
255 |
tab1, tab2 = st.tabs(['Contest Sims', 'Data Export'])
|
256 |
with tab2:
|
257 |
col1, col2 = st.columns([1, 7])
|