Multichem commited on
Commit
a586f3f
·
1 Parent(s): fcb4a09

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -64,6 +64,8 @@ def init_baselines():
64
  raw_display = raw_display[1:]
65
  raw_display = raw_display.reset_index(drop=True)
66
  raw_display.replace('', np.nan, inplace=True)
 
 
67
  raw_display = raw_display.apply(pd.to_numeric, errors='coerce').fillna(raw_display)
68
  game_model = raw_display[raw_display['Injury and Rotation Adjusted Win %'] != ""]
69
  game_model['Team Date'] = game_model['Team'] + " " + game_model['Date']
 
64
  raw_display = raw_display[1:]
65
  raw_display = raw_display.reset_index(drop=True)
66
  raw_display.replace('', np.nan, inplace=True)
67
+ cols_to_check = ['Win %', 'Injury and Rotation Adjusted Win %']
68
+ raw_display.loc[:, cols_to_check] = raw_display.loc[:, cols_to_check].replace({'%': ''}, regex=True).astype(float) / 100
69
  raw_display = raw_display.apply(pd.to_numeric, errors='coerce').fillna(raw_display)
70
  game_model = raw_display[raw_display['Injury and Rotation Adjusted Win %'] != ""]
71
  game_model['Team Date'] = game_model['Team'] + " " + game_model['Date']