Update app.py
Browse files
app.py
CHANGED
@@ -60,7 +60,7 @@ def init_baselines():
|
|
60 |
raw_display = raw_display.reset_index(drop=True)
|
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['
|
64 |
game_model['Team Date'] = game_model['Team'] + " " + game_model['Date'].astype(str)
|
65 |
|
66 |
worksheet = sh.worksheet('SeasonExport')
|
|
|
60 |
raw_display = raw_display.reset_index(drop=True)
|
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'].astype(str)
|
65 |
|
66 |
worksheet = sh.worksheet('SeasonExport')
|