-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathmatch_analysis.py
More file actions
231 lines (200 loc) · 5.45 KB
/
match_analysis.py
File metadata and controls
231 lines (200 loc) · 5.45 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
''' IPL Match Analysis '''
import plotly.graph_objects as go
import plotly.colors as pc
color = pc.sequential.Mint
def dismissals(data, theme=None):
''' Distribution of Dismissal Types '''
if theme is None:
theme = color
fig = go.Figure()
fig.add_trace(
go.Pie(
labels = data.index,
values = data.values,
name='Dismissal',
hole=0.4,
marker=dict(colors=theme[:len(data)])
)
)
fig.update_layout(
title = 'Dismissals',
xaxis_title = 'Dismissal Type',
yaxis_title = 'Count',
legend_title = 'Dismissal Type',
plot_bgcolor = 'rgba(0,0,0,0)',
legend = dict(
x = 0.5,
y = -0.2,
orientation = 'h',
xanchor = 'center'
)
)
return fig
def boundaries(data, theme=None):
''' Distribution of Boundaries Scored '''
if theme is None:
theme = color
fig = go.Figure()
fig.add_trace(
go.Pie(
labels = data[['4s', '6s']].columns,
values = [data['4s'].sum(), data['6s'].sum()],
name='Boundary',
hole=0.4,
marker=dict(colors=theme[:len(data)]),
)
)
fig.update_layout(
title = 'Boundaries',
xaxis_title = 'Boundary Type',
yaxis_title = 'Count',
legend_title = 'Boundary Type',
plot_bgcolor = 'rgba(0,0,0,0)',
legend = dict(
x = 0.5,
y = -0.2,
orientation = 'h',
xanchor = 'center'
)
)
return fig
def batsman_perf(data, theme=None):
''' Batsman Performance: Runs and Strike Rate '''
if theme is None:
theme = color
fig = go.Figure()
fig.add_trace(
go.Bar(
x = data['batsman'],
y = data['r'],
name = 'Runs',
yaxis = 'y', # left y-axis
marker_color = theme[:data.shape[0]]
)
)
fig.add_trace(
go.Scatter(
x = data['batsman'],
y = data['sr'],
name = 'Strike Rate',
mode = 'lines',
yaxis = 'y2', # right y-axis
marker_color = 'blue'
)
)
fig.update_layout(
title_text = 'Batsman Performance (Runs and Strike Rate)',
xaxis = dict(
title = 'Batsman'
),
yaxis=dict(
title = 'Runs'
),
yaxis2=dict(
title='Strike Rate',
overlaying='y',
side='right',
rangemode = 'tozero'
),
legend = dict(
x = 0.5,
y = 1.1,
orientation = 'h',
xanchor = 'center'
),
plot_bgcolor = 'rgba(0,0,0,0)'
)
return fig
def bowler_perf(data, theme=None):
''' Bowler Performance: Runs Conceded including Extras and Economy Rate '''
if theme is None:
theme = color
fig = go.Figure()
fig.add_trace(
go.Bar(
x = data['bowler'],
y = data['r'],
name = 'Runs Conceded',
yaxis = 'y', # left y-axis
marker_color = theme[:data.shape[0]]
)
)
fig.add_trace(
go.Bar(
x = data['bowler'],
y = data['extras'],
name = 'extras',
yaxis = 'y', # left y-axis
marker_color = 'red'
)
)
fig.add_trace(
go.Scatter(
x = data['bowler'],
y = data['eco'],
name = 'Economy Rate',
mode = 'lines',
yaxis = 'y2', # right y-axis
marker_color = 'blue'
)
)
fig.update_layout(
barmode = 'group',
title = 'Bowler Performance (Runs Conceded including Extras)',
xaxis_title = 'Bowler',
plot_bgcolor = 'rgba(0,0,0,0)',
xaxis = dict(
title = 'Bowler'
),
yaxis_title = 'Runs',
yaxis = dict(
title = 'Runs Conceded'
),
yaxis2 = dict(
title = 'Economy Rate',
overlaying = 'y',
side = 'right',
rangemode = 'tozero'
),
legend_title = 'Runs Conceded and Economy Rate',
legend = dict(
x = 0.5,
y = 1.1,
orientation = 'h',
xanchor = 'center'
)
)
return fig
def fielder_perf(data, theme=None):
''' Fielder Performance: Catches by Catcher vs Batsman '''
if theme is None:
theme = color
catch_df = data.groupby(['catcher', 'batsman']).size().reset_index(name='catches')
pivot_df = catch_df.pivot(index='catcher', columns='batsman', values='catches').fillna(0)
fig = go.Figure()
for batsman in pivot_df.columns:
fig.add_trace(
go.Bar(
x = pivot_df.index,
y = pivot_df[batsman],
name = batsman,
marker_color = theme[:len(pivot_df)],
hovertemplate = f'Batsman: {batsman}<extra></extra>'
)
)
fig.update_layout(
title = 'Catches by Fielder (catcher) vs Batsman',
xaxis_title = 'Catcher',
yaxis_title = 'Number of Catches',
barmode = 'stack',
legend_title = 'Batsman',
legend = dict(
x = 0.5,
y = 1.1,
orientation = 'h',
xanchor = 'center'
),
showlegend = False,
plot_bgcolor = 'rgba(0,0,0,0)'
)
return fig