Spaces:
Running
Running
James McCool
commited on
Commit
·
e11f21a
1
Parent(s):
def15cf
Adjust position limiters for QB and TE in Streamlit app, reducing maximum values from 1 to 0.9 to enhance accuracy in player evaluations for Superflex formats.
Browse files- src/streamlit_app.py +2 -2
src/streamlit_app.py
CHANGED
@@ -380,10 +380,10 @@ def assign_vorp_scoring(frame: pd.DataFrame, halfPpr_rv: dict, custom_rv: dict,
|
|
380 |
rv_type = 'ppr'
|
381 |
|
382 |
if league_settings['QB'] > 1:
|
383 |
-
pos_vorp_limiters['QB'] =
|
384 |
|
385 |
if league_settings['TE'] > 1:
|
386 |
-
pos_vorp_limiters['TE'] =
|
387 |
|
388 |
vorp_frame = pd.DataFrame()
|
389 |
for positions in ['QB', 'RB', 'WR', 'TE']:
|
|
|
380 |
rv_type = 'ppr'
|
381 |
|
382 |
if league_settings['QB'] > 1:
|
383 |
+
pos_vorp_limiters['QB'] = .9
|
384 |
|
385 |
if league_settings['TE'] > 1:
|
386 |
+
pos_vorp_limiters['TE'] = .9
|
387 |
|
388 |
vorp_frame = pd.DataFrame()
|
389 |
for positions in ['QB', 'RB', 'WR', 'TE']:
|