-
Notifications
You must be signed in to change notification settings - Fork 0
/
badstats.py
33 lines (27 loc) · 952 Bytes
/
badstats.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
import pandas as pd
def returnlYear(year):
reg_season = pd.read_csv("./data/RegularSeasonDetailedResults.csv", index_col = 4)
teams = pd.read_csv("./data/Teams.csv", index_col = 0)
team_mappings = pd.DataFrame.to_dict(teams)
team_mappings = team_mappings['Team_Name']
reg_season.rename(team_mappings, inplace = True)
reg_season = reg_season.sort_index()
table = None
reg_season = reg_season[reg_season['Season'] == year]
j = ""
k = 0
for i in reg_season.index:
if k == 0:
k = 1
table = returnRow(i, reg_season)
j = i
if k == 1 and i!=j:
table = pd.concat([table, returnRow(i, reg_season)])
j = i
return table;
def returnRow(team_name, reg_season):
team_data = reg_season.loc[[team_name],:]
avg = (team_data.mean()).to_frame()
avg = avg.rename(columns = {0:team_name})
avg = avg.transpose()
return avg