Spaces:
Running
Running
James McCool
commited on
Commit
·
5cf9a04
1
Parent(s):
9012c48
added over_pay and under_pay to market pull
Browse files
app.py
CHANGED
@@ -97,7 +97,7 @@ def init_baselines():
|
|
97 |
cursor = collection.find()
|
98 |
|
99 |
raw_display = pd.DataFrame(list(cursor))
|
100 |
-
market_props = raw_display[['Name', 'Position', 'Projection', 'PropType', 'OddsType']]
|
101 |
|
102 |
return game_model, overall_stats, timestamp, prop_frame, prop_trends, pick_frame, market_props
|
103 |
|
|
|
97 |
cursor = collection.find()
|
98 |
|
99 |
raw_display = pd.DataFrame(list(cursor))
|
100 |
+
market_props = raw_display[['Name', 'Position', 'Projection', 'PropType', 'OddsType', 'over_pay', 'under_pay']]
|
101 |
|
102 |
return game_model, overall_stats, timestamp, prop_frame, prop_trends, pick_frame, market_props
|
103 |
|