Avery McIntyre 1, Joel Brooks 2, John Guttag 2, and Jenna Wiens 1
|
|
|
- Claude Miles
- 9 years ago
- Views:
Transcription
1 Avery McIntyre 1, Joel Brooks 2, John Guttag 2, and Jenna Wiens 1 1 Computer Science Engineering University of Michigan, Ann Arbor, MI 4814 mcintyav, 2 Computer Science and Arti icial Intelligence Lab Massachusetts Institute of Technology Cambridge, MA, 2139 guttag, As the NBA s go-to offensive play, determining how to defend the ball screen is among the most critical decisions faced by NBA coaching staffs. In this paper, we present the construction and application of a tool for automatically recognizing common defensive counters to ball screens. Using SportVU player tracking data and supervised machine learning techniques, we learn a classi ier that labels ball screens according to how they were defended. Applied to data from four NBA seasons, our classi ier identi ied 27,823 screens in total. These labeled data enable novel analyses of defensive strategies. We present observations and trends at both the team and player levels. Our work is a step towards the construction of a coaching assistance tool for analyzing one of the game s most important actions. With half of Stephen Curry s 25 three-pointers during the 215 NBA Finals involving pick and rolls, inding an effective counter to the ball screen clearly remains a vexing matter for defenses. The momentary havoc caused by the screen requires coordination to impede the ball handler, deny an opportunity for the screener, and avoid an untenable mismatch. Mismanagement of this maneuver often results in an offensive advantage and a score. In this paper, we present a step towards the construction of a tool designed to help coaching staffs analyze the way ball screens are defended. It can be used to automatically identify the way ball screens are defended, and measure correlations between defensive strategies and possession level outcomes. Utilizing SportVU player tracking data [1] from multiple seasons in the NBA and supervised machine learning techniques, we learn to accurately classify pick and roll defensive schemes as over, under, trap, or switch. We then apply our learned classi ier to multiple seasons worth of data, consisting of a total of 27,823 ball screens, generating labels for how each ball screen was defended. Combined with data about outcomes (e.g., points per possession), these labeled data enable novel analyses at the team and player level. We examine the distributions of schemes for teams across the league, and then turn our analysis to individual players examining the effect of individual schemes on offensive and defensive performance. 1
2 We consider player trajectory data collected by the STATS SportVU system. This dataset contains all (x, y) positions of every player on the court and the (x, y, z) coordinates of the ball at 25 frames per second. These trajectory data are augmented with play-by-play data including player information, box scores, game clock, shot clock etc. We consider data from four separate seasons summarized in Table 1. We have fewer data points for earlier seasons, since the system was not installed across the League until 213. In our analyses, we focus on data from , since that is the season for which we have the most complete data. When examining overall trends, or trends over time we consider all four seasons. Table 1: The amount of available data for analysis varies across seasons. Season Total Games Building upon earlier work on recognizing the occurrence of an on-ball screen [2], we develop a system that takes as input unlabeled player trajectory data from SportVU and outputs the time of all ball screens that occur during each game and how the screen was defended. Figure 1 illustrates the three stages to the overall system. In this paper, we focus mainly on the third stage in which we classify defensive schemes. For details on the irst two stages, please refer to [2]. Unlabeled SportVU Data 1) Segment data into Ac1ons 2) Iden1fy On- Ball Screens E.g., [clock=11:55, player_id=23, x=34.3, y=25.4] [clock=11:55, player_id=245, x=3.3, y=2.4] [clock=11:55, player_id=216, x=14.3, y=5.5] 3) Classify Defensive Scheme Labeled Data x x Over Trap x x Under Switch x Offense Defense Screen Figure 1: Our system takes in SportVU position data and identi ies ball screens and labels them with the defensive scheme used and the offensive outcome in terms of points per possession. For each instance of a ball screen, we identify the following four players: the, the, the, and the. We group the defensive schemes into four broad categories based on the trajectories of these players: On-ball defender stays between the ball handler and screener i.e., goes over the screen On-ball defender does not stay between the ball handler and screener i.e., goes under On-ball defender and screener defender switch their original matchups On-ball defender and screener defender double the ball handler i.e., trap the ball-handler Within each of these broad categories, there are subtypes of interest e.g., hedge (in which the screener defender jumps out on the ball handler to impede his progress), or show (in which the screener defender slides out just far enough to present an obstacle to the ball handler). We do not present results at this level of detail here. 2
3 In the third stage of the pipeline in Figure 1, we classify each screen according to how the defense behaved. Rather than hand-coding a set of rules, we used supervised learning to automatically build models that can be used to classify defensive activity as one of the four categories listed above. To build our training set of data, we watched ilm from six games from the regular season. In total we hand labeled a set of 34 attempts to defend a ball screen. Each attempt was labeled based on its most de ining characteristic. For example, we would label an instance where the on-ball defender goes over and then a trap occurs as a trap, since the occurrence of a trap de ines the screen defense. In total our training set consisted of 199 instances of over, 56 instances of under, 57 instances of switch, and 28 instances of trap. For each example, we extracted features based on the pairwise distances between the four player trajectories. We extracted each segment automatically using our ball screen detector. The examples varied in length, i.e. we have some examples that contain more samples than others. The largest variance is between the time the play begins and when the ball-handler reaches the screener. To align the examples in time, we de ine the screen moment as the when the distance between the screen and the on-ball defender is minimum. We align all examples based on this moment and consider ten frames prior to this moment. We consider the player trajectories from this moment up until the moment a shot, pass, turnover, or stoppage of play occurs. For each of the n examples in our dataset, we represent each of the pairwise distances by a variable length vector z i R d i where i = 1...n. From these variable length vectors, we extract summary statistics describing the signal (e.g., the mean, the maximum, the minimum, etc.). Concatenated together, these features result in a ixed length feature vector R d for each example. To train and validate our model, we split our hand labeled data 7/3 into a training set and validation set. Since the schemes are not uniformly represented in our data, we consider strati ied splits that maintain the overall label/class distribution. Given the training data, we de ine a min/max range, and scale the validation set features accordingly to ensure that all features have the same scale. We then learn a linear multiclass classi ier using multinomial logistic regression [3]. We select the hyperparameters using 5-fold cross validation on the training set. In addition, we account for the nonuniform distribution across classes by adjusting class weights to be inversely proportional to class frequencies [4]. The learned classi ier results in a mapping from a feature vector representing a ball screen to a class (i.e., label) corresponding to one of the four defensive schemes. We evaluate the classi ication performance of our learned classi ier on the labeled test data. Given an unlabeled example, our classi ier produces a probability estimate for each class j: P (y = j ) = e T j 4 k=1 e T k and ŷ = argmax j P (y = j ) where j are the learned regression coef icients for classi ier j. We assign each example a label, ŷ, according to the class that results in the maximum probability. We repeat this process of splitting the 3
4 data, training a classi ier, and testing the classi ier on 1 different splits. For each split, we measure performance in terms of the precision and recall with respect to each class, in addition to overall accuracy. We achieve an overall average accuracy of.69 (±.3). Table 2 lists the performance within each class and Table 3 gives the confusion matrix averaged over the 1 different training/test splits. Among the four different schemes, the classi ier has the greatest dif iculty classifying traps. Trap is also the least represented in the training set. Table 2: Average performance (±std. dev.) on validation sets within each class. Metric Over Under Trap Switch Recall.83(±.5).52(±.12).19(±.13).62(±.11) Precision (with h = ).75(±.3).58(±.9).4(±.25).63(±.9) Precision (with h =.6).78(±.5).65(±.12).46(±.36).69(±.11) Table 3: Confusion matrix averaged over 1 random cross-validation splits over under trap switch over under trap switch In order to increase performance, and speci ically our ability to precisely classify traps, we considered a second classi ication scheme based on a threshold h such that: argmaxp (y = j ) if maxp (y = j ) > h ŷ = j j unclear otherwise By thresholding how con ident the classi ier must be in its prediction, we can increase overall precision. This results in a reduction in recall since an example may not be labeled as belonging to any class, however in some analyses we care more about precision than recall so we are willing to accept this tradeoff. Next, we applied our classi iers to all 27,823 ball screens previously extracted by stages 1 2. This results in 146,314 examples of over, 69,721 of under, 37,336 of switch, and 17,451 of trap. When we set h =.6 to increase precision, we identi ied 33,421 examples of over, 9,252 of under, 8,394 of switch, 383 of trap, and 219,372 examples are labeled unclear. We analyze these labeled data and report our observations in the next section. Applied to four seasons worth of data, our ball screen classi ier identi ied 27,823 ball screens. In addition to knowing the outcome for the possession (e.g., number of points scored), we also know who was involved. These data allow for an unprecedented analysis into the effectiveness of defensive 4
5 strategies. Here, we begin to analyze these data and identify trends in defensive strategies at both the team and player levels P(Scheme) Over Under Switch Trap Over Under Switch Trap Over UnderSwitch Trap Over UnderSwitch Trap Figure 2: Across seasons the observed distribution stays relatively constant, however we do notice a slight (though probably not signi icant) increase in the number of traps. As a preliminary analysis we looked at the general defensive tendencies of teams by examining the probability distribution for each team across the four schemes, see Figure 2. Because our classi ier does not achieve 1% accuracy, we consider relative differences across teams and seasons. From season to season, the average distribution of schemes is reasonably consistent. The only noticeable difference is an increase in the frequency of under. We compared teams to each other by calculating the difference between the distributions using symmetric version of the Kullback-Leibler divergence. These pairwise differences are given in Figure 3(c). We also compared teams to the average distribution for all teams in order to identify outliers. Figures 3(a) and 3(b) show how much teams defensive scheme distributions varied from average during the season. These plots also illustrate how a team s strategy for defending screens relates to winning percentage over the course of a season. Larger, lighter dots imply a higher regular season win percentage. Some teams are clear outliers. The Miami Heat trapped nearly twice as frequently (13.2% of opponent screens) as the average team that season (just 7.5%). This is probably not unrelated to their forcing of the second most turnovers of any team that season. The Bulls used over at a rate almost 7% greater than the average team that year. We believe this was an important aspect of the team s overall defensive scheme of forcing ball handlers towards the sidelines. In this section we examine how personnel groups, both offensive and defensive relate to the way screens are defended and how these decisions result in possession level outcomes (i.e., points per possession). 5
6 % Difference Under from Average.5 MIN.4 NJN NYK.3 ORL DAL ATL.2 SAC TOR.1 WAS GSW POR MEM CHB MIL PHI OKC HOU SAS UTA -.1 MIA CLE PHX DET -.2 IND LAL -.3 DEN BOS LAC NOH CHI % Difference Over from Average (a) % Difference Trap from Average.6 MIA.5.4 LAC CLE.3 DEN.2 DAL MIL OKC MEM.1 TOR PHX WAS NOH NJN UTA DET SAC IND -.1 ATL HOU SAS BOS MIN NYK -.2 CHB LAL PHI -.3 POR CHI ORL GSW % Difference Switch from Average (b) SAS OKC UTA WAS PHI PHX POR SAC CHB TOR MEM ATL NOH BOS CLE CHI DEN DAL GSW DET IND HOU LAL LAC MIL MIA NJN MIN ORL NYK SAS OKC UTA WAS PHI PHX POR SAC CHB TOR MEM ATL NOH BOS CLE CHI DEN DAL GSW DET IND HOU LAL LAC MIL MIA NJN MIN ORL NYK (c) Figure 3: In (a) The Bulls went over almost 7% more often than the average team. (b) While the average team trapped just 7.5% of ball screens, the Heat trapped more than 13% of the time. (c) The difference between defensive strategies of pairs of teams (lighter=greater difference). By this metric, the Clippers and Heat were among the most unique defensive teams. It is well known that how teams choose to defend a ball screen is strongly related to the offensive skill set (particularly the shooting ability) of the ball handler. To support this claim with data, we applied our classi ier (h =.6) to all data collected from For this analysis, we set the classi ier threshold (h) higher, so that our precisions among each defensive scheme was at its highest. This resulted in approximately 51, ball screens labeled by their defensive scheme. Only about 35 of those instances were labeled as traps, so we did not include traps as part of this analysis. We considered ball handlers with more than 3 labeled instances of ball screens. For each of these 53 players, we compute the distribution of how teams chose to defend ball screens when that player was the ball handler. For each defensive strategy, we also compute the average points per possession across all ball screens in which that player was the ball handler. For example, we calculate that, on average, the offense scores.83 points every time the defense switches on LeBron James. Figures 5-7, show the effectiveness of over, under, and switch against these 53 players. The x-axis is the percentage of time the strategy is used, and the y-axis the average points per possession the offense scores when that strategy is used. Players near the upperright quadrant of a plot are players that are defended Points Per Possession Augustin Collison Paul Wall.9 Crawford Bayless Harden HolidayCarter Williams Sessions Curry Rondo James Lin.8 Lowry Thomas Williams Westbrook Beal Jackson Irving Lawson DeRozan Hayward Lillard.7 Parker Jack Vasquez Waiters Teague Ginobili Prigioni.6 Chalmers Nelson Monta Ellis.5.4 Knight Burke Durant Williams Turner % Guarded with Switch Figure 4: Avg. Points/Possession when guarded with Switch versus relative frequency of being guarded with Switch. While faced with the switch more often than any other player, James remains among the most effective at creating points. Durant punishes the defense to an even greater extent, but encounters the switch less often. often by a particular scheme, while still managing to score. Players in the lower-right quadrants also see that particular scheme often, but are not as effective at defeating it. 6
7 Points Per Possession James Chalmers Lillard Durant Holiday Rondo Udrih Ginobili Irving Paul Westbrook Parker Harden Walker Lin Lawson Ellis Conley Felton Vasquez Curry Wall Hayward Bayless Jennings Teague Augustin Oladipo Williams Crawford Burke Jack Barea Dragic Jackson Smith Rubio Calderon Sessions Beal Williams DCollison Lowry Nelson Ridnour DeRozan Waiters.6 Carter Williams Prigioni Turner Knight Thomas Hill % Guarded with Over Figure 5: Avg. Points/Possession when guarded with Over versus relative frequency of being guarded with Over. Prigioni, Chalmers, and Holiday are among the players that excel in creating points even when the defense frequently goes over their screens. Points Per Possession Ridnour Ginobili Jennings Smith Dragic Holiday Irving Barea Bayless Harden James Crawford Lawson Curry Lowry Chalmers Turner Parker Hayward Lillard Collison Paul Westbrook Conley Thomas Beal Williams Durant Rondo Lin Knight % Guarded with Under Prigioni Jackson Oladipo Hill Sessions Carter Williams Wall Rubio Burke Figure 6: Avg. Points/Possession when guarded with Under versus relative frequency of being guarded with Under. In general, players who consistently make the three-point shot tend to dominate when the defense goes under. Against over, we see that players like James, Prigioni, Chalmers, Lilliard, and Holiday all result in a relatively high number of points per possession. In spite of this success, teams still choose to defend Irving and Holiday by going over more than 75% of the time. For under, we again see Prigioni and James near the top in terms of points per possession. When Michael Carter-Williams is the ball handler, the defense goes under the screen more often than against others. Still, Michael Carter-Williams is relatively successful against this defensive tactic, while Hayward and Sessions fair poorly when facing the under strategy. Against switches, Durant and Mo Williams lead to more points per possession than others. Of all the 53 players we investigated, LeBron James faced the switch most often. However, James is slightly more effective when the defense switches (vs. over/under) suggesting that switch as the strategy of choice when defending against LeBron may be suboptimal. The switch is, however, more effective when defending against Chalmers and Prigioni relative to going over. In addition to analyzing ball screen defense from the perspective of the offense, we can lip the lens and examine how defensive success varies across different defensive players. First, we consider the most effective defense (i.e, the pair of defensive players that yield the fewest points per possession) for each type of scheme using data from the season. The top ranked defensive pairs are shown broken down by defensive scheme in Table 4. Note that some particularly effective pairs/players do not appear in these tables since we did not have enough samples. We consider only those pairs for which we have a large enough number of samples to make meaningful observations. 7
8 Table 4: : Most effective teams at defending the ball screen within each defensive scheme. Team Defensive Player 1 Defensive Player 2 Total (Fraction) Avg. Pts/Possess. Thunder Derek Fisher Steven Adams 14 (.58) Thunder Reggie Jackson Steven Adams 2(.69) Thunder Thabo Sefolosha Serge Ibaka 15 (.45).13 Knicks Carmelo Anthony Raymond Felton 15 (.56).25 Hawks Jeff Teague Pero Antic 19 (.56).26 Rockets Dwight Howard Jeremy Lin 4 (.73).27 76ers Spencer Hawes James Anderson 14 (.74).28 Knicks Tyson Chandler Iman Shumpert 14 (.56).28 Heat Chris Bosh Norris Cole 18 (.5).33 Suns Eric Bledsoe Channing Frye 18 (.82).33 Nets Shaun Livingston Andray Blatche 2 (.47).2 Raptors Kyle Lowry Jonas Valanciunas 13 (.23).31 Rockets Dwight Howard James Harden 12 (.32).31 Magic Tobias Harris Jameer Nelson 13 (.35).31 Heat Norris Cole Chris Anderson 14 (.28).36 76ers Spencer Hawes M. Carter-Williams 13 (.32).38 Trail Blazers Nicolas Batum Damian Lillard 13 (.38).46 Knicks Raymond Felton Tyson Chandler 17 (.33).47 Bulls D.J. Augustin Taj Gibson 14 (.26).5 Bulls Carlos Boozer Kirk Hinrich 12 (.23).5 Cavaliers Jarrett Jack Anderson Varejao 13 (.39).38 Clippers Chris Paul Blake Grif in 19 (.25).42 Raptors Kyle Lowry Amir Johnson 16 (.22).5 Wizards Marcin Gortat Bradley Beal 11 (.39).64 Heat LeBron James Mario Chalmers 11 (.15).73 Wizards Marcin Gortat John Wall 15 (.15).73 Pacers George Hill David West 13 (.13).77 Grizzlies Mike Conley Zach Randolph 15 (.21).8 Heat Chris Bosh Mario Chalmers 16 (.25).81 Heat Chris Bosh Dwayne Wade 11 (.35).91 Interestingly, pairs that defend well with one scheme do not appear dominant across all schemes (or simply do not run the same defense). From this, we can note the dif iculty that arises when attempting to determine the overall defensive effectiveness of a single player. Our analysis suggests that the defenders vary considerably in their ability to thwart different ball screen actions by the offense. We can determine individual defensive effectiveness by examining all ball screens in which a given player was among the pair of defensive players. When we consider each individual player s average performance across all pairs in this way, some clear winners come out on top. In particular, Steven Adams is a standout defender; regardless of who he is paired with, Adams and his teammate are particularly effective at blocking the defense from scoring off of a pick and roll. Similarly, Varejao and Howard are standouts within other categories. Figure 7 compares the average points per possession allowed by different duos to the average allowed by each individual when averaged across all other player combinations. Chris Paul and Blake Grif in, while effective at the switch (see TABLE 4), are one of the worst pairs when it comes to over, averaging close to 1.2 points allowed. Based on each individual s contribution, Grif in appears to be on the hook for this one. Similarly, Serge Ibaka and Reggie Jackson perform relatively poorly at the switch, but appear equally responsible. 8
9 Avg. Points per Possession Allowed Big: Small: (scheme): Duo Big Small Adams Jackson (over) Howard Lin (over) Howard Harden (under) Varejao Jack (switch) Ibaka Jackson (switch) Griffin Paul (over) League Average Carmelo Anthony Pero Antic DeMarre Carroll Thabo Sefolosha Steven Adams Iman Shumpert Derek Fisher N=24 N=24 N=25 N=33 N=27 N=34 N= Avg. Points/Possession Allowed (Defending an On Ball Screen) Figure 7: Points per possession allowed for various duos and individuals. While Howard and Lin are particular synergistic in defending the pick and roll, Blake Grif in and Chris Paul perform worse together than they do in other pairs. Figure 8: Avg. Points/Possession allowed by players who were signi icantly better than the League average. Notably, Shumpert, Adams, Sefalosha, and Carroll are all well regarded as solid defenders. When averaged across all schemes the players who come out on top in terms of most effective defense (when defending the pick roll) are shown in Figure 8. Compared to the league average these players are more effective by two or more standard deviations. In the most recent season , we notice slightly different trends. In terms of over, Westbrook and Ibaka perform best compared to all other pairs, with Joakim and Rose a close second. Interestingly, Rose and Pau Gasol are one of the worst teams at running over. Again, based on individual player contributions, Ibaka appears to be carrying the Westbrook/Ibaka duo. Joakim and Rose appear to be particularly synergistic; paired with others, neither do very well, but together they rank among the top defenders. In terms of under Paul and Grif in perform similarly to 214, with one of the worst performances relative to the other pairs (again Grif in appears to be on the hook). Pau Gasol and Derrick Rose are also ineffective Avg. Points/Poss. Allowed Blake Griffin DeAndre Jordan Norris Cole Mario Chalmers Steven Adams Serge Ibaka Chris Paul LeBron James Kevin Durant Smaller = Better Defense Figure 9: Avg. Points/Possession allowed for various players and the teammates they most frequently defend with. Paul, James and Durant all have a teammate with whom they defend ball screens especially well. when running under. Overall, Paul and Grif in, Gasol and Rose, and LaMarcus Aldridge and Damian Lillard are some of the most frequent defensive duos with the worst performance. In 215, Serge Ibaka was a highly effective defensive player, allowing on average only.25 points per possession when defending the pick and roll. Across all seasons some noteworthy combinations appear, Chris Paul and DeAndre Jordan, Durant and Ibaka, and James and Chalmers. Figure 9 illustrates the effectiveness of these combinations in addition to others that appear frequently in the data but result in worse performance. 9
10 The classi ication process that we present for identifying defensive schemes helps discretize the game in a way that offers value beyond summary statistics. Our process allows for greatly improved insight into the pick and roll, for which we see at least two potential applications: 1. With the ability to automatically identify pick and roll actions and responses, our process moves towards a system for individualized, player-level reporting tools. Such tools could be used to quickly and automatically assess a player s performance during a game on actions of particular interest and serve as a guide during player development work. 2. When assessing team performance over a series of games, our process could be applied in order to assist in strategic planning. Teams could immediately identify areas of weak defensive performance and prioritize this information in preparing for future games. In continued analysis, we also see potential to assess evolutions in the defensive styles of teams across the League, as well as examine how the defensive abilities of an individual player affect overall outcomes for the team in pick and roll situations. [1] STATS sportvu, 215. [2] Armand McQueen, Jenna Wiens, and John Guttag. Automatically recognizing on-ball screens. In, 214. [3] Kevin P Murphy.. MIT press, 212. [4] Fabian Pedregosa, Gaël Varoquaux, Alexandre Gramfort, Vincent Michel, Bertrand Thirion, Olivier Grisel, Mathieu Blondel, Peter Prettenhofer, Ron Weiss, Vincent Dubourg, et al. Scikit-learn: Machine learning in python., 12: ,
OKLAHOMA CITY THUNDER vs. DETROIT PISTONS (58-23) (29-52)
OKLAHOMA CITY THUNDER 213-14 GAME NOTES GAME #82 HOME GAME #41 OKLAHOMA CITY THUNDER vs. DETROIT PISTONS (58-23) (29-52) WEDNESDAY ٠ APRIL 16, 214 ٠ 7: PM (CST) ٠ CHESAPEAKE ENERGY ARENA, OK 213-14 SCHEDULE/RESULTS..
The Dwight Effect: A New Ensemble of Interior Defense Analytics for the NBA
The Dwight Effect: A New Ensemble of Interior Defense Analytics for the NBA Kirk Goldsberry 1 and Eric Weiss 2 1 Harvard University, Cambridge, MA, USA, 02138 [email protected] 2 Sports Aptitude,
YMCA Basketball Games and Skill Drills for 3 5 Year Olds
YMCA Basketball Games and s for 3 5 Year Olds Tips ( s) Variations Page 2 Dribbling Game 10 Players will learn that they must be able to dribble to attack the basket (target) to score in basketball. The
10 FREE BASKETBALL DRILLS
BASKETBALL DRILLS AND PRACTICE PLANS 1 10 FREE BASKETBALL DRILLS by Coach Patrick Anderson BASKETBALL DRILLS AND PRACTICE PLANS 2 CONTENTS 1.1 Rapid Swing Pass... 3 1.2 Box Out React Drill... 3 1.3 Bump...
Buckets: Visualizing NBA Shot Data CPSC 547 Project Proposal
Buckets: Visualizing NBA Shot Data CPSC 547 Project Proposal [email protected] This game has always been, and will always be, about buckets. Bill Russell, 11-time NBA champion Domain, Task, Dataset Sports
How To Bet On An Nfl Football Game With A Machine Learning Program
Beating the NFL Football Point Spread Kevin Gimpel [email protected] 1 Introduction Sports betting features a unique market structure that, while rather different from financial markets, still boasts
2015-16 CHARLOTTE HORNETS GAME NOTES
CHARLOTTE HORNETS (22-23) at UTAH JAZZ (19-25) GAME #46 ROAD GAME #22 January 27, 2016 9 PM (ET) Vivant Smart Home Arena SALT LAKE CITY TV: FOX Sports Southeast RADIO: WFNZ 610 AM PROBABLE STARTERS 2015-16
Beating the MLB Moneyline
Beating the MLB Moneyline Leland Chen [email protected] Andrew He [email protected] 1 Abstract Sports forecasting is a challenging task that has similarities to stock market prediction, requiring time-series
ACL Soccer 4 v 4 Small Sided Games (SSG s)
KEY TO THE DIAGRAMS Introduction In recent years, the 4v4 method has rapidly increased in popularity however this method is certainly not a new one. The method was introduced by the Dutch Football Association
HOW TO ATTACK THE ZONE DEFENSE
HOW TO ATTACK THE ZONE DEFENSE by Bodizar Maljkovic Bozidar Maljkovic is currently the head coach of Real Madrid. He previously coached Jugoplastika Split (winning 2 European Cups, 3 Yugoslavian Championships,
THE GREEK YOUTH PROGRAM: OFFENSIVE PHILOsOPHY
FIBA EUROPE COACHES - FUNDAMENTALS AND YOUTH BASKETBALL by Nikos Stavropoulos THE GREEK YOUTH PROGRAM: OFFENSIVE PHILOsOPHY Nikos Stavropoulos is the Head Coach of the Greek National Junior Men s Team.
Principles of Soccer
What criteria can we use to tell how well our team is playing? Analysis of soccer always starts out with the same question, Who has the ball? Principle #1: Possession If our team has possession of the
Predicting Market Value of Soccer Players Using Linear Modeling Techniques
1 Predicting Market Value of Soccer Players Using Linear Modeling Techniques by Yuan He Advisor: David Aldous Index Introduction ----------------------------------------------------------------------------
WASHINGTON WIZARDS GAME NOTES
WASHINGTON WIZARDS GAME NOTES THURSDAY, APRIL 14, 2016 VERIZON CENTER-WASINGTON, DC Washington Wizards (41-41) DATE OPPONENT TIME/SCORE 10/28 @ Orlando W, 88-87 10/30 @ Milwaukee W, 118-113 10/31 vs. New
Facebook Friend Suggestion Eytan Daniyalzade and Tim Lipus
Facebook Friend Suggestion Eytan Daniyalzade and Tim Lipus 1. Introduction Facebook is a social networking website with an open platform that enables developers to extract and utilize user information
How To Assess Soccer Players Without Skill Tests. Tom Turner, OYSAN Director of Coaching and Player Development
How To Assess Soccer Players Without Skill Tests. Tom Turner, OYSAN Director of Coaching and Player Development This article was originally created for presentation at the 1999 USYSA Workshop in Chicago.
Referee Analytics: An Analysis of Penalty Rates by National Hockey League Officials
Referee Analytics: An Analysis of Penalty Rates by National Hockey League Officials Michael Schuckers ab, Lauren Brozowski a a St. Lawrence University and b Statistical Sports Consulting, LLC Canton, NY,
EAA In-House Basketball Rules. Grades 4-6
Welcome to EAA Inhouse Basketball Parent, coach, and player conduct Player Code of Conduct Rules for all schools Referee Coordinator Referees Referee Timesheet Missing referee Misconduct Sportsmanship
Integrating Cue Reading and Decision-Making into Skill Development
Integrating Cue Reading and Decision-Making into Skill Development STAGES of PLAYER LEARNING/DEVELOPMENT Initiation Acquisition What it is, and what to expect as a coach CUE READING & DECISION-MAKING PROGRESSIONS
Socci Sport Alternative Games
- 1 - Socci Sport Alternative Games Table of Contents 1 Roller Socci 2 2 Pass and Shoot Socci 2 3 Punt & Catch Socci 2 4 Long Pass Socci 3 5 Pass, Dribble, and Shoot Socci 3 6 Scooter Socci Basketball
MILWAUKEE BUCKS GAME NOTES 2015-16 SEASON REVIEW
Milwaukee Bucks (33-49) (23-18 at home, 10-31 on the road, 5 th in Central Division) END OF SEASON PLAYER STATS # Player Ht Wt G GS PPG RPG APG MPG FG% 3FG% FT% STARTERS 34 Giannis Antetokounmpo F 6-11
Team Defending. Understand the terms that describe the roles of players and parts of the field. The person you are marking.
Team Defense is a Dance Team Defending Dancers must learn individual dance steps, but must also learn to dance in rhythm with other dancers, and must never miss a beat. Team defense is a dance. The individual
READ AND REACT OFFENSE
READ AND REACT OFFENSE WHAT IT S NOT Not motion offense Motion offense is good if you have 5 intelligent great multi-dimensional players Most offenses are predicated on a certain type of player. Its also
OKLAHOMA CITY THUNDER vs. HOUSTON ROCKETS (9-7) (8-8)
OKLAHOMA CITY 2009-10 REGULAR SEASON GAME NOTES GAME #17 ٠ HOME GAME #8 OKLAHOMA CITY vs. HOUSTON ROCKETS (9-7) (8-8) SUNDAY ٠NOVEMBER 29, 2009 ٠6:00 PM (CDT) ٠ FORD CENTER, OK 2009-10 SCHEDULE/RESULTS..
Rick Torbett The Read & React Offense
Rick Torbett The Read & React Offense Notes by Scott Bullock Notes by Scott Bullock Contents Introduction... 4 What It s Not... 4 What It Is... 4 What It Can Be... 4 Goals of the Read and React... 4 Secrets
Seniors Housing Market Overview
Seniors Housing Market Overview NCREIF Fall Conference 2013 Eden Roc, Miami Beach, FL November 14, 2013 www.nic.org www.nicmap.org This document was presented during the 2013 NCREIF Fall Conference. Seniors
END OF SEASON (41-41 Regular Season, 1-4 Playoffs)
HOUSTON ROCKETS GAME NOTES END OF SEASON (41-41 Regular Season, 1-4 Playoffs) Forward Trevor Ariza* MPG PPG RPG APG SPG BPG TPG FG% 3PT% FT% #1 6-8 / 215 35.3 12.7 4.5 2.3 1.98 0.32 1.4.417.371.783 Top
Predicting outcome of soccer matches using machine learning
Saint-Petersburg State University Mathematics and Mechanics Faculty Albina Yezus Predicting outcome of soccer matches using machine learning Term paper Scientific adviser: Alexander Igoshkin, Yandex Mobile
POINTWISE: Predicting Points and Valuing Decisions in Real Time with NBA Optical Tracking Data
POINTWISE: Predicting Points and Valuing Decisions in Real Time with NBA Optical Tracking Data Dan Cervone, Alexander D Amour, Luke Bornn, and Kirk Goldsberry Department of Statistics and Institute for
FUTSAL RULES Below are additions and/or highlights to FIFA Futsal Rules For details on FIFA Rules, see Rules PDF.
FUTSAL RULES Below are additions and/or highlights to FIFA Futsal Rules For details on FIFA Rules, see Rules PDF. Equipment & Uniforms Game balls are to be provided. Personal Futsal balls are allowed,
Shake N Bake Basketball Services High School Level
Shake N Bake Basketball Services High School Level Author: Ganon Baker 1-866-626-0412 www.shakenbakebasketball.com Methods of Teaching 1. Be a mirror: correct wrong, praise right, repetition. 2. Teach
Youth Football Drills
Angle Tackle Drill Combines tackling skills with proper pursuit and leverage and position. Align two cones five yards apart. Divide defenders into two single file lines five yards apart facing one another
IBM SPSS Direct Marketing 23
IBM SPSS Direct Marketing 23 Note Before using this information and the product it supports, read the information in Notices on page 25. Product Information This edition applies to version 23, release
Predicting Movie Revenue from IMDb Data
Predicting Movie Revenue from IMDb Data Steven Yoo, Robert Kanter, David Cummings TA: Andrew Maas 1. Introduction Given the information known about a movie in the week of its release, can we predict the
How To Predict The Outcome Of The Ncaa Basketball Tournament
A Machine Learning Approach to March Madness Jared Forsyth, Andrew Wilde CS 478, Winter 2014 Department of Computer Science Brigham Young University Abstract The aim of this experiment was to learn which
Creating a NL Texas Hold em Bot
Creating a NL Texas Hold em Bot Introduction Poker is an easy game to learn by very tough to master. One of the things that is hard to do is controlling emotions. Due to frustration, many have made the
Beating the NCAA Football Point Spread
Beating the NCAA Football Point Spread Brian Liu Mathematical & Computational Sciences Stanford University Patrick Lai Computer Science Department Stanford University December 10, 2010 1 Introduction Over
Making Sense of the Mayhem: Machine Learning and March Madness
Making Sense of the Mayhem: Machine Learning and March Madness Alex Tran and Adam Ginzberg Stanford University [email protected] [email protected] I. Introduction III. Model The goal of our research
The Technical Committee of the Alberta Soccer Association wishes to thank
The Technical Committee of the Alberta Soccer Association wishes to thank The St. Albert Soccer Association and Sherwood Park Soccer Association for their assistance with the development of the RULES for
The 52 Monster. By Derek A. Coach Wade
The 52 By Derek A. Coach Wade The 5-2 is the defense I was a part of as a player through junior high and high school. Although my own personal success was dismal, with one win in five seasons, I believe
R e f e r e e s G u i d e l i n e s Issued by Director of Refereeing
Page 1 of 6 R e f e r e e s G u i d e l i n e s Issued by Director of Refereeing No one goes to a Sports Event to see the Referees. We are the people without fans But we have a commitment with the sport;
The Ajax Youth Development Scheme
The Ajax Youth Development Scheme Continuity is particularly important in youth development. Everyone involved needs to be well informed and pulling in the same direction. At Ajax, there is great value
What really drives customer satisfaction during the insurance claims process?
Research report: What really drives customer satisfaction during the insurance claims process? TeleTech research quantifies the importance of acting in customers best interests when customers file a property
Topic: Passing and Receiving for Possession
U12 Lesson Plans Topic: Passing and Receiving for Possession Objective: To improve the players ability to pass, receive, and possess the soccer ball when in the attack Dutch Square: Half of the players
203.4770: Introduction to Machine Learning Dr. Rita Osadchy
203.4770: Introduction to Machine Learning Dr. Rita Osadchy 1 Outline 1. About the Course 2. What is Machine Learning? 3. Types of problems and Situations 4. ML Example 2 About the course Course Homepage:
Read & React Clinic Notes
Read & React Clinic Notes May 2011 Opening Statements 1. This offense makes it possible to develop the offense and your players at the same time. 2. Understanding defense is the key to running good offense.
Lacrosse Terminology
Lacrosse Terminology Lacrosse is a great game to watch, but with all sports there are rules and terms that, once understood, bring you to a whole new level of understanding. These terms open the door to
One-On-One Basketball Moves
One-On-One Basketball Moves Outside Live-Ball Moves Many times you will receive a pass on the court and find that, although you are guarded, you are the closest one to the basket. It's now up to you to
Module 3: Correlation and Covariance
Using Statistical Data to Make Decisions Module 3: Correlation and Covariance Tom Ilvento Dr. Mugdim Pašiƒ University of Delaware Sarajevo Graduate School of Business O ften our interest in data analysis
IBM SPSS Direct Marketing 22
IBM SPSS Direct Marketing 22 Note Before using this information and the product it supports, read the information in Notices on page 25. Product Information This edition applies to version 22, release
Data Mining Yelp Data - Predicting rating stars from review text
Data Mining Yelp Data - Predicting rating stars from review text Rakesh Chada Stony Brook University [email protected] Chetan Naik Stony Brook University [email protected] ABSTRACT The majority
Brief Application Description
Data Mining and Knowledge Discovery, 1, 121 125 (1997) c 1997 Kluwer Academic Publishers, Boston. Manufactured in The Netherlands. Brief Application Description Advanced Scout: Data Mining and Knowledge
Elements and the Teaching of Creative and Deceptive Play F. Trovato Alaska Youth Soccer Association
Elements and the Teaching of Creative and Deceptive Play F. Trovato Alaska Youth Soccer Association What is creativity in players? Is it just beating another player in a 1v1 situation? When we think about
Team Handball Study Guide
Team Handball Study Guide Grotthuss History Team Handball originated in northern Europe (Denmark, Germany, Norway and Sweden) in the end of the 19 th century. The Dane Holger Nielsen drew up the rules
MEMORANDUM. Stefanie Sparks Smith Secretary-Rules Editor, NCAA Women s Lacrosse Rules Committee.
MEMORANDUM September 25, 2015 VIA EMAIL TO: Head Women s Lacrosse Coaches and Officials. FROM: Julie Myers Chair, NCAA Women s Lacrosse Rules Committee. Stefanie Sparks Smith Secretary-Rules Editor, NCAA
Strategy Guide Contents
Strategy Guide Contents Team Strategies Defensive Strategies Offensive Strategies Special Strategies Play Calling Offensive Play Calling Bench/Dead Ball Options Gameplay Example: Setting Strategies Player
Soccer Control and Trapping Small Sided Game, Soccer Control, Soccer Trapping
Mini Soccer Games Soccer Control and Trapping Small Sided Game, Soccer Control, Soccer Trapping Create a grid that is approximately 40X60 yards with goals on each end. Split the teams into 6v6 and place
Introduction. Below is a list of benefits for the 4v4 method
KEY TO THE DIAGRAMS Introduction There are many debates on how best to coach the next generation of football players. This manual is putting forward the case for the 4v4 games method. In recent years,
X X X a) perfect linear correlation b) no correlation c) positive correlation (r = 1) (r = 0) (0 < r < 1)
CORRELATION AND REGRESSION / 47 CHAPTER EIGHT CORRELATION AND REGRESSION Correlation and regression are statistical methods that are commonly used in the medical literature to compare two or more variables.
Predicting the Stock Market with News Articles
Predicting the Stock Market with News Articles Kari Lee and Ryan Timmons CS224N Final Project Introduction Stock market prediction is an area of extreme importance to an entire industry. Stock price is
BENDIGO BASKETBALL COMPETITION M2M POLICY
BENDIGO BASKETBALL COMPETITION M2M POLICY BENDIGO BASKETBALL COMPETITION Man 2 Man Only NO ZONES : Under 12 & Under 14 Age Divisions There is general acceptance that the constant use of zone defences in
The Effect of Dropping a Ball from Different Heights on the Number of Times the Ball Bounces
The Effect of Dropping a Ball from Different Heights on the Number of Times the Ball Bounces Or: How I Learned to Stop Worrying and Love the Ball Comment [DP1]: Titles, headings, and figure/table captions
#1 Prioritizing Libero Responsibilities
Todd Dagenais Head Volleyball Coach University of Central Florida Orlando, Florida #1 Prioritizing Libero Responsibilities 1)Passing in Serve Receive 60-70 % of your points are scored in serve receive.
FIFA Laws of the Game U10-18
FIFA Laws of the Game U10-18 Law 1: Field of Play Law 2: The Ball Field size for U6-U12 players is reduced for small- sided play. U14 U19 play on regulation size fields. U6 & U8 play with size 3 soccer
Supervised and unsupervised learning - 1
Chapter 3 Supervised and unsupervised learning - 1 3.1 Introduction The science of learning plays a key role in the field of statistics, data mining, artificial intelligence, intersecting with areas in
Teaching Games for Understanding (TGfU)
Teaching Games for Understanding (TGfU) Some approaches to coaching have suggested utilising the context of a small sided game as a start point for sessions to allow players to demonstrate understanding
Operations and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology Madras
Operations and Supply Chain Management Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology Madras Lecture - 41 Value of Information In this lecture, we look at the Value
Maximizing Precision of Hit Predictions in Baseball
Maximizing Precision of Hit Predictions in Baseball Jason Clavelli [email protected] Joel Gottsegen [email protected] December 13, 2013 Introduction In recent years, there has been increasing interest
Team Selection. Team Selection. Advanced Game. Positions. Advanced Game
Welcome to Subbuteo Dream Team Stadium: the classic game of tabletop football, now with an all-star, international line-up. You are the player-manager of an elite dream team, made up of the most talented
PORTLAND TRAIL BLAZERS 2016 NBA PLAYOFFS RECAP
PORTLAND TRAIL BLAZERS 2016 NBA PLAYOFFS RECAP WESTERN CONFERENCE FIRST ROUND: (5) POR over (4) LAC, 4-2 WESTERN CONFERENCE SEMIFINALS: (1) GSW over (5) POR, 4-1 GAME 5 STARTERS Forward 8 Al-Farouq Aminu
Hockey IQ Quiz. player by answering a few multiple choice questions.
Hockey IQ Quiz Ever wonder how your hockey sense or what I and others like to call hockey IQ compares to other hockey players? While size, strength, stickhandling and shot power are all skills that are
Feb 7 Homework Solutions Math 151, Winter 2012. Chapter 4 Problems (pages 172-179)
Feb 7 Homework Solutions Math 151, Winter 2012 Chapter Problems (pages 172-179) Problem 3 Three dice are rolled. By assuming that each of the 6 3 216 possible outcomes is equally likely, find the probabilities
6.4 Normal Distribution
Contents 6.4 Normal Distribution....................... 381 6.4.1 Characteristics of the Normal Distribution....... 381 6.4.2 The Standardized Normal Distribution......... 385 6.4.3 Meaning of Areas under
Numerical Algorithms for Predicting Sports Results
Numerical Algorithms for Predicting Sports Results by Jack David Blundell, 1 School of Computing, Faculty of Engineering ABSTRACT Numerical models can help predict the outcome of sporting events. The features
Themes. Best wishes. Michael Beale Youth Development Officer 01932 596 122 07841 460 235 [email protected]
Themes Dear Coach, Its my pleasure to present you with our foundation development coaching manual. This manual is a sample of the work that is conducted in our Foundation programme. The programme is put
Data Mining - Evaluation of Classifiers
Data Mining - Evaluation of Classifiers Lecturer: JERZY STEFANOWSKI Institute of Computing Sciences Poznan University of Technology Poznan, Poland Lecture 4 SE Master Course 2008/2009 revised for 2010
DESCRIPTIVE STATISTICS. The purpose of statistics is to condense raw data to make it easier to answer specific questions; test hypotheses.
DESCRIPTIVE STATISTICS The purpose of statistics is to condense raw data to make it easier to answer specific questions; test hypotheses. DESCRIPTIVE VS. INFERENTIAL STATISTICS Descriptive To organize,
Pick Me a Winner An Examination of the Accuracy of the Point-Spread in Predicting the Winner of an NFL Game
Pick Me a Winner An Examination of the Accuracy of the Point-Spread in Predicting the Winner of an NFL Game Richard McGowan Boston College John Mahon University of Maine Abstract Every week in the fall,
True Value in the NBA: An Analysis of On-Court Performance and Its Effects on Revenues
True Value in the NBA: An Analysis of On-Court Performance and Its Effects on Revenues Undergraduate Honor Thesis Harrison Li Advisor: David Card Department of Economics University of California, Berkeley
hockeyplayerdeveloper.com
Every position on the team is important, but not many teams win championships that don t have wingers who are strong physically along the boards, in front of their net and in their corners, and/or can
How To Play Usbf
Open Rules The United States Bocce Federation is a nonprofit, charitable corporation organized to promote the sport of Bocce through education and amateur competition and any funds received are used strictly
We employed reinforcement learning, with a goal of maximizing the expected value. Our bot learns to play better by repeated training against itself.
Date: 12/14/07 Project Members: Elizabeth Lingg Alec Go Bharadwaj Srinivasan Title: Machine Learning Applied to Texas Hold 'Em Poker Introduction Part I For the first part of our project, we created a
COACHING GOALS FOR U7 TO U10 PLAYERS
COACHING GOALS FOR U7 TO U10 PLAYERS The players in these age groups are fundamental to the growth and success of Mandeville Soccer Club. More importantly, what these players are taught during these years
Abstract. 1 Introduction. 2 Background
CourtVision: New Visual and Spatial Analytics for the NBA Kirk Goldsberry, Ph.D. Harvard University, 1730 Cambridge St, Cambridge, MA, 02138 Email: [email protected] Abstract This paper investigates
Clustering. Danilo Croce Web Mining & Retrieval a.a. 2015/201 16/03/2016
Clustering Danilo Croce Web Mining & Retrieval a.a. 2015/201 16/03/2016 1 Supervised learning vs. unsupervised learning Supervised learning: discover patterns in the data that relate data attributes with
Predicting Soccer Match Results in the English Premier League
Predicting Soccer Match Results in the English Premier League Ben Ulmer School of Computer Science Stanford University Email: [email protected] Matthew Fernandez School of Computer Science Stanford University
Ensemble Methods. Knowledge Discovery and Data Mining 2 (VU) (707.004) Roman Kern. KTI, TU Graz 2015-03-05
Ensemble Methods Knowledge Discovery and Data Mining 2 (VU) (707004) Roman Kern KTI, TU Graz 2015-03-05 Roman Kern (KTI, TU Graz) Ensemble Methods 2015-03-05 1 / 38 Outline 1 Introduction 2 Classification
17 Basic Rules of Soccer
17 Basic Rules of Soccer Soccer has 17 laws or rules by which the game is played. Most of these laws are easy to understand. The laws are designed to make soccer fun, safe, and fair for all participants.
TULANE BASEBALL ARBITRATION COMPETITION BRIEF FOR THE TEXAS RANGERS. Team 20
TULANE BASEBALL ARBITRATION COMPETITION BRIEF FOR THE TEXAS RANGERS Team 20 1 Table of Contents I. Introduction...3 II. Nelson Cruz s Contribution during Last Season Favors the Rangers $4.7 Million Offer...4
CALCULATIONS & STATISTICS
CALCULATIONS & STATISTICS CALCULATION OF SCORES Conversion of 1-5 scale to 0-100 scores When you look at your report, you will notice that the scores are reported on a 0-100 scale, even though respondents
An Ensemble Learning Approach for the Kaggle Taxi Travel Time Prediction Challenge
An Ensemble Learning Approach for the Kaggle Taxi Travel Time Prediction Challenge Thomas Hoch Software Competence Center Hagenberg GmbH Softwarepark 21, 4232 Hagenberg, Austria Tel.: +43-7236-3343-831
Read and React Offense Drills
Read and React Offense Drills Table of Contents. Foundation: PASS & CUT. Foundation: POST-PASS & CUT (North-South) 6. Foundation: DRIBBLE-AT 7 4. Circle Movement: Dribble Penetration 8 5. Basic Post Slides
17 Laws of Soccer. LAW 5 The Referee The referee enforces the 17 laws.
17 Laws of Soccer The 17 laws explained below are the basic laws of soccer accepted throughout the world. These laws are usually altered slightly so the game is more fun and beneficial for young players.
Variables Control Charts
MINITAB ASSISTANT WHITE PAPER This paper explains the research conducted by Minitab statisticians to develop the methods and data checks used in the Assistant in Minitab 17 Statistical Software. Variables
Exploratory Analysis of Marketing Data: Trees vs. Regression
Exploratory Analysis of Marketing Data: Trees vs. Regression J. Scott Armstrong Assistant Professor of Marketing, The Wharton School and James G. Andress Consultant at Booz, Allen, and Hamilton, Inc.,
Player Development Guideline U11 & U12 Boys and Girls Soccer. www.marlboroyouthsoccer.org
Player Development Guideline U11 & U12 Boys and Girls Soccer www.marlboroyouthsoccer.org Marlboro Youth Soccer Overview 2 Marlboro Youth Soccer Mission Marlboro Youth Soccer (MYS) is dedicated to providing
Peoria Park District Youth Soccer Practice Drills
Peoria Park District Youth Soccer Practice Drills Goals of practice: Keep everyone involved and active Stress everyone touching the soccer ball as much as possible in practice Do NOT scrimmage the entire
DEVELOPING HOCKEY SENSE
DEVELOPING HOCKEY SENSE January 2008 Page 1 DEVELOPING HOCKEY SENSE "IT IS NOT IMPORTANT, THAT EVERYONE THINKS THE SAME WAY. BUT IT IS IMPORTANT, THAT EVERYONE THINKS." One of the biggest threats for the
Beginner Youth Basketball Plays
Beginner Youth Basketball Plays Table of Contents Introduction 3 1-3-1 Offense 4 1-4 Offense 5 Box Offense 13 Flex Offense 15 Man Offense 18 Shuffle Offense 22 Zone Offense 26 Motion Offense 33 Triangle
