Update app.py
Browse files
app.py
CHANGED
@@ -61,7 +61,7 @@ def init_baselines():
|
|
61 |
raw_display.replace('', np.nan, inplace=True)
|
62 |
raw_display = raw_display.apply(pd.to_numeric, errors='coerce').fillna(raw_display)
|
63 |
game_model = raw_display[raw_display['Injury and Rotation Adjusted Win %'] != ""]
|
64 |
-
game_model['Team Date'] = game_model['Team'] + " " + game_model['Date']
|
65 |
|
66 |
worksheet = sh.worksheet('SeasonExport')
|
67 |
raw_display = pd.DataFrame(worksheet.get_values())
|
|
|
61 |
raw_display.replace('', np.nan, inplace=True)
|
62 |
raw_display = raw_display.apply(pd.to_numeric, errors='coerce').fillna(raw_display)
|
63 |
game_model = raw_display[raw_display['Injury and Rotation Adjusted Win %'] != ""]
|
64 |
+
game_model['Team Date'] = game_model['Team'] + " " + game_model['Date']
|
65 |
|
66 |
worksheet = sh.worksheet('SeasonExport')
|
67 |
raw_display = pd.DataFrame(worksheet.get_values())
|