Empirical Example II of Chapter 7

Size: px
Start display at page:

Download "Empirical Example II of Chapter 7"

Transcription

1 Empirical Example II of Chapter 7 1. We use NBA data. The description of variables is storage display value variable name type format label variable label marr byte %9.2f =1 if married wage float %9.2f annual salary, millions $ exper byte %9.2f years as a professional player age byte %9.2f age in years coll byte %9.2f years playing at college games byte %9.2f average games per year minutes int %9.2f minutes per season points float %9.2f points per game rebounds float %9.2f rebounds per game assists float %10.2f assists per game draft int %9.2f draft number allstar byte %9.2f all-star player avgmin float %9.2f minutes per game black byte %9.2f =1 if black children byte %9.2f =1 if has children position str7 position of the player 2. We are interested in how the position of a player affects points and wage. But we need to be careful because position is a string and categorical (qualitative) variable. Unlike the dummy variable, position can take three values. In probability theory, we assume position follows multinomial distribution. 1

2 . tab position position Freq. Percent Cum. center forward guard Total Exercise: Can you guess which position has highest average wage? 3. The bar graph below compares the average points across positions graph bar points, over(position) mean of points center forward guard Exercise: how much is the average point of center? 4. The statistical significance of the difference cannot be seen from the graph. To do so, we need to generate a set of dummy variables, one dummy for each position:. gen guard = (position=="guard"). gen center = (position=="center"). gen forward = (position=="forward") 2

3 You can use command tab to verify that the dummies are generated appropriately.. tab guard guard Freq. Percent Cum Total The fact that the sum of guard, center and forward is one, a constant, indicates that we cannot use all three dummy variables along with the constant term. Otherwise we would run into dummy variable trap, a situation in which perfect multicollinearity arises. 6. Intuitively, because there are only three positions, we know a person must be center if he or she is not forward or guard. In other words, the center dummy is redundant once forward and guard dummies are included in the regression. 7. So, to avoid the dummy variable trap, we try using only two dummy variables along with the constant term. reg points forward guard Source SS df MS Number of obs = F( 2, 284) = 3.36 Model Prob > F = Residual R-squared = Adj R-squared = Total Root MSE = points Coef. Std. Err. t P> t [95% Conf. Interval] forward guard

4 _cons ˆβ0 = is the average points for center (the base group, for which both forward and guard equal zero, or for which we drop the corresponding dummy variable). ˆβ1 = is the difference of average points between forward and center; ˆβ 2 = is the difference of average points between guard and center. In short, all comparison is made relative to the base group, and in this case, the base group is center. 9. Exercise: how much is ˆβ 0 if we use command reg points center guard? Which is the base group now? 10. We can test the null hypothesis that position does not matter for points, i.e., no difference between forward and center, and no difference between guard and center:. test forward guard ( 1) forward = 0 ( 2) guard = 0 F( 2, 284) = 3.36 Prob > F = The p-value is less than 0.05, so we find evidences that there is difference in points across positions (or position matters for points). Notice that this F test is reported by reg command automatically next to the ANOVA table. It is called F statistic for overall significance of a regression, see page 152 of the textbook for detail. 11. In fields like biology, people would say position is treatment, and another name for the F test is analysis of variance, or ANOVA for short. Simply put, we can carry out ANOVA by regressing a variable on a set of dummy variables and conduct the F test that all coefficients of dummy variables equal zero. 12. Alternatively, we can include all three dummy variables in regression, but then we have to drop the constant term with option noc. reg points center forward guard, noc 4

5 Source SS df MS Number of obs = F( 3, 284) = Model Prob > F = Residual R-squared = Adj R-squared = Total Root MSE = points Coef. Std. Err. t P> t [95% Conf. Interval] center forward guard The advantage of this regression without intercept is that we can get average points for each position directly. Nevertheless, the disadvantage is that we cannot test the difference directly, and R-squared now becomes misleading because without constant term one of the first order conditions of OLS becomes invalid i ûi For position, we can generate a non-string categorical variable called pid,. encode position, gen(pid). list position pid in 1/5, nolab position pid guard 3 2. guard 3 3. center 1 4. guard 3 5. forward

6 and run regression based on pid. reg points i.pid, nohe points Coef. Std. Err. t P> t [95% Conf. Interval] pid _cons Pay attention the regressor is specified as i.pid. The result is the same as the regression that uses forward and guard as regressors. 14. What is wrong with this command reg points pid? 6

7 15. Finally, let s see what factors matter for log wage. reg lwage marr exper minutes points rebounds assists allstar avgmin black guard. gen lwage = log(wage) (13 missing values generated) lwage Coef. Std. Err. t P> t [95% Conf. Interval] marr exper minutes points rebounds assists allstar avgmin black guard forward _cons Exercise: how to interpret each coefficient? 16. What are the possible reasons that minutes, rebounds and assists are insignificant? 7

Persistence racial difference in socioeconomic outcomes. Are Emily and Greg More Employable than Lakisha and Jamal?

Persistence racial difference in socioeconomic outcomes. Are Emily and Greg More Employable than Lakisha and Jamal? Are Emily and Greg More Employable than Lakisha and Jamal? Bertrand and Mullainathan Persistence racial difference in socioeconomic outcomes Large difference in outcomes between similarly defined blacks

More information

Announcements. % College graduate vs. % Hispanic in LA. % College educated vs. % Hispanic in LA. Problem Set 10 Due Wednesday.

Announcements. % College graduate vs. % Hispanic in LA. % College educated vs. % Hispanic in LA. Problem Set 10 Due Wednesday. Announcements Announcements UNIT 7: MULTIPLE LINEAR REGRESSION LECTURE 1: INTRODUCTION TO MLR STATISTICS 101 Problem Set 10 Due Wednesday Nicole Dalzell June 15, 2015 Statistics 101 (Nicole Dalzell) U7

More information

Introduction to Analysis of Variance (ANOVA) The Structural Model, The Summary Table, and the One- Way ANOVA

Introduction to Analysis of Variance (ANOVA) The Structural Model, The Summary Table, and the One- Way ANOVA Introduction to Analysis of Variance (ANOVA) The Structural Model, The Summary Table, and the One- Way ANOVA Limitations of the t-test Although the t-test is commonly used, it has limitations Can only

More information

Midterm Exam 1, section 2. Thursday, September hour, 15 minutes

Midterm Exam 1, section 2. Thursday, September hour, 15 minutes San Francisco State University Michael Bar ECON 312 Fall 2018 Midterm Exam 1, section 2 Thursday, September 27 1 hour, 15 minutes Name: Instructions 1. This is closed book, closed notes exam. 2. You can

More information

Analysis of Variance. Copyright 2014 Pearson Education, Inc.

Analysis of Variance. Copyright 2014 Pearson Education, Inc. Analysis of Variance 12-1 Learning Outcomes Outcome 1. Understand the basic logic of analysis of variance. Outcome 2. Perform a hypothesis test for a single-factor design using analysis of variance manually

More information

Measuring the I in Team

Measuring the I in Team Measuring the I in Team Compensation and Player Productivity in the NBA By: Jeremy Bauer Advisor: Steffen Habermalz 1 Acknowledgments I would like to thank Steffen Habermalz for his help and guidance with

More information

Quantitative Methods for Economics Tutorial 6. Katherine Eyal

Quantitative Methods for Economics Tutorial 6. Katherine Eyal Quantitative Methods for Economics Tutorial 6 Katherine Eyal TUTORIAL 6 13 September 2010 ECO3021S Part A: Problems 1. (a) In 1857, the German statistician Ernst Engel formulated his famous law: Households

More information

Distancei = BrandAi + 2 BrandBi + 3 BrandCi + i

Distancei = BrandAi + 2 BrandBi + 3 BrandCi + i . Suppose that the United States Golf Associate (USGA) wants to compare the mean distances traveled by four brands of golf balls when struck by a driver. A completely randomized design is employed with

More information

PLANNED ORTHOGONAL CONTRASTS

PLANNED ORTHOGONAL CONTRASTS PLANNED ORTHOGONAL CONTRASTS Please note: This handout is useful background for the workshop, not what s covered in it. Basic principles for contrasts are the same in repeated measures. Planned orthogonal

More information

Running head: DATA ANALYSIS AND INTERPRETATION 1

Running head: DATA ANALYSIS AND INTERPRETATION 1 Running head: DATA ANALYSIS AND INTERPRETATION 1 Data Analysis and Interpretation Final Project Vernon Tilly Jr. University of Central Oklahoma DATA ANALYSIS AND INTERPRETATION 2 Owners of the various

More information

The Simple Linear Regression Model ECONOMETRICS (ECON 360) BEN VAN KAMMEN, PHD

The Simple Linear Regression Model ECONOMETRICS (ECON 360) BEN VAN KAMMEN, PHD The Simple Linear Regression Model ECONOMETRICS (ECON 360) BEN VAN KAMMEN, PHD Outline Definition. Deriving the Estimates. Properties of the Estimates. Units of Measurement and Functional Form. Expected

More information

Department of Economics Working Paper

Department of Economics Working Paper Department of Economics Working Paper Number 15-13 December 2015 Are Findings of Salary Discrimination Against Foreign-Born Players in the NBA Robust?* James Richard Hill Central Michigan University Peter

More information

Announcements. Lecture 19: Inference for SLR & Transformations. Online quiz 7 - commonly missed questions

Announcements. Lecture 19: Inference for SLR & Transformations. Online quiz 7 - commonly missed questions Announcements Announcements Lecture 19: Inference for SLR & Statistics 101 Mine Çetinkaya-Rundel April 3, 2012 HW 7 due Thursday. Correlation guessing game - ends on April 12 at noon. Winner will be announced

More information

Efficiency Wages in Major League Baseball Starting. Pitchers Greg Madonia

Efficiency Wages in Major League Baseball Starting. Pitchers Greg Madonia Efficiency Wages in Major League Baseball Starting Pitchers 1998-2001 Greg Madonia Statement of Problem Free agency has existed in Major League Baseball (MLB) since 1974. This is a mechanism that allows

More information

Unit 4: Inference for numerical variables Lecture 3: ANOVA

Unit 4: Inference for numerical variables Lecture 3: ANOVA Unit 4: Inference for numerical variables Lecture 3: ANOVA Statistics 101 Thomas Leininger June 10, 2013 Announcements Announcements Proposals due tomorrow. Will be returned to you by Wednesday. You MUST

More information

Modelling residential prices with cointegration techniques and automatic selection algorithms

Modelling residential prices with cointegration techniques and automatic selection algorithms Modelling residential prices with cointegration techniques and automatic selection algorithms Ramiro J. Rodríguez A presentation for ERES 2014 - PhD Sessions Bucharest, Rumania The opinions and analyses

More information

Don t Worry, College Doesn t Make You Successful In the NBA

Don t Worry, College Doesn t Make You Successful In the NBA Claremont Colleges Scholarship @ Claremont CMC Senior Theses CMC Student Scholarship 2017 Don t Worry, College Doesn t Make You Successful In the NBA Cameron E. Van Claremont McKenna College Recommended

More information

Department of Economics Working Paper

Department of Economics Working Paper Department of Economics Working Paper Number 16-11 August 2016 Is There a Wage Premium or Wage Discrimination For Foreign-Born Players in the NBA? James Richard Hill Central Michigan University Peter A.

More information

Setting up group models Part 1 NITP, 2011

Setting up group models Part 1 NITP, 2011 Setting up group models Part 1 NITP, 2011 What is coming up Crash course in setting up models 1-sample and 2-sample t-tests Paired t-tests ANOVA! Mean centering covariates Identifying rank deficient matrices

More information

Navigate to the golf data folder and make it your working directory. Load the data by typing

Navigate to the golf data folder and make it your working directory. Load the data by typing Golf Analysis 1.1 Introduction In a round, golfers have a number of choices to make. For a particular shot, is it better to use the longest club available to try to reach the green, or would it be better

More information

Week 7 One-way ANOVA

Week 7 One-way ANOVA Week 7 One-way ANOVA Objectives By the end of this lecture, you should be able to: Understand the shortcomings of comparing multiple means as pairs of hypotheses. Understand the steps of the ANOVA method

More information

Pairwise Comparison Models: A Two-Tiered Approach to Predicting Wins and Losses for NBA Games

Pairwise Comparison Models: A Two-Tiered Approach to Predicting Wins and Losses for NBA Games Pairwise Comparison Models: A Two-Tiered Approach to Predicting Wins and Losses for NBA Games Tony Liu Introduction The broad aim of this project is to use the Bradley Terry pairwise comparison model as

More information

a) List and define all assumptions for multiple OLS regression. These are all listed in section 6.5

a) List and define all assumptions for multiple OLS regression. These are all listed in section 6.5 Prof. C. M. Dalton ECN 209A Spring 2015 Practice Problems (After HW1, HW2, before HW3) CORRECTED VERSION Question 1. Draw and describe a relationship with heteroskedastic errors. Support your claim with

More information

Name May 3, 2007 Math Probability and Statistics

Name May 3, 2007 Math Probability and Statistics Name May 3, 2007 Math 341 - Probability and Statistics Long Exam IV Instructions: Please include all relevant work to get full credit. Encircle your final answers. 1. An article in Professional Geographer

More information

y ) s x x )(y i (x i r = 1 n 1 s y Statistics Lecture 7 Exploring Data , y 2 ,y n (x 1 ),,(x n ),(x 2 ,y 1 How two variables vary together

y ) s x x )(y i (x i r = 1 n 1 s y Statistics Lecture 7 Exploring Data , y 2 ,y n (x 1 ),,(x n ),(x 2 ,y 1 How two variables vary together Statistics 111 - Lecture 7 Exploring Data Numerical Summaries for Relationships between Variables Administrative Notes Homework 1 due in recitation: Friday, Feb. 5 Homework 2 now posted on course website:

More information

Statistical Analysis of PGA Tour Skill Rankings USGA Research and Test Center June 1, 2007

Statistical Analysis of PGA Tour Skill Rankings USGA Research and Test Center June 1, 2007 Statistical Analysis of PGA Tour Skill Rankings 198-26 USGA Research and Test Center June 1, 27 1. Introduction The PGA Tour has recorded and published Tour Player performance statistics since 198. All

More information

Effects of TV Contracts on NBA Salaries

Effects of TV Contracts on NBA Salaries Effects of TV Contracts on NBA Salaries Troy Kelly Economics Honors Spring 2017 Abstract: This paper constructs a panel of player-season observations of performance statistics and salaries for every player

More information

Unit4: Inferencefornumericaldata 4. ANOVA. Sta Spring Duke University, Department of Statistical Science

Unit4: Inferencefornumericaldata 4. ANOVA. Sta Spring Duke University, Department of Statistical Science Unit4: Inferencefornumericaldata 4. ANOVA Sta 101 - Spring 2016 Duke University, Department of Statistical Science Dr. Çetinkaya-Rundel Slides posted at http://bit.ly/sta101_s16 Outline 1. Housekeeping

More information

Chapter 12 Practice Test

Chapter 12 Practice Test Chapter 12 Practice Test 1. Which of the following is not one of the conditions that must be satisfied in order to perform inference about the slope of a least-squares regression line? (a) For each value

More information

Does the NBA Encourage Early Entry? Griffin T. Tormey. Professor Marjorie B. McElroy, Faculty Advisor

Does the NBA Encourage Early Entry? Griffin T. Tormey. Professor Marjorie B. McElroy, Faculty Advisor Griffin T. Tormey Professor Marjorie B. McElroy, Faculty Advisor Honors Thesis submitted in partial fulfillment of the requirements for Graduation with Distinction in Economics in Trinity College of Duke

More information

Evaluation of Regression Approaches for Predicting Yellow Perch (Perca flavescens) Recreational Harvest in Ohio Waters of Lake Erie

Evaluation of Regression Approaches for Predicting Yellow Perch (Perca flavescens) Recreational Harvest in Ohio Waters of Lake Erie Evaluation of Regression Approaches for Predicting Yellow Perch (Perca flavescens) Recreational Harvest in Ohio Waters of Lake Erie QFC Technical Report T2010-01 Prepared for: Ohio Department of Natural

More information

Taking Your Class for a Walk, Randomly

Taking Your Class for a Walk, Randomly Taking Your Class for a Walk, Randomly Daniel Kaplan Macalester College Oct. 27, 2009 Overview of the Activity You are going to turn your students into an ensemble of random walkers. They will start at

More information

One-way ANOVA: round, narrow, wide

One-way ANOVA: round, narrow, wide 5/4/2009 9:19:18 AM Retrieving project from file: 'C:\DOCUMENTS AND SETTINGS\BOB S\DESKTOP\RJS\COURSES\MTAB\FIRSTBASE.MPJ' ========================================================================== This

More information

This page intentionally left blank

This page intentionally left blank PART III BASKETBALL This page intentionally left blank 28 BASKETBALL STATISTICS 101 The Four- Factor Model For each player and team NBA box scores track the following information: two- point field goals

More information

MGB 203B Homework # LSD = 1 1

MGB 203B Homework # LSD = 1 1 MGB 0B Homework # 4.4 a α =.05: t = =.05 LSD = α /,n k t.05, 7 t α /,n k MSE + =.05 700 + = 4.8 n i n j 0 0 i =, j = 8.7 0.4 7. i =, j = 8.7.7 5.0 i =, j = 0.4.7. Conclusion: µ differs from µ and µ. b

More information

A few things to remember about ANOVA

A few things to remember about ANOVA A few things to remember about ANOVA 1) The F-test that is performed is always 1-tailed. This is because your alternative hypothesis is always that the between group variation is greater than the within

More information

Gamblers Favor Skewness, Not Risk: Further Evidence from United States Lottery Games

Gamblers Favor Skewness, Not Risk: Further Evidence from United States Lottery Games Gamblers Favor Skewness, Not Risk: Further Evidence from United States Lottery Games Thomas A. Garrett Russell S. Sobel Department of Economics West Virginia University Morgantown, West Virginia 26506

More information

Section I: Multiple Choice Select the best answer for each problem.

Section I: Multiple Choice Select the best answer for each problem. Inference for Linear Regression Review Section I: Multiple Choice Select the best answer for each problem. 1. Which of the following is NOT one of the conditions that must be satisfied in order to perform

More information

1 Introduction. 2 EAD and Derived Factors

1 Introduction. 2 EAD and Derived Factors Introduction A banking industry standard approach to estimating future unexpected losses to credit portfolios relies on three modeled risk measures: probability of default, loss given default, and exposure

More information

FISH 415 LIMNOLOGY UI Moscow

FISH 415 LIMNOLOGY UI Moscow Sampling Equipment Lab FISH 415 LIMNOLOGY UI Moscow Purpose: - to familiarize you with limnological sampling equipment - to use some of the equipment to obtain profiles of temperature, dissolved oxygen,

More information

Case Processing Summary. Cases Valid Missing Total N Percent N Percent N Percent % 0 0.0% % % 0 0.0%

Case Processing Summary. Cases Valid Missing Total N Percent N Percent N Percent % 0 0.0% % % 0 0.0% GET FILE='C:\Users\acantrell\Desktop\demo5.sav'. DATASET NAME DataSet1 WINDOW=FRONT. EXAMINE VARIABLES=PASSYDSPG RUSHYDSPG /PLOT BOXPLOT HISTOGRAM /COMPARE GROUPS /STATISTICS DESCRIPTIVES /CINTERVAL 95

More information

One-factor ANOVA by example

One-factor ANOVA by example ANOVA One-factor ANOVA by example 2 One-factor ANOVA by visual inspection 3 4 One-factor ANOVA H 0 H 0 : µ 1 = µ 2 = µ 3 = H A : not all means are equal 5 One-factor ANOVA but why not t-tests t-tests?

More information

DISMAS Evaluation: Dr. Elizabeth C. McMullan. Grambling State University

DISMAS Evaluation: Dr. Elizabeth C. McMullan. Grambling State University DISMAS Evaluation 1 Running head: Project Dismas Evaluation DISMAS Evaluation: 2007 2008 Dr. Elizabeth C. McMullan Grambling State University DISMAS Evaluation 2 Abstract An offender notification project

More information

Legendre et al Appendices and Supplements, p. 1

Legendre et al Appendices and Supplements, p. 1 Legendre et al. 2010 Appendices and Supplements, p. 1 Appendices and Supplement to: Legendre, P., M. De Cáceres, and D. Borcard. 2010. Community surveys through space and time: testing the space-time interaction

More information

Department of Economics Working Paper

Department of Economics Working Paper Department of Economics Working Paper Number 13-25 October 2013 Compensation Discrimination in the NFL: An Analysis of Career Earnings Johnny Ducking North Carolina A&T State University Peter A. Groothuis

More information

Stats 2002: Probabilities for Wins and Losses of Online Gambling

Stats 2002: Probabilities for Wins and Losses of Online Gambling Abstract: Jennifer Mateja Andrea Scisinger Lindsay Lacher Stats 2002: Probabilities for Wins and Losses of Online Gambling The objective of this experiment is to determine whether online gambling is a

More information

Biostatistics & SAS programming

Biostatistics & SAS programming Biostatistics & SAS programming Kevin Zhang March 6, 2017 ANOVA 1 Two groups only Independent groups T test Comparison One subject belongs to only one groups and observed only once Thus the observations

More information

IDENTIFYING SUBJECTIVE VALUE IN WOMEN S COLLEGE GOLF RECRUITING REGARDLESS OF SOCIO-ECONOMIC CLASS. Victoria Allred

IDENTIFYING SUBJECTIVE VALUE IN WOMEN S COLLEGE GOLF RECRUITING REGARDLESS OF SOCIO-ECONOMIC CLASS. Victoria Allred IDENTIFYING SUBJECTIVE VALUE IN WOMEN S COLLEGE GOLF RECRUITING REGARDLESS OF SOCIO-ECONOMIC CLASS by Victoria Allred A Senior Honors Project Presented to the Honors College East Carolina University In

More information

Determinants of college hockey attendance

Determinants of college hockey attendance University of Northern Iowa UNI ScholarWorks Honors Program Theses University Honors Program 2014 Determinants of college hockey attendance Max Martino University of Northern Iowa Copyright 2014 Max Martino

More information

Building an NFL performance metric

Building an NFL performance metric Building an NFL performance metric Seonghyun Paik (spaik1@stanford.edu) December 16, 2016 I. Introduction In current pro sports, many statistical methods are applied to evaluate player s performance and

More information

1. Answer this student s question: Is a random sample of 5% of the students at my school large enough, or should I use 10%?

1. Answer this student s question: Is a random sample of 5% of the students at my school large enough, or should I use 10%? Econ 57 Gary Smith Fall 2011 Final Examination (150 minutes) No calculators allowed. Just set up your answers, for example, P = 49/52. BE SURE TO EXPLAIN YOUR REASONING. If you want extra time, you can

More information

Experimental Design and Data Analysis Part 2

Experimental Design and Data Analysis Part 2 Experimental Design and Data Analysis Part 2 Assump@ons for Parametric Tests t- test and ANOVA Independence Variance Normality t-test Yes Yes Yes ANOVA Yes Yes Yes Lecture 7 AEC 460 Assume homogeneity

More information

Modelling Exposure at Default Without Conversion Factors for Revolving Facilities

Modelling Exposure at Default Without Conversion Factors for Revolving Facilities Modelling Exposure at Default Without Conversion Factors for Revolving Facilities Mark Thackham Credit Scoring and Credit Control XV, Edinburgh, August 2017 1 / 27 Objective The objective of this presentation

More information

Example 1: One Way ANOVA in MINITAB

Example 1: One Way ANOVA in MINITAB Example : One Way ANOVA in MINITAB A consumer group wants to compare a new brand of wax (Brand-X) to two leading brands (Sureglow and Microsheen) in terms of Effectiveness of wax. Following data is collected

More information

Competitive Performance of Elite Olympic-Distance Triathletes: Reliability and Smallest Worthwhile Enhancement

Competitive Performance of Elite Olympic-Distance Triathletes: Reliability and Smallest Worthwhile Enhancement SPORTSCIENCE sportsci.org Original Research / Performance Competitive Performance of Elite Olympic-Distance Triathletes: Reliability and Smallest Worthwhile Enhancement Carl D Paton, Will G Hopkins Sportscience

More information

Chapter 2 - Displaying and Describing Categorical Data

Chapter 2 - Displaying and Describing Categorical Data Chapter 2 - Displaying and Describing Categorical Data August 28, 2014 Exploratory Data Analysis - The use of graphs or numerical summaries (values) to describe the variables in a data set and the relation

More information

Chapter 3 - Displaying and Describing Categorical Data

Chapter 3 - Displaying and Describing Categorical Data Chapter 3 - Displaying and Describing Categorical Data August 25, 2010 Exploratory Data Analysis - The use of graphs or numerical summaries (values) to describe the variables in a data set and the relation

More information

Using Actual Betting Percentages to Analyze Sportsbook Behavior: The Canadian and Arena Football Leagues

Using Actual Betting Percentages to Analyze Sportsbook Behavior: The Canadian and Arena Football Leagues Syracuse University SURFACE College Research Center David B. Falk College of Sport and Human Dynamics October 2010 Using Actual Betting s to Analyze Sportsbook Behavior: The Canadian and Arena Football

More information

Pierce 0. Measuring How NBA Players Were Paid in the Season Based on Previous Season Play

Pierce 0. Measuring How NBA Players Were Paid in the Season Based on Previous Season Play Pierce 0 Measuring How NBA Players Were Paid in the 2011-2012 Season Based on Previous Season Play Alex Pierce Economics 499: Senior Research Seminar Dr. John Deal May 14th, 2014 Pierce 1 Abstract This

More information

League Quality and Attendance:

League Quality and Attendance: League Quality and Attendance: Evidence from a European Perspective* Dr Raymond Bachan* and Prof Barry Reilly ** *University of Brighton, UK **University of Sussex, UK Context Are less fashionable soccer

More information

Lesson 14: Modeling Relationships with a Line

Lesson 14: Modeling Relationships with a Line Exploratory Activity: Line of Best Fit Revisited 1. Use the link http://illuminations.nctm.org/activity.aspx?id=4186 to explore how the line of best fit changes depending on your data set. A. Enter any

More information

See if you can determine what the following magnified photos are. Number your paper to 5.

See if you can determine what the following magnified photos are. Number your paper to 5. Challenge 7 See if you can determine what the following magnified photos are. Number your paper to 5. The Answers: EXPERIMENTAL DESIGN Science answers questions with experiments DEFINE THE PROBLEM Begin

More information

End of Chapter Exercises

End of Chapter Exercises End of Chapter Exercises Exercises 1 12 are conceptual questions that are designed to see if you have understood the main concepts of the chapter. 1. While on an airplane, you take a drink from your water

More information

STAT 115 : INTRO TO EXPERIMENTAL DESIGN. Science answers questions with experiments

STAT 115 : INTRO TO EXPERIMENTAL DESIGN. Science answers questions with experiments STAT 115 : INTRO TO EXPERIMENTAL DESIGN Science answers questions with experiments 1 DEFINE THE PROBLEM Begin by asking a question about your topic What is a good question for an experiment? One that is

More information

An Analysis of the Effects of Long-Term Contracts on Performance in Major League Baseball

An Analysis of the Effects of Long-Term Contracts on Performance in Major League Baseball An Analysis of the Effects of Long-Term Contracts on Performance in Major League Baseball Zachary Taylor 1 Haverford College Department of Economics Advisor: Dave Owens Spring 2016 Abstract: This study

More information

Factorial Analysis of Variance

Factorial Analysis of Variance Factorial Analysis of Variance Overview of the Factorial ANOVA Factorial ANOVA (Two-Way) In the context of ANOVA, an independent variable (or a quasiindependent variable) is called a factor, and research

More information

Is lung capacity affected by smoking, sport, height or gender. Table of contents

Is lung capacity affected by smoking, sport, height or gender. Table of contents Sample project This Maths Studies project has been graded by a moderator. As you read through it, you will see comments from the moderator in boxes like this: At the end of the sample project is a summary

More information

Lab 11: Introduction to Linear Regression

Lab 11: Introduction to Linear Regression Lab 11: Introduction to Linear Regression Batter up The movie Moneyball focuses on the quest for the secret of success in baseball. It follows a low-budget team, the Oakland Athletics, who believed that

More information

Transportation Research Forum

Transportation Research Forum Transportation Research Forum Modeling through Traffic Speed at Roundabouts along Urban and Suburban Street Arterials Author(s): Bashar H. Al-Omari, Khalid A. Ghuzlan, and Lina B. Al-Helo Source: Journal

More information

Predicting the Draft and Career Success of Tight Ends in the National Football League

Predicting the Draft and Career Success of Tight Ends in the National Football League University of Pennsylvania ScholarlyCommons Statistics Papers Wharton Faculty Research 10-2014 Predicting the Draft and Career Success of Tight Ends in the National Football League Jason Mulholland University

More information

COMPLETING THE RESULTS OF THE 2013 BOSTON MARATHON

COMPLETING THE RESULTS OF THE 2013 BOSTON MARATHON COMPLETING THE RESULTS OF THE 2013 BOSTON MARATHON Dorit Hammerling 1, Matthew Cefalu 2, Jessi Cisewski 3, Francesca Dominici 2, Giovanni Parmigiani 2,4, Charles Paulson 5, Richard Smith 1,6 1 Statistical

More information

Analysis of recent swim performances at the 2013 FINA World Championship: Counsilman Center, Dept. Kinesiology, Indiana University

Analysis of recent swim performances at the 2013 FINA World Championship: Counsilman Center, Dept. Kinesiology, Indiana University Analysis of recent swim performances at the 2013 FINA World Championship: initial confirmation of the rumored current. Joel M. Stager 1, Andrew Cornett 2, Chris Brammer 1 1 Counsilman Center, Dept. Kinesiology,

More information

Chapter 13. Factorial ANOVA. Patrick Mair 2015 Psych Factorial ANOVA 0 / 19

Chapter 13. Factorial ANOVA. Patrick Mair 2015 Psych Factorial ANOVA 0 / 19 Chapter 13 Factorial ANOVA Patrick Mair 2015 Psych 1950 13 Factorial ANOVA 0 / 19 Today s Menu Now we extend our one-way ANOVA approach to two (or more) factors. Factorial ANOVA: two-way ANOVA, SS decomposition,

More information

Chapter 3 Displaying and Describing Categorical Data

Chapter 3 Displaying and Describing Categorical Data Chapter 3 Displaying and Describing Categorical Data Stats: Modeling the World Chapter 3 are often used to organize categorical data. Frequency tables display the category names and the of the number of

More information

Housing Price and Rent Inflation after Hosting 2018 Winter Olympic Game in the city of Gangneung, Korea

Housing Price and Rent Inflation after Hosting 2018 Winter Olympic Game in the city of Gangneung, Korea Housing Price and Rent Inflation after Hosting 2018 Winter Olympic Game in the city of Gangneung, Korea Chul Sohn Gangneung-Wonju National University, Dept. of Urban Planning and Real Estate, College of

More information

4-3 Rate of Change and Slope. Warm Up Lesson Presentation. Lesson Quiz

4-3 Rate of Change and Slope. Warm Up Lesson Presentation. Lesson Quiz 4-3 Rate of Change and Slope Warm Up Lesson Presentation Lesson Quiz Holt Algebra McDougal 1 Algebra 1 Warm Up 1. Find the x- and y-intercepts of 2x 5y = 20. x-int.: 10; y-int.: 4 Describe the correlation

More information

How to Win in the NBA Playoffs: A Statistical Analysis

How to Win in the NBA Playoffs: A Statistical Analysis How to Win in the NBA Playoffs: A Statistical Analysis Michael R. Summers Pepperdine University Professional sports teams are big business. A team s competitive success is just one part of the franchise

More information

Driv e accu racy. Green s in regul ation

Driv e accu racy. Green s in regul ation LEARNING ACTIVITIES FOR PART II COMPILED Statistical and Measurement Concepts We are providing a database from selected characteristics of golfers on the PGA Tour. Data are for 3 of the players, based

More information

Select Boxplot -> Multiple Y's (simple) and select all variable names.

Select Boxplot -> Multiple Y's (simple) and select all variable names. One Factor ANOVA in Minitab As an example, we will use the data below. A study looked at the days spent in the hospital for different regions of the United States. Can the company reject the claim the

More information

Algebra I: A Fresh Approach. By Christy Walters

Algebra I: A Fresh Approach. By Christy Walters Algebra I: A Fresh Approach By Christy Walters 2016 A+ Education Services All rights reserved. No part of this publication may be reproduced, distributed, stored in a retrieval system, or transmitted,

More information

FISH 415 LIMNOLOGY UI Moscow

FISH 415 LIMNOLOGY UI Moscow FISH 415 LIMNOLOGY UI Moscow Sampling Equipment Purpose: - to familiarize you with limnological sampling equipment - to use some of the equipment to obtain profiles of temperature, dissolved oxygen, conductivity

More information

MJA Rev 10/17/2011 1:53:00 PM

MJA Rev 10/17/2011 1:53:00 PM Problem 8-2 (as stated in RSM Simplified) Leonard Lye, Professor of Engineering and Applied Science at Memorial University of Newfoundland contributed the following case study. It is based on the DOE Golfer,

More information

Pitching Performance and Age

Pitching Performance and Age Pitching Performance and Age By: Jaime Craig, Avery Heilbron, Kasey Kirschner, Luke Rector, Will Kunin Introduction April 13, 2016 Many of the oldest players and players with the most longevity of the

More information

Economic Value of Celebrity Endorsements:

Economic Value of Celebrity Endorsements: Economic Value of Celebrity Endorsements: Tiger Woods Impact on Sales of Nike Golf Balls September 27, 2012 On Line Appendix The Golf Equipments Golf Bags Golf bags are designed to transport the golf clubs

More information

ASTERISK OR EXCLAMATION POINT?: Power Hitting in Major League Baseball from 1950 Through the Steroid Era. Gary Evans Stat 201B Winter, 2010

ASTERISK OR EXCLAMATION POINT?: Power Hitting in Major League Baseball from 1950 Through the Steroid Era. Gary Evans Stat 201B Winter, 2010 ASTERISK OR EXCLAMATION POINT?: Power Hitting in Major League Baseball from 1950 Through the Steroid Era by Gary Evans Stat 201B Winter, 2010 Introduction: After a playerʼs strike in 1994 which resulted

More information

4-3 Rate of Change and Slope. Warm Up. 1. Find the x- and y-intercepts of 2x 5y = 20. Describe the correlation shown by the scatter plot. 2.

4-3 Rate of Change and Slope. Warm Up. 1. Find the x- and y-intercepts of 2x 5y = 20. Describe the correlation shown by the scatter plot. 2. Warm Up 1. Find the x- and y-intercepts of 2x 5y = 20. Describe the correlation shown by the scatter plot. 2. Objectives Find rates of change and slopes. Relate a constant rate of change to the slope of

More information

Descriptive Statistics

Descriptive Statistics Descriptive Statistics Descriptive Statistics vs Inferential Statistics Describing a sample Making inferences to a larger population Data = Information but too much information. How do we summarize data?

More information

ANOVA - Implementation.

ANOVA - Implementation. ANOVA - Implementation http://www.pelagicos.net/classes_biometry_fa17.htm Doing an ANOVA With RCmdr Categorical Variable One-Way ANOVA Testing a single Factor dose with 3 treatments (low, mid, high) Doing

More information

FORECASTING BATTER PERFORMANCE USING STATCAST DATA IN MAJOR LEAGUE BASEBALL

FORECASTING BATTER PERFORMANCE USING STATCAST DATA IN MAJOR LEAGUE BASEBALL FORECASTING BATTER PERFORMANCE USING STATCAST DATA IN MAJOR LEAGUE BASEBALL A Thesis Submitted to the Graduate Faculty of the North Dakota State University of Agriculture and Applied Science By Nicholas

More information

Announcements. Unit 7: Multiple Linear Regression Lecture 3: Case Study. From last lab. Predicting income

Announcements. Unit 7: Multiple Linear Regression Lecture 3: Case Study. From last lab. Predicting income Announcements Announcements Unit 7: Multiple Linear Regression Lecture 3: Case Study Statistics 101 Mine Çetinkaya-Rundel April 18, 2013 OH: Sunday: Virtual OH, 3-4pm - you ll receive an email invitation

More information

End of Chapter Exercises

End of Chapter Exercises End of Chapter Exercises Exercises 1 12 are conceptual questions that are designed to see if you have understood the main concepts of the chapter. 1. While on an airplane, you take a drink from your water

More information

THE INTEGRATION OF THE SEA BREAM AND SEA BASS MARKET: EVIDENCE FROM GREECE AND SPAIN

THE INTEGRATION OF THE SEA BREAM AND SEA BASS MARKET: EVIDENCE FROM GREECE AND SPAIN THE INTEGRATION OF THE SEA BREAM AND SEA BASS MARKET: EVIDENCE FROM GREECE AND SPAIN Lamprakis Avdelas, Managing Authority for the Operational programme for Fisheries, lamprakisa@in.gr Jordi Guillen, University

More information

When Falling Just Short is a Good Thing: the Effect of Past Performance on Improvement.

When Falling Just Short is a Good Thing: the Effect of Past Performance on Improvement. Title: When Falling Just Short is a Good Thing: the Effect of Past Performance on Improvement. Mariya Burdina (corresponding author) Associate Professor of Economics University of Central Oklahoma 100

More information

Does the NBA Encourage Early Entry? Griffin T. Tormey. Professor Marjorie B. McElroy, Faculty Advisor

Does the NBA Encourage Early Entry? Griffin T. Tormey. Professor Marjorie B. McElroy, Faculty Advisor Griffin T. Tormey Professor Marjorie B. McElroy, Faculty Advisor Professor Kent P. Kimbrough, Honors Workshop Instructor Honors Thesis submitted in partial fulfillment of the requirements for graduation

More information

One Way ANOVA (Analysis of Variance)

One Way ANOVA (Analysis of Variance) One Wa ANOVA (Analsis of Variance) The one-wa analsis of variance (ANOVA) is used to determine whether there are an significant differences between the means of two or more independent (unrelated) groups

More information

Robert Jones Bandage Report

Robert Jones Bandage Report Robert Jones Bandage Report Zach Browning Daniel Elsbury Nick Frazey December 13, 011 Table of Contents Abstract:... 3 Introduction:... 3 Background:... 3 Motivation:... 3 Objective:... 4 Methodology:...

More information

Lecture 22: Multiple Regression (Ordinary Least Squares -- OLS)

Lecture 22: Multiple Regression (Ordinary Least Squares -- OLS) Statistics 22_multiple_regression.pdf Michael Hallstone, Ph.D. hallston@hawaii.edu Lecture 22: Multiple Regression (Ordinary Least Squares -- OLS) Some Common Sense Assumptions for Multiple Regression

More information

Standardized CPUE of Indian Albacore caught by Taiwanese longliners from 1980 to 2014 with simultaneous nominal CPUE portion from observer data

Standardized CPUE of Indian Albacore caught by Taiwanese longliners from 1980 to 2014 with simultaneous nominal CPUE portion from observer data Received: 4 July 2016 Standardized CPUE of Indian Albacore caught by Taiwanese longliners from 1980 to 2014 with simultaneous nominal CPUE portion from observer data Yin Chang1, Liang-Kang Lee2 and Shean-Ya

More information

International Discrimination in NBA

International Discrimination in NBA International Discrimination in NBA Sports Economics Drew Zhong Date: May 7 2017 Advisory: Prof. Benjamin Anderson JEL Classification: L83; J31; J42 Abstract Entering the 21st century, the National Basketball

More information

Compensating Wage Differentials and Wage Discrimination in Major League Baseball

Compensating Wage Differentials and Wage Discrimination in Major League Baseball Compensating Wage Differentials and Wage Discrimination in Major League Baseball Wen-Jhan Jane 1, Yu-Shan Kuo 2, Jye-Shyan Wang 3 & Pei-Hsin Fang 4 1 Department of Economics, Shih Hsin University, Taiwan

More information