Quantitative Assessment of Player Performance and Winner Prediction in ODI Cricket

Total Page:16

File Type:pdf, Size:1020Kb

Quantitative Assessment of Player Performance and Winner Prediction in ODI Cricket Quantitative Assessment of Player Performance and Winner Prediction in ODI Cricket Thesis submitted in partial fulfillment of the requirements for the degree of Masters of Science by Research in Computer Science and Engineering by Madan Gopal Jhanwar 201202018 [email protected] International Institute of Information Technology Hyderabad - 500032, INDIA JULY 2017 Copyright c Madan Gopal Jhanwar, 2017 All Rights Reserved To my Father, for his unconditional love and support iv Acknowledgements IIIT-Hyderabad has been a family to me for the last 5 years. During this journey, I have met several people each of whom have taught me a new thing every day. As I submit my thesis today, I feel indebted to a lot of people around me without whom my stay at IIIT would not have been such a great memory. First of all, I would like to thank my guide, Dr. Vikram Pudi, who has been an excellent mentor throughout my research journey. He not only gave me freedom to explore my passions but also supported me when I showed interest in cricket analytics. His guidance not only helped me in my research but also made me a better person. I don’t have enough words to thank my father, mother and my family, who have shown immense faith and trust in me. They have given me continuous encouragement throughout my years of study. I couldn’t have accomplished it without the constant support from many of my friends. Saksham, thanks for motivating me in the early days of my research and helping me in getting started. Arjit, I have always seen a great friend in you. Thanks for going beyond the limits to always help me. Our discussions on cricket have given me many insights into the game. Remya, thanks for being around and always helping and motivating me. Nirat, thank you for putting in all the time and efforts. I have learnt the value of friendship and sharing from you guys. Arihant, Abhishek, Junaid, Shipra, Somya, Kalpit, Mohit, Shubham, Sarfaraz, Nazrul, Sanatan, Rishab and Shashank, a special thanks to you all. Thank you for motivating me all along and mak- ing the college life a lively one. I would also like to thank all my lab mates – Jaspreet, Tejas, Vamshi, Saket and Soumyajit, for the wonderful interactions and fun work sessions. Last, but not the least, thanks to IIIT community for giving me an inspiring environment and loads of opportunities to grow. v Abstract The statistics of professional sports, including players and teams, provide numerous opportunities for research. Cricket is one of the most popular team sports, with billions of fans all over the world. In this thesis, we address two problems related to the One Day International (ODI) format of the game. First, we propose a novel method to predict the winner of ODI cricket matches using a team-composition based approach at the start of the match. Second, we present a method to quantitatively assess the performances of individual players in a match of ODI cricket which incorporates the game situations under which the players performed. The player performances are further used to predict the player of the match award. Players are the fundamental unit of a team. Players of one team work against the players of the opponent team in order to win a match. The strengths and abilities of the players of a team play a key role in deciding the outcome of a match. However, a team changes its composition depending on the match conditions, venue, and opponent team, etc. Therefore, we propose a novel dynamic approach which takes into account the varying strengths of the individual players and reflects the changes in player combinations over time. Our work suggests that the relative team strength between the competing teams forms a distinctive feature for predicting the winner. Modeling the team strength boils down to modeling individual players’ batting and bowling performances, forming the basis of our approach. We use career statistics as well as the recent performances of a player to model him. Using the relative strength of one team versus the other, along with two player-independent features, namely, the toss outcome and the venue of the match, we evaluate multiple supervised machine learning algorithms to predict the winner of the match. We show that, for our approach, the k-Nearest Neighbor (kNN) algorithm yields better results as compared to other classifiers. Players have multiple roles in a game of cricket, predominantly as batsmen and bowlers. Over the generations, statistics such as batting and bowling averages, and strike and economy rates have been used to judge the performance of individual players. These measures, however, do not take into consideration the context of the game in which a player performed across the course of a match. Further, these types of statistics are incapable of comparing the performance of players across different roles. Therefore, we present an approach to quantitatively assess the performances of individual players in a single match of ODI cricket. We have developed a new measure, called the Work Index, which represents the amount of work that is yet to be done by a team to achieve its target. Our approach incorporates game situations and the team strengths to measure the player contributions. This not only helps us in vi vii evaluating the individual performances, but also enables us to compare players within and across various roles on a common scale. Using the player performances in a match, we predict the player of the match award for the ODI matches played between 2006 and 2016. We have achieved an accuracy of 86.80% for the top-3 positions in predicting the player of the match award, which is superior to previous works and other baseline models. This further proved the validity of our approach. Contents Chapter Page 1 Introduction :::::::::::::::::::::::::::::::::::::::::: 1 1.1 History of Cricket . .1 1.2 The Game of Cricket . .2 1.3 Aim and Contributions . .6 1.4 Thesis Workflow . .7 2 Related Work ::::::::::::::::::::::::::::::::::::::::: 8 2.1 Brief History of Cricket Analytics . .8 2.2 Literature on Winner Prediction . 10 2.3 Literature on Player Modeling . 11 2.4 Literature on Assessing Player Performances . 13 3 Winner Prediction: A Team Composition Based Approach :::::::::::::::::: 15 3.1 Motivation . 15 3.2 Dataset . 16 3.3 Problem Formulation . 18 3.4 Methodology . 20 3.4.1 Modeling Batsmen . 20 3.4.1.1 The Algorithm . 22 3.4.2 Modeling Bowlers . 22 3.4.2.1 The Algorithm . 24 3.4.3 Modeling Teams . 25 3.4.4 Feature Construction . 26 3.5 Experiments and Results . 26 3.5.1 Modeling Batsmen . 27 3.5.1.1 First Match . 28 3.5.1.2 Second Match . 28 3.5.1.3 Third Match . 29 3.5.2 Modeling Bowlers . 30 3.5.2.1 First Match . 30 3.5.2.2 Second Match . 31 3.5.3 Modeling Teams . 31 3.5.4 Prediction Model . 32 3.6 Discussions . 34 viii CONTENTS ix 4 Honest Mirror: Quantitative Assessment of Player Performances ::::::::::::::: 35 4.1 Introduction . 35 4.2 Dataset . 36 4.3 Methodology . 37 4.3.1 Target estimation for first innings . 37 4.3.2 Modeling Players . 39 4.3.2.1 Modeling Teams . 39 4.3.3 Work Index . 40 4.3.4 Assessing player performances . 42 4.4 Applications . 42 4.4.1 Player of the Match . 42 4.4.2 Player Rankings . 44 4.5 Experiments and Results . 44 4.5.1 Target estimation for first innings . 44 4.5.2 Player of the match . 45 4.5.3 Work Index . 47 4.5.4 Ranking Players . 48 4.6 Discussions . 48 5 Conclusions and Future Work ::::::::::::::::::::::::::::::::: 51 5.1 Winner Prediction . 51 5.2 Honest Mirror . 51 List of Figures Figure Page 1.1 A cricket ground and some of the common fielding positions. Source: Cricket-Australia 3 1.2 Dimensions of a cricket pitch and the related terminologies. Source: Australia-Cricket- News ............................................4 3.1 The average number of player changes per match for all the teams in the years 2010- 2014. We can see that on average, a team changes around 2 players per match. Thus, about a fifth of the team changes per match . 16 3.2 The total number of distinct players played for each team in the years 2010-2014. The high number of distinct players (35-50) in a team of 11, shows that the mentioned factors (Section 3.1) are prominent . 17 3.3 Total number of training samples for each team . 18 3.4 Total number of test samples for each team . 19 3.5 Figure depics the overall work-flow of our approach. We model the players into batsmen and bowlers using their career and recent performance statistics, which in-turn helps in modeling teams. Using toss outcome and venue details, along with the relative team strength as the features, we use supervised models to predict the winner of the match. 21 3.6 Figure depicts the accuracy for different supervised models. As it can be seen, kNN, with k=4, yields best results for our approach to predict the winner of a match. 32 3.7 F-Score comparison for different models. 33 3.8 Figure shows the accuracy of our model for different countries. It depicts that some countries like New Zealand depend heavily on their front-line players, while other coun- tries like South Africa do not. 34 4.1 Average defendable scores in different countries. 38 4.2 Total number of wickets fell in each over in our dataset.
Recommended publications
  • Arxiv:1908.07372V1 [Physics.Soc-Ph] 12 Aug 2019 We Introduce the Concept of Using SDE for the Game of Cricket Using a Very Rudimentary Model in Subsection 2.1
    Stochastic differential theory of cricket Santosh Kumar Radha Department of physics *Case Western Reserve University Abstract A new formalism for analyzing the progression of cricket game using Stochastic differential equa- tion (SDE) is introduced. This theory enables a quantitative way of representing every team using three key variables which have physical meaning associated with them. This is in contrast with the traditional system of rating/ranking teams based on combination of different statical cumulants. Fur- ther more, using this formalism, a new method to calculate the winning probability as a progression of number of balls is given. Keywords: Stochastic Differential Equation, Cricket, Sports, Math, Physics 1. Introduction Sports, as a social entertainer exists because of the unpredictable nature of its outcome. More recently, the world cup final cricket match between England and New Zealand serves as a prime example of this unpredictability. Even when one team is heavily advantageous, there is a chance that the other team will win and that likelihood varies by the particular sport as well as the teams involved. There have been many studies showing that unpredictability is an unavoidable fact of sports [1], despite which there has been numerous attempts at predicting the outcome of sports [5]. Though different, there has been considerable efforts directed towards predicting the future of other fields including financial markets [4], arts and entertainment award events [6], and politics [7]. There has been a wide range of statistical analysis performed on sports, primarily baseball and football[8,2,3] but very few have been applied to understand cricket. Complex system analysis[9], machine learning models[10, 12] and various statical data analysis[13, 14, 15, 16, 17] have been used in previous studies to describe and analyze cricket.
    [Show full text]
  • Winning and Score Predictor (Wasp) Tool
    WINNING AND SCORE PREDICTOR (WASP) TOOL 1 2 3 Anik Shah , Dhaval Jha , Jaladhi Vyas 1,2Department of Computer Science & Engineering, Nirma University, Ahmadabad, Gujarat, (India) ABSTRACT Winning and Score Predictor (WASP) is a calculation tool used in cricket to predict the scores and possible results of a limited over match format, e.g. One Day and Twenty-20 (T-20) matches. The prediction is based on the factors such as the ease of scoring on the day, according to the pitch, weather and boundary size. For the team batting first, it gives the prediction of the final total. For the team batting second, it gives the probability of the chasing team winning, although it does not take the match situation into the equation. Predictions are based on the average team playing against the average team in those conditions. Here we have proposed an advanced and modified method for calculating the score. Keywords: Dynamic Programming, Predictor tool, ODIs, T-20, WASP. I. INTRODUCTION For years while watching limited overs cricket, we have seen projected scores at different intervals being displayed on our television screens. But in one of the match played between New Zeland and India, something different in the form of WASP (Winning and Score Prediction) was shown. In this paper, we have a look to differentiate between the two and explain what WASP brings to the table. WASP was first introduced by Sky Sport New Zealand on November 2012 during Auckland's HRV Cup Twenty20 game against Wellington. The WASP technique is a product of some extensive research from PhD graduate Dr.
    [Show full text]
  • Man of the Match Free Download
    MAN OF THE MATCH FREE DOWNLOAD Dan Freedman | 208 pages | 05 Jul 2012 | Scholastic | 9781407130583 | English | London, United Kingdom Player of the Match awards (cricket) He received the man of the match award. Jamie How. Michael Holding. Help Learn to edit Community portal Recent changes Upload file. Test your vocabulary with our Man of the Match image quizzes. He also became the first player to be named man of the match in his first two games. Players who score a hat-trickor goalkeepers who keep a clean sheet under pressure often get the award. In Australia, the term " best and fairest " is normally used, both for individual games and season-long awards. Mike Gatting. In one match held on 3 Aprilthe whole team from New Zealand was awarded the Men of the Match award. Dilip Vengsarkar. Najeeb Tarakai. This tradition originated in the s as a promotion for a "Three Star" brand of gasoline. In another interesting match held on 3 Aprilthe whole New Zealand team was awarded the Man of the Match award by adjudicator Basil Butcher who pronounced it a team performance. England won the toss and elected to bat. Kyle Mills. We Man of the Match appreciate your support. Javagal Srinath. Get our free widgets. BETA Add a definition. Graeme Smith. Last updated: 19 January [8]. Media outlets provide immediate, unofficial recognition that is largely honorary, often on a 5—4—3—2—1 or 3—2—1 voting basis. Sri Lanka. Wayne Phillips. He Man of the Match later named man of the match. Instead, other leagues may issue awards to one player who performed best in the game.
    [Show full text]
  • Review to the Duckworth-Lewis Method Using Data Mining Techniques
    Imperial Journal of Interdisciplinary Research (IJIR) Vol-2, Issue-5, 2016 ISSN: 2454-1362, http://www.onlinejournal.in Review to the Duckworth-Lewis Method Using Data Mining Techniques Rohan Brahme1*, Roshan Birar2, Poonam Kadnar3 & Prof. Suruchi Malao4 1,2,3,4Department of Computer Engineering, K. K. Wagh Institute of Engg. Education & Research, Savitribai Phule Pune University, India Abstract- The Duckworth - Lewis system represents mathematical formulation used to get a target score B. Duckworth-Lewis Method for cricket matches interrupted by bad weather Two British statisticians Frank Duckworth and conditions. The Duckworth-Lewis (D/L) method Tony Lewis developed their Method called considers only two factors to provide updated target Duckworth-Lewis (D/L) method which is nothing but i.e. number of runs which can be scored in the a statistical method used to predict the target score of remaining innings as a function of the number of the team batting second in a limited overs game which overs remaining and the number of wickets in hand. is interrupted by unavoidable circumstances. The D/L We will be using WEKA tool to find bias in current method, a system based on mathematical model D/L system and capably illustrate those. considers only two resources – wickets left and overs Duckworth Lewis system has observed to be remaining. When overs are lost, setting an adjusted biased towards the team batting first and the team target is not as simple as to reduce the batting team’s winning the toss from the scenarios like interruption target proportionally, because a team batting second of the game for multiple times in same match and fall with wickets in hand can be expected to play more wickets in death overs while batting second.
    [Show full text]
  • NDCA Rules of Competition and Fixtures Booklet 2013/2014
    NDCA Rules of Competition and Fixtures Booklet 2013/2014 Table of Contents 1 NDCA Office Bearers and Club Contacts 2013/2014 4 NDCA Office Bearers 4 Club Contact Details 5 Wet Weather Liaison Officers 7 NDCA Standing Committees 8 Newcastle Cricket Contacts 9 The Preamble 10 Rules of Competition 12 Part 1 – Competition 12 1. Competitions 2. Competition Formats and Dates of Fixtures 3. Management of Competitions 4. Allocation of Grounds and Appeal as to allocated venue 5. Alterations to Fixtures 6. Procedure for Notification of Cancellation of Fixture due to Wet Weather 7. Forfeitures 8. Playing Attire Part 2 – Administrative Requirements 14 9. Entry of Results 10. Captains Reports 11. Fees and Accounts Part 3 – Point scores 16 12. Points 13. Club Championship 14. Premiers 15. Calculation of Quotients 16. Calculation of Net Run Rate Part 4 – Qualification and Registration of Players 18 17. Registration of Players 18. Qualification of Players 19. Replacement Players 20. Qualification of Players for Semi Finals and Finals Part 5 – Playing Conditions 22 1 21. Laws, Hours and other Conditions of Play 22. Follow On 23. Playing Conditions for One (1) Day Fixtures – (Lower Grades) 24. General Provisions Regarding Umpires 25. Local Laws 26. Boundaries 27. Restrictions - Young Bowlers 28. Semi-Finals and Finals Part 6 – Facilities 33 29. Compulsory Covers 30. Operation of Scoreboards and Sightscreens 31. Equipment for Grounds Part 7 – Code of Behaviour 34 32. Code of Behaviour Playing Conditions for One (1) Day Fixtures in 1st Grade (Tom Locker Cup) and Under 21 Competition 37 1. Duration of Fixtures 2.
    [Show full text]
  • Race and Cricket: the West Indies and England At
    RACE AND CRICKET: THE WEST INDIES AND ENGLAND AT LORD’S, 1963 by HAROLD RICHARD HERBERT HARRIS Presented to the Faculty of the Graduate School of The University of Texas at Arlington in Partial Fulfillment of the Requirements for the Degree of DOCTOR OF PHILOSOPHY THE UNIVERSITY OF TEXAS AT ARLINGTON August 2011 Copyright © by Harold Harris 2011 All Rights Reserved To Romelee, Chamie and Audie ACKNOWLEDGEMENTS My journey began in Antigua, West Indies where I played cricket as a boy on the small acreage owned by my family. I played the game in Elementary and Secondary School, and represented The Leeward Islands’ Teachers’ Training College on its cricket team in contests against various clubs from 1964 to 1966. My playing days ended after I moved away from St Catharines, Ontario, Canada, where I represented Ridley Cricket Club against teams as distant as 100 miles away. The faculty at the University of Texas at Arlington has been a source of inspiration to me during my tenure there. Alusine Jalloh, my Dissertation Committee Chairman, challenged me to look beyond my pre-set Master’s Degree horizon during our initial conversation in 2000. He has been inspirational, conscientious and instructive; qualities that helped set a pattern for my own discipline. I am particularly indebted to him for his unwavering support which was indispensable to the inclusion of a chapter, which I authored, in The United States and West Africa: Interactions and Relations , which was published in 2008; and I am very grateful to Stephen Reinhardt for suggesting the sport of cricket as an area of study for my dissertation.
    [Show full text]
  • Rules Will Be in Effect (Except Free Hit)
    TENNISBALL CRICKET ASSOCIATION P a g e | 1 2016 TCA Confidential| BAY AREA CHAPTER 2016 FLT+ Copyright © 2003-2016 by Tennisball Cricket Association. All rights reserved. 870 Corriente Point Dr, Redwood City, CA 94065 ICC 2000 Code 2nd Edition – 2003 are Copyright of Marylebone Cricket Club (MCC). No part of this document may be reproduced in any form without prior written permission of the copyright holder. The information contained herein and on the website and on other communique of TCA, including but not limited to member e-mails, e-mail aliases mentioned in this document are properties of TCA. Unauthorized use of this property or disclosure of any information without prior written approval of the TCA constitutes a criminal offense. TCA reserve the right to make changes to this document without notice and without incurring any liability. The information is provided in this document “as is” and is subject to change without notice. P a g e | 2 2016 TCA Confidential| REGISTRATION AND MEMBERSHIP Registration Deadline: Sep 4, 2016 (via web document) . Registration documents can be found here: http://tennisballcricket.com/2016-registration . Regular Mail: TCA, 870 Corriente Point Dr, Redwood City, CA 94065 . Email: [email protected] . FEE: $350/team (FLT+ tournament only) TOURNAMENT SUMMARY Format Max # of Teams: 48 Round Robin Grouping: 12 groups (A to L) of 4 teams each. Team will play across groups. Groups: A vs L B vs K C vs J D vs I E vs H F vs G After Round if the points are the same, the tie breaker will be Number of wins than Ties than Losses than DRR than Rank at start of round.
    [Show full text]
  • Roster-Based Optimisation for Limited Overs Cricket
    Roster-Based Optimisation for Limited Overs Cricket by Ankit K. Patel A thesis submitted to the Victoria University of Wellington in fulfilment of the requirements for the degree of Master of Science in Statistics and Operations Research. Victoria University of Wellington 2016 Abstract The objective of this research was to develop a roster-based optimisation system for limited overs cricket by deriving a meaningful, overall team rating using a combination of individual ratings from a playing eleven. The research hypothesis was that an adaptive rating system ac- counting for individual player abilities, outperforms systems that only consider macro variables such as home advantage, opposition strength and past team performances. The assessment of performance is observed through the prediction accuracy of future match outcomes. The expec- tation is that in elite sport, better teams are expected to win more often. To test the hypothesis, an adaptive rating system was developed. This framework was a combination of an optimisa- tion system and an individual rating system. The adaptive rating system was selected due to its ability to update player and team ratings based on past performances. A Binary Integer Programming model was the optimisation method of choice, while a modified product weighted measure (PWM) with an embedded exponentially weighted moving average (EWMA) functionality was the adopted individual rating system. The weights for this system were created using a combination of a Random Forest and Analytical Hierarchical Process. The model constraints were objectively obtained by identifying the player’s role and performance outcomes a limited over cricket team must obtain in order to increase their chances of winning.
    [Show full text]
  • Nicholas Doherty Disc 2.Pdf
    NICHOLAS DOHERTY 05002524 SCHOOL OF SPORT U.W.I.C. A COMPARATIVE ANALYSIS OF THE DIFFERENCES BETWEEN FRONT-ON AND SIDE-ON FAST BOWLING TECHNIQUES AT THE ELITE LEVEL OF CRICKET. WHAT ARE THE DIFFERENCES IN TERMS OF OVERALL PERFORMANCE INCLUDING LINE AND LENGTH, ECONOMY RATES, BOWLING AVERAGE AND WICKETS PER MATCH BETWEEN INTERNATIONAL BOWLERS USING DIFFERENT BOWLING TECHNIQUES? TABLE OF CONTENTS Page No. 1 INTRODUCTION 1.1 General Introduction 1 1.2 Aim of the Study 7 1.3 Hypothesis 8 1.4 Rationale for the Problem 8 1.5 Limitations 10 1.6 Delimitations 10 2 REVIEW OF LITERATURE 2.1 Introduction to Notational Analysis 11 2.2 An Historical Perspective – Hand and Computer Analysis 13 2.2.1 Computerised Notation Systems 15 2.3 Notational Analysis and Cricket 16 2.4 Notational Analysis Studies on One Day international Cricket 21 2.5 performance Indicators in Cricket 22 3 METHODOLOGY 3.1 Equipment 27 3.2 The System 27 3.3 The Procedure 28 3.4 Data Definitions 30 3.5 Matches Analysed 37 3.5 The Bowlers being Analysed 38 3.6 Data Collected 39 3.7 Pilot Studies 39 3.8 Reliability 40 3.9 Data Processing 41 3.10 Data Analysis 41 4 RESULTS 4.1 Reliability Testing 42 4.2 Bowling Analysis 43 4.2.1 Shot Result 43 4.2.2 Lengths Bowled 44 4.2.3 Lines Bowled 45 4.2.4 Shot Type 46 4.2.5 Shot Type and Runs Scored 48 4.2.6 Played and Missed 50 4.2.7 Runs Conceded per Over 51 4.2.8 Wickets per Game and Bowling Average 52 5 DISCUSSION 5.1 Intra-Observer Reliability Test 54 5.2 Statistics 54 5.3 Discussion of the System 55 5.4 Discussion of the Results 57 5.4.1 Shot Result 57 4.4.2 Lengths Bowled 57 4.4.3 Lines Bowled 60 4.4.4 Shot Type 60 4.4.5 Shot Type and Runs Scored 60 4.4.6 Played and Missed 61 4.2.7 Runs Conceded per Over 61 4.2.8 Wickets per Game and Bowling Average 62 6 CONCLUSION 6.1 General Conclusions 63 6.2 Future Recommendations 64 REFERENCES 65 List of Appendices APPENDIX A.
    [Show full text]
  • PLAYING RULES & COMMONLY ASKED QUESTIONS BOWL.Com/RULES
    2019-2020 PLAYING RULES & COMMONLY ASKED QUESTIONS BOWL.com/RULES USBC VISION Our vision is to continue to be the leading authority to the sport, servicing the needs of bowling. USBC MISSION The USBC is the National Governing Body for Bowling. Our mission is to provide services, resources and the standards for the sport. USBC PROMISE Our promise is to celebrate the past, be mindful of the present and ensure bowling’s future through thoughtful research, planning and delivery. TABLE OF CONTENTS USBC Contacts 02 Rule Changes 03 Chapter 1: USBC Introduction 04 Rule 400 - Youth Membership Eligibility 06 Chapter 2: General Playing Rules Rules 1 - 18 09 Chapter 3: Awards Rules 50 - 52 20 Chapter 4: League Rules Rules 100 - 122 23 Chapter 5: Lane Condition Designation Rules 200 - 201 68 Chapter 6: Tournament Rules Rules 300 - 329 70 Chapter 7: Bonding, Burglary and Holdup Insurance Information 85 Chapter 8: Equipment Specifications 88 Chapter 9: American Wheelchair Bowling Association Rules 91 Etiquette Information 96 Additional Equipment Specifications information can be found on BOWL.com Copyright © 2019 by the United States Bowling Congress 19664 8/19 1 USBC United States Bowling Congress 621 Six Flags Drive, Arlington, TX 76011 BOWL.com 800-514-BOWL For Questions About: Email Fax # (817) Association Services [email protected] 385-8260 Bonding [email protected] 385-8260 Coaching [email protected] 385-8261 Collegiate [email protected] 385-8262 Communications [email protected] 385-8262 Convention [email protected]
    [Show full text]
  • MONITORING a CRICKET MATCH IIT Madras April 3, 2016
    MONITORING A CRICKET MATCH IIT Madras April 3, 2016 1. Introduction Various sensors at Accenture used for monitoring Project Development Cycle will record and report the occurrences of various events like over budget, deadline missed, resources overused etc. These recordings can be both numeric and textual with which we try to monitor the project development and performance by a team at Accenture. We believe this is similar to monitoring the performance of the team on strike in the second innings of a cricket match. The team has a target to chase, and at any given point, its resources, used and remaining, are wickets and number of overs. The simplest thing to do is to keep track of the required run rate, and perhaps make a recommendation - which could, for example, be about which batsman should come in next, or whether a player is doing well by “rotating strike”. Such observations and recommendations will also draw upon other information, for example historical strike rate of a player, current form of a player, the state of the pitch and whether the first team is above or below par (as decided by some commentator), the number of overs remaining for key bowlers etc. Such a system could be built given the numerical data associated with each ball as well as the historical data. A more sophisticated system, on the other hand, could extract more information from the text of the commentary, for example when catches are dropped, a ball is mis-fielded, an overthrow, or a change in field placement. Such a system needs data not only in the numeric form, but also in the form of spoken / written text about the match, as well as from the contextual information.
    [Show full text]
  • Cricket Statistics Summary
    Updated 07.31.17 Cricket Statistics Summary 2017 1 SPORTRADAR CRICKET STATISTICS SUMMARY Updated 07.31.17 Series Information Id Name Year Team Information Id Name Type Player Information Batting Style Date of Birth Id Nickname Bowling Style Full Name Venue Information Id Name Match Information Away Team Id Match Day Official – Umpire 1 Id Start Date & Time End Date Name Official – Umpire 2 Full Name Status Home Team Id Official – Referee Full Name Official – Umpire 2 Id Super Over Flag Id Official – Referee Id Results – Outcome Toss Decision Man of the Match – Full Name Official – 3rd Ump Full Name Results – Win by Runs Toss Winner Id Man of the Match - Id Official – 3rd Ump Id Results – Win by Wickets Type Man of the Match – Nickname Official – Umpire 1 Full Name Results – Winning Team Match Lineups Away Team Id Bowling Style Home Team Id Nickname Away Team Name Captain Flag Home Team Name Player Id Away Team Type Date of Birth Home Team Type Substitute Flag Batting Style Full Name Keeper Flag Scorecard Information Batting Team Id Bowling Team Name Current Knock – Sixes Current Over Batting Team Name Bowling Team Type Current Knock – Strike Rate Non-Striker – Full Name Batting Team Type Current Ball Current Knock – Maidens Non-Striker – Id Bowler Full Name Current Inning Current Knock - Overs Non-Striker – Nickname Bowler Id Current Knock – Balls Faced Current Knock – Runs Striker – Full Name Bowler Nickname Current Knock – Fours Current Knock – Runs Per Over Striker – Id Bowling Team Id Current Knock – Runs Current Knock – Wickets Striker
    [Show full text]