BraydenMoore commited on
Commit
fa670d6
·
1 Parent(s): 5fe302c
Files changed (1) hide show
  1. Source/Predict/predict.py +8 -6
Source/Predict/predict.py CHANGED
@@ -64,17 +64,19 @@ def get_games(week):
64
  def get_one_week(home,away,season,week):
65
  try:
66
  home_df = gbg.loc[((gbg['away_team']==home) | (gbg['home_team']==home)) & (gbg['Season']==season) & (gbg['GP']==week-1)]
67
- home_df = home_df[[i for i in home_df.columns if '.Away' not in i] if home_df['home_team'].item()==home else [i for i in home_df.columns if '.Away' in i]]
 
 
68
  home_df.columns = [i.replace('.Away','') for i in home_df.columns]
69
 
70
  away_df = gbg.loc[((gbg['away_team']==away) | (gbg['home_team']==away)) & (gbg['Season']==season) & (gbg['GP']==week-1)]
71
- away_df = away_df[[i for i in away_df.columns if '.Away' not in i] if away_df['home_team'].item()==away else [i for i in away_df.columns if '.Away' in i]]
 
 
72
  away_df.columns = [i.replace('.Away','') + '.Away' for i in away_df.columns]
73
 
74
- drop_columns = ['game_id', 'Season', 'home_team', 'away_team', 'game_date']
75
- print(home_df.columns)
76
- print(away_df.columns)
77
- df = home_df.merge(away_df.drop(columns=[i+'.Away' for i in drop_columns]), left_on='GP', right_on='GP.Away')
78
  return df
79
  except ValueError:
80
  return pd.DataFrame()
 
64
  def get_one_week(home,away,season,week):
65
  try:
66
  home_df = gbg.loc[((gbg['away_team']==home) | (gbg['home_team']==home)) & (gbg['Season']==season) & (gbg['GP']==week-1)]
67
+ gbg_home_team = home_df['home_team'].item()
68
+ home_df.drop(columns=['game_id','home_team','away_team','Season','game_date'], inplace=True)
69
+ home_df = home_df[[i for i in home_df.columns if '.Away' not in i] if gbg_home_team==home else [i for i in home_df.columns if '.Away' in i]]
70
  home_df.columns = [i.replace('.Away','') for i in home_df.columns]
71
 
72
  away_df = gbg.loc[((gbg['away_team']==away) | (gbg['home_team']==away)) & (gbg['Season']==season) & (gbg['GP']==week-1)]
73
+ gbg_home_team = away_df['home_team'].item()
74
+ away_df.drop(columns=['game_id','home_team','away_team','Season','game_date'], inplace=True)
75
+ away_df = away_df[[i for i in away_df.columns if '.Away' not in i] if gbg_home_team==away else [i for i in away_df.columns if '.Away' in i]]
76
  away_df.columns = [i.replace('.Away','') + '.Away' for i in away_df.columns]
77
 
78
+ df = home_df.merge(away_df, left_on='GP', right_on='GP.Away')
79
+ print(df.columns)
 
 
80
  return df
81
  except ValueError:
82
  return pd.DataFrame()