-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame_profile_generator_file.py
178 lines (152 loc) · 5.68 KB
/
game_profile_generator_file.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#Game Profile Generator
#BrainyBet component
#Sam Rackey
#2019
import csv
from statistics import mean
import bettor
def main():
day = "bet_" + bettor.getDay()
bettor.pullData(bettor.getDay())
print()
print("generating profiles...")
generate(day,day,day,day,bettor.getDay())
def alt():
days = ['bet_0723']
for day in days:
print()
print("generating profiles for "+day+"...")
generate(day,day,day,day,"0723")
def generate(bFile,pFile,fFile,eFile,oFile):
mlb_batting_ops = {}
mlb_pitching_war = {}
mlb_team_fielding = {}
year = "2019"
#Fill batting dictionary
print("Loading batting data...")
filename = "mlbBattingData\\"+bFile+".csv"
#print()
print("opening ",filename)
with open(filename, mode='r') as mlbBattingFile:
mlb_batting_ops[year] = {}
mlbBatting = csv.DictReader(mlbBattingFile)
currteam = "XXX"
r=0
ops = []
for row in mlbBatting:
if(currteam != row["Tm"]):
currteam = row["Tm"]
r=1
#print()
if(r>0 and r<6):
#print(startYear+y," ",row["Tm"]," #",r,": ",row["OPS"])
ops.append(row["OPS"])
r+=1
if(r == 6):
mlb_batting_ops[year][currteam] = tuple(ops)
ops = []
filename = "mlbPitchingData\\"+pFile+".csv"
#print()
print("opening ",filename)
with open(filename, mode='r') as mlbPitchingFile:
mlb_pitching_war[year] = {}
mlbPitching = csv.DictReader(mlbPitchingFile)
currteam = "XXX"
r=0
war = []
for row in mlbPitching:
if(currteam != row["Tm"]):
currteam = row["Tm"]
r=1
#print()
if(r>0 and r<4):
#print(startYear+y," ",row["Tm"]," #",r,": ",row["WAR"])
war.append(row["WAR"])
r+=1
if(r == 4):
mlb_pitching_war[year][currteam] = tuple(war)
war = []
#Fill fielding dictionary
filename = "mlbFieldingData\\"+fFile+".csv"
#print()
print("opening ",filename)
with open(filename, mode='r') as mlbFieldingFile:
mlb_team_fielding[year] = {}
mlbFielding = csv.DictReader(mlbFieldingFile)
for row in mlbFielding:
#print(startYear+y," ",row["Tm"]," DefEff: ",row["DefEff"],", Fld%: ",row["Fld%"])
mlb_team_fielding[year][row["Tm"]] = (row["DefEff"],row["Fld%"])
#Generate per-game data
print("writing game_profiles.csv...")
game_profile_file = open("profiles\\"+oFile+"_profiles.csv","w")
game_profile_file.write("HOPS1,HOPS2,HOPS3,HOPS4,HOPS5,HWAR1,HWAR2,HWAR3,HFIELD1,HFIELD2,HWINYTD,HWINL5")
game_profile_file.write(",HELO,AOPS1,AOPS2,AOPS3,AOPS4,AOPS5,AWAR1,AWAR2,AWAR3,AFIELD1,AFIELD2,AWINYTD,AWINL5,AELO,HRES,ARES")
game_profile_file.write(",HTEAM,ATEAM,MONTH,DAY,YEAR\n")
print("opening mlb_elo_training.csv")
with open("mlb-elo\\"+eFile+".csv", mode='r') as mlb_elo_file:
mlb_elo = csv.DictReader(mlb_elo_file)
currentYear = -1
records = {}
for row in reversed(list(mlb_elo)):
if(row["season"] != currentYear):
currentYear = row["season"]
records[currentYear] = {}
homeT = row["team1"]
awayT = row["team2"]
month = row["date"][5:7]
day = row["date"][8:10]
HRes = 0.0
ARes = 0.0
#determine YTD wins and last 5 wins
if(row["score1"] != "" and int(row["score1"]) > int(row["score2"])):
HRes = 1.0
ARes = 0.0
elif(row["score1"] != "" and int(row["score1"]) < int(row["score2"])):
HRes = 0.0
ARes = 1.0
if(homeT in records[currentYear] and row["score1"] != ""):
records[currentYear][homeT].append(HRes)
elif(row["score1"] != ""):
records[currentYear][homeT] = []
records[currentYear][homeT].append(HRes)
if(awayT in records[currentYear] and row["score1"] != ""):
records[currentYear][awayT].append(HRes)
elif(row["score1"] != ""):
records[currentYear][awayT] = []
records[currentYear][awayT].append(HRes)
#get rest of information
home_ops = mlb_batting_ops[str(currentYear)][homeT]
away_ops = mlb_batting_ops[str(currentYear)][awayT]
home_war = mlb_pitching_war[str(currentYear)][homeT]
away_war = mlb_pitching_war[str(currentYear)][awayT]
home_fie = mlb_team_fielding[str(currentYear)][homeT]
away_fie = mlb_team_fielding[str(currentYear)][awayT]
home_ytd = mean(records[currentYear][homeT])
away_ytd = mean(records[currentYear][awayT])
if(row["score1"] != "" and len(records[currentYear][awayT])>5 and len(records[currentYear][homeT])>5):
home_l5g = mean(records[currentYear][homeT][len(records[currentYear][homeT])-6:-1])
away_l5g = mean(records[currentYear][awayT][len(records[currentYear][awayT])-6:-1])
elif(row["score1"] == ""):
home_l5g = mean(records[currentYear][homeT][-5:])
away_l5g = mean(records[currentYear][awayT][-5:])
else:
home_l5g = 0.0
away_l5g = 0.0
home_elo = row["rating_prob1"]
away_elo = row["rating_prob2"]
#compile into line,write to file
line = str(home_ops[0])+","+str(home_ops[1])+","+str(home_ops[2])+","+str(home_ops[3])+","+str(home_ops[4])+","
line2 = str(home_war[0])+","+str(home_war[1])+","+str(home_war[2])+","+str(home_fie[0])+","+str(home_fie[1])+","
line3 = str(home_ytd)+","+str(home_l5g)+","+str(home_elo)+","+str(away_ops[0])+","+str(away_ops[1])+","+str(away_ops[2])+","
line4 = str(away_ops[3])+","+str(away_ops[4])+","+str(away_war[0])+","+str(away_war[1])+","+str(away_war[2])+","
line5 = str(away_fie[0])+","+str(away_fie[1])+","+str(away_ytd)+","+str(away_l5g)+","+str(away_elo)+","
line6 = str(HRes)+","+str(ARes)+","+str(homeT)+","+str(awayT)+","+str(month)+","+str(day)+","+str(currentYear)+"\n"
#if(int(oFile[0:2]) == int(month) and int(oFile[2:4]) == int(day)):
game_profile_file.write(line)
game_profile_file.write(line2)
game_profile_file.write(line3)
game_profile_file.write(line4)
game_profile_file.write(line5)
game_profile_file.write(line6)
print("Successfully generated game profiles!")
#alt()