Economics 561: Economics of Labour (Industrial Relations) Empirical Assignment #2 Due Date: March 7th

Size: px
Start display at page:

Download "Economics 561: Economics of Labour (Industrial Relations) Empirical Assignment #2 Due Date: March 7th"

Transcription

1 Page 1 of 5 2/16/2017 The University of British Columbia Vancouver School of Economics Economics 561: Economics of Labour (Industrial Relations) Professor Nicole M. Fortin Winter 2017 Professor Thomas Lemieux Tue, Thu 11:00-12:30 Iona 533 Empirical Assignment #2 Due Date: March 7th The purpose of this assignment is to estimate the rate of return to education using IV and family fixed effect methods by replicating the results of classic papers on the topic. Feel free to work cooperatively. Groups of a maximum of 2 students can hand in a single assignment for the group. You are encouraged to use Stata which has some procedures already programmed and to gather your commands in a *.do file. Stata is available on the computers on the Iona Graduate Student Computer Lab 003 on the lower level. If you can find equivalent pre-programmed procedures within alternative software, it is fine to use it. Paste in parts of your log files into your assignment to show your results. The data for the assignment are available on the course web site in assign561_2.zip. 1. In this exercise, you are asked to reproduce some of the results of the paper Oreopoulos, P. "Estimating Average and Local Average Treatment Effects of Education when Compulsory School Laws Really Matter " American Economic Review, 96(1): In this paper, Oreopoulos uses the changes in the minimum school leaving age in Britain from age 14 to 15 in 1947 and from 14 to 15 in Northern Ireland in 1957 to estimate returns to schooling. In this assignment, you are first asked to reproduce some of Oreopoulos results (essentially Tables 1 and 2). There was a second change in school leaving age laws in Britain from age 15 to 16 in You are then asked to study whether this second change can be used to identify the treatment effect of education on earnings. Refer to the article for an explanation of the variables. To reproduce Oreopoulos results, you will only need to download the file ghhs_cell_means_05.dta. To extend his analysis to the second law change, you will need the file uk_ghhs_cell_means.dta which includes data until 1985 for Britain only. [Note: Phil Oreopoulos noted difficulties in reproducing the numbers in his orginal study. He provides a new version of ghhs_cell_means_08.dta in a Corrigendum. For the purpose of replication of the original results, please use the original data set ghhs_cell_means_05.dta data set] a) First we want to examine how the instrument is related to the variable of interest. Like Figure 1 and 2 in the paper, we will graph the fraction of adults aged 25 to 60 who said they finished schooling at age 14 by birth cohort, for the year that birth cohort was 14. The first step is to collapse the data by yearat14 and region (Britain: nireland=0 and Northern Ireland: nireland=1) use ghhs_cell_means_05.dta replace yearat14 = yearat

2 Page 2 of 5 2/16/2017 collapse (sum) wght (mean) learn linc lrearn yobirth drop14 drop15 drop16 /* */ educb14 educb15 agelfted [w=wght], by(yearat14 nireland) save ghhscol, replace /*save the file so that it can be used later*/ Second, use the following commands to reproduce Figure 1 * Figure 1 label var educb14 "By Age 14" label var educb15 "By Age 15" label var yearat14 "Year Aged 14" twoway (connected educb14 yearat14 if nireland==0 & yearat14>=1935 & /* */ yearat14<=1965, msize(medlarge) mcolor(black) clcolor(black) clwidth(thick) /* */ xline(1947)) (connected educb15 yearat14 if nireland==0 & yearat14>=1935 & /* */ yearat14<=1965, msize(vsmall) mcolor(black) clcolor(black) clpat(solid) /* */ clwidth(medthick)), ytitle("fraction Leaving Full-Time Education", /* */ margin(small)) ylabel( ) xlabel( /* */ ) scheme(s2mono)saving(figure1,replace) Then make the necessary changes to the code to reproduce Figure 2. Does it appear that the laws make students get even more education than the amount required? After the dropout age changed from 14 to 15 in Britain, did the trend in the fraction of students still in school at age 15 compared to that of Northern Ireland? Can you combine some curves from Figure 1 and Figure 2 to investigate this issue? b) Now investigate whether the 1972 change in the law provides another case of a sizeable effect of compulsory schooling laws on educational attainment. Redo Figure 1 in a) using the file uk_ghhs_cell_means.dta, extending the time period to 1985 and drawing the xline in Does this change look promising? c) Evaluate the reduced form of the effect of school age leavings laws on log earnings using the xi: reg command. First reproduce the results of row 3 (column 4-6) of Table 1 using the following commands, explore the additional regression that includes cohort dummies. use ghhs_cell_means_05.dta gen age2 = age^2 gen age3 = age^3 gen age4 = age^4 gen yearat14_2 = yearat14^2 gen yearat14_3 = yearat14^3 gen yearat14_4 = yearat14^4 egen clust = group(yearat14 nireland) xi: reg lrearn drop15 nireland yearat14 yearat14_2 yearat14_3 yearat14_4 /* xi: reg lrearn drop15 nireland yearat14 yearat14_2 yearat14_3 yearat14_4 age /* */ age2 age3 age4 [w=wght], cluster(clust) xi: reg lrearn drop15 nireland yearat14 yearat14_2 yearat14_3 yearat14_4 /* */ i.age [w=wght], cluster(clust) xi: reg lrearn drop15 nireland i.yearat14 i.age [w=wght], cluster(clust) Do your results match those of Oreopoulos? Try again using log nominal earnings learn instead of log real earnings lrearn. What is the interpretation of the coefficient of drop15? Now modify the above commands to reproduce row 1 and 2 (column 4-6). What is the problem in these cases with the last regression that includes age and cohort dummies?

3 Page 3 of 5 2/16/2017 d) Replace drop15 by agelfted in c) to obtain the OLS estimates of the returns to schooling. Can you reproduce the results of columns 1-3 of Table 2? (Sometimes, the answer is no.) Are these estimates likely to be biased, if yes in which direction? e) Now estimate the first stage of the regression, that is the one that predicts schooling using dropout laws. Here we will focus only on Britain and Northern Ireland together, but with a fixed effect for Northern Ireland. First reproduce the results of row 3 (column 1-3) of Table 1 and obtain a prediction of the education level (by the age left schooling) using the following commands: xi: reg agelfted drop15 nireland yearat14 yearat14_2 yearat14_3 yearat14_4 /* predict pageled1 xi: reg agelfted drop15 nireland yearat14 yearat14_2 yearat14_3 yearat14_4 age /* */ age2 age3 age4 [w=wght], cluster(clust) predict pageled2 xi: reg agelfted drop15 nireland yearat14 yearat14_2 yearat14_3 yearat14_4 i.age /* predict pageled3 Test whether the coefficient of drop15 is significant? Do we have a weak instrument? What is the interpretation of this coefficient? Compare the goodness of fit with and without the drop15 variable? How important is this variable in predicting schooling? f) Use the education prediction in e) to estimate the second stage, i.e. the effect of schooling on earnings. Simply substitute pageled1 for drop15 in the first command in c), pageled2 for drop15 in the second command in c), and so on. What is your interpretation of the coefficient of pageled*? Explain intuitively and briefly how you are estimating this coefficient, what is the source of identification? g) Use Stata s ivregress command to perform the first and second stage of the estimation simultaneously. What other changes do you have to make to reproduce the results of row 1 and row 3 (column 4-6) of Table 2? Compare the coefficients and standard errors for agelfted with those of f)? Which is the correct one? h) Now going back to our extended data set uk_ghhs_cell_means.dta, redo g) using drop16 as instrument. Are the results different? Can you explain what is going on? [Hint: you will find out the answer after doing i) for this sample.] i) Evaluate the potential for a RD design by using the command twoway qfitci which fits a quadratic to the data (Oreopoulos used a quartic) using the collapsed data use ghhscol gen lreabrb=lrearn if nireland==0 & yearat14<=1947 gen lreabra=lrearn if nireland==0 & yearat14>=1947 twoway (qfitci lreabrb yearat14 if nireland==0, sort xline(1947)) /* */ (qfitci lreabra yearat14 if nireland==0, sort xline(1947)) /* */ (scatter lrearn yearat14 if nireland==0, sort ), /* */ scheme(s2mono) xlabel( ) /* */ title("log of Annual Earnings (1998 UK Pounds)", margin(small)) /* */ saving(figure5,replace)

4 Page 4 of 5 2/16/2017 Do the same graph for Northern Ireland? In which jurisdiction is there a stronger potential for a RD design? j) Find the IV-RD estimates of the returns to schooling in Britain and Northern Ireland. Begin by constructing the variables for the polynomial controls and the before and after variables, and then use the latter as instrument for schooling use ghhscol gen yearat14_1 = yearat gen yearat14_2 = yearat14_1^2 gen yearat14_3 = yearat14_1^3 gen yearat14_4 = yearat14_1^4 gen braf=0 if nireland==0 replace braf=1 if nireland==0 & yearat14>=1947 gen niaf=0 if nireland==1 replace niaf=1 if nireland==1 & yearat14>=1957 xi: ivreg lrearn (agelfted=braf) yearat14 yearat14_2 yearat14_3 yearat14_4 /* */ if nireland==0 [w=wght], robust xi: ivreg lrearn (agelfted=niaf) yearat14 yearat14_2 yearat14_3 yearat14_4 /* */ if nireland==1 [w=wght], robust Can you reproduce the result of row 8 (column 2) of Table 4? Show that these estimates for Britain and Northern Ireland correspond to the ones computed from the Wald estimate + + β RD = Y Y D D where the numerator is found by applying the procedures in c) and the denominator by applying the procedures in e) to Britain and Northern Ireland separately. k) Conclude by comparing your OLS estimates from d) with the IV estimates of g) and the RD estimates of j)? Regroup your results in a table (like Table 2, plus an additional column for RD results). Are they similar and what does this indicate? What are the limitations of the RD design in this case? What have you learned about whether compulsory schooling laws provide an adequate research design to estimate the returns to schooling? 2. In this exercise, you are asked to reproduce some of the results of the paper Ashenfelter, O. and A. Krueger, Estimates of the Economic Return to Schooling from a New Sample of Twins, American Economic Review, Vol. 84 (Dec., 1994): The data used by Ashenfelter and Krueger can be downloaded from the course web site under: twins.dta. Refer to the article for explanations of the variables. This study was trying to answer what seems a simple question: By how much will another year of schooling most likely raise one's income? A difficulty in trying to estimate the causal effect of education on earnings from the effect that other variables related to education have on income. Workers natural ability, family background and innate intelligence are all possible confounding factors that should be controlled for to estimate the effect of education on income accurately. Because monozygotic twins are genetically identical and have similar family backgrounds, they are thought to provide an excellent way of controlling for confounding variables. Use the following commands to expand the data set and obtain one observation per twin. expand 2 sort famid by famid: gen t=_n gen lwage=lwage1 if t==1

5 Page 5 of 5 2/16/2017 replace lwage=lwage2 if t==2 gen educ=educ1 if t==1 replace educ=educ2 if t==2 gen educ=educ1 if t==1 replace educ=educ2 if t==2 gen male=male1 if t==1 replace male=male2 if t==2 gen white=white1 if t==1 replace white=white2 if t==2 a) Run an OLS regression of log wages on a constant, schooling, age, age-squared, gender and a racial indicator ( white dummy). What do the coefficients on age and age-squared imply about the life-cycle profile of earnings? Do your estimates match those in column (1) of Table 3 in Ashenfelter and Krueger? What kinds of biases is the OLS coefficient on educ likely to incorporate? b) Use the cluster(famid)option and the robust option in the regress command to adjust the standard errors. Does the significance of the coefficients change? c) Now create dummy variables for each level of schooling, using tab educ, gen (educdd) and run the above OLS regression with those education dummies, omitting the one for high school (educdd=4) instead of the educ variable. Do the estimated coefficients indicate that the effect of education of log wages is linear? d) Compare your OLS estimates with those that incorporates a family fixed effect using the command xi:regress lwage educ age age2 white male i.famid An alternative to fixed effect estimation is to run a model on first differences. Write out the equation in first differences, estimate that differenced equation and compare the results to column (v) in table 3. Should the coefficient of educ in the family fixed effect and the first-differenced model be the same? Are they the same? Note: family fixed effects (dummy for each pair of twins) are directly included in the regression model shown above. As in Brown (1980), a numerically equivalent approach consists of running the regression on differences from means obtained by subtracting the mean family values of the y and x variables from the individual observations of y and x. Stata does this automatically for you using the xtreg command with the fixed effect option fe. In the example used here the Stata command would be: xtreg lwage educ age age2 white male, i(famid) fe e) Use Zellner s seemingly unrelated equations systems to estimate sureg (lwage1 educ1 educ2 age age2 white1 male1) (lwage2 educ2 /* */ educ1 age age2 white2 male2) if t==1 Under the assumptions of a pure family effects model, the difference between the own education coefficient and the estimated sibling education coefficient provides an unbiased estimate of the average marginal return to schooling. When these assumptions fail, we at least get an upper bound on the true returns to education. Are the coefficients previously a)-d) within those bounds?

Labor Economics with STATA. Estimating the Human Capital Model Using Artificial Data

Labor Economics with STATA. Estimating the Human Capital Model Using Artificial Data Labor Economics with STATA Liyousew G. Borga December 2, 2015 Estimating the Human Capital Model Using Artificial Data Liyou Borga Labor Economics with STATA December 2, 2015 84 / 105 Outline 1 The Human

More information

Panel Data 4: Fixed Effects vs Random Effects Models

Panel Data 4: Fixed Effects vs Random Effects Models Panel Data 4: Fixed Effects vs Random Effects Models Richard Williams, University of Notre Dame, http://www3.nd.edu/~rwilliam/ Last revised April 4, 2017 These notes borrow very heavily, sometimes verbatim,

More information

Migration and the Labour Market: Data and Intro to STATA

Migration and the Labour Market: Data and Intro to STATA Migration and the Labour Market: Data and Intro to STATA Prof. Dr. Otto-Friedrich-University of Bamberg, Meeting May 27 and June 9, 2010 Contents of today s meeting 1 Repetition of last meeting Repetition

More information

Week 4: Simple Linear Regression II

Week 4: Simple Linear Regression II Week 4: Simple Linear Regression II Marcelo Coca Perraillon University of Colorado Anschutz Medical Campus Health Services Research Methods I HSMP 7607 2017 c 2017 PERRAILLON ARR 1 Outline Algebraic properties

More information

ITSx: Policy Analysis Using Interrupted Time Series

ITSx: Policy Analysis Using Interrupted Time Series ITSx: Policy Analysis Using Interrupted Time Series Week 5 Slides Michael Law, Ph.D. The University of British Columbia COURSE OVERVIEW Layout of the weeks 1. Introduction, setup, data sources 2. Single

More information

A Short Introduction to STATA

A Short Introduction to STATA A Short Introduction to STATA 1) Introduction: This session serves to link everyone from theoretical equations to tangible results under the amazing promise of Stata! Stata is a statistical package that

More information

Applied Statistics and Econometrics Lecture 6

Applied Statistics and Econometrics Lecture 6 Applied Statistics and Econometrics Lecture 6 Giuseppe Ragusa Luiss University gragusa@luiss.it http://gragusa.org/ March 6, 2017 Luiss University Empirical application. Data Italian Labour Force Survey,

More information

Week 11: Interpretation plus

Week 11: Interpretation plus Week 11: Interpretation plus Marcelo Coca Perraillon University of Colorado Anschutz Medical Campus Health Services Research Methods I HSMP 7607 2017 c 2017 PERRAILLON ARR 1 Outline A bit of a patchwork

More information

Basic Stata Tutorial

Basic Stata Tutorial Basic Stata Tutorial By Brandon Heck Downloading Stata To obtain Stata, select your country of residence and click Go. Then, assuming you are a student, click New Educational then click Students. The capacity

More information

Dr. Barbara Morgan Quantitative Methods

Dr. Barbara Morgan Quantitative Methods Dr. Barbara Morgan Quantitative Methods 195.650 Basic Stata This is a brief guide to using the most basic operations in Stata. Stata also has an on-line tutorial. At the initial prompt type tutorial. In

More information

Introduction to STATA 6.0 ECONOMICS 626

Introduction to STATA 6.0 ECONOMICS 626 Introduction to STATA 6.0 ECONOMICS 626 Bill Evans Fall 2001 This handout gives a very brief introduction to STATA 6.0 on the Economics Department Network. In a few short years, STATA has become one of

More information

Bivariate Linear Regression James M. Murray, Ph.D. University of Wisconsin - La Crosse Updated: October 04, 2017

Bivariate Linear Regression James M. Murray, Ph.D. University of Wisconsin - La Crosse Updated: October 04, 2017 Bivariate Linear Regression James M. Murray, Ph.D. University of Wisconsin - La Crosse Updated: October 4, 217 PDF file location: http://www.murraylax.org/rtutorials/regression_intro.pdf HTML file location:

More information

Data analysis using Microsoft Excel

Data analysis using Microsoft Excel Introduction to Statistics Statistics may be defined as the science of collection, organization presentation analysis and interpretation of numerical data from the logical analysis. 1.Collection of Data

More information

Week 10: Heteroskedasticity II

Week 10: Heteroskedasticity II Week 10: Heteroskedasticity II Marcelo Coca Perraillon University of Colorado Anschutz Medical Campus Health Services Research Methods I HSMP 7607 2017 c 2017 PERRAILLON ARR 1 Outline Dealing with heteroskedasticy

More information

Heteroskedasticity and Homoskedasticity, and Homoskedasticity-Only Standard Errors

Heteroskedasticity and Homoskedasticity, and Homoskedasticity-Only Standard Errors Heteroskedasticity and Homoskedasticity, and Homoskedasticity-Only Standard Errors (Section 5.4) What? Consequences of homoskedasticity Implication for computing standard errors What do these two terms

More information

Instrumental Variable Regression

Instrumental Variable Regression Instrumental Variable Regression Erik Gahner Larsen Advanced applied statistics, 2015 1 / 58 Agenda Instrumental variable (IV) regression IV and LATE IV and regressions IV in STATA and R 2 / 58 IV between

More information

Department of Economics Spring 2018 University of California Economics 154 Professor Martha Olney Stata Lesson Thursday February 15, 2018

Department of Economics Spring 2018 University of California Economics 154 Professor Martha Olney Stata Lesson Thursday February 15, 2018 University of California Economics 154 Berkeley Professor Martha Olney Stata Lesson Thursday February 15, 2018 [1] Where to find the data sets http://www.econ.berkeley.edu/~olney/spring18/econ154 There

More information

8: Statistics. Populations and Samples. Histograms and Frequency Polygons. Page 1 of 10

8: Statistics. Populations and Samples. Histograms and Frequency Polygons. Page 1 of 10 8: Statistics Statistics: Method of collecting, organizing, analyzing, and interpreting data, as well as drawing conclusions based on the data. Methodology is divided into two main areas. Descriptive Statistics:

More information

. predict mod1. graph mod1 ed, connect(l) xlabel ylabel l1(model1 predicted income) b1(years of education)

. predict mod1. graph mod1 ed, connect(l) xlabel ylabel l1(model1 predicted income) b1(years of education) DUMMY VARIABLES AND INTERACTIONS Let's start with an example in which we are interested in discrimination in income. We have a dataset that includes information for about 16 people on their income, their

More information

set mem 10m we can also decide to have the more separation line on the screen or not when the software displays results: set more on set more off

set mem 10m we can also decide to have the more separation line on the screen or not when the software displays results: set more on set more off Setting up Stata We are going to allocate 10 megabites to the dataset. You do not want to allocate to much memory to the dataset because the more memory you allocate to the dataset, the less memory will

More information

MATH 021 UNIT 2 HOMEWORK ASSIGNMENTS

MATH 021 UNIT 2 HOMEWORK ASSIGNMENTS MATH 021 UNIT 2 HOMEWORK ASSIGNMENTS General Instructions You will notice that most of the homework assignments for a section have more than one part. Usually, the part (A) questions ask for explanations,

More information

Coding Categorical Variables in Regression: Indicator or Dummy Variables. Professor George S. Easton

Coding Categorical Variables in Regression: Indicator or Dummy Variables. Professor George S. Easton Coding Categorical Variables in Regression: Indicator or Dummy Variables Professor George S. Easton DataScienceSource.com This video is embedded on the following web page at DataScienceSource.com: DataScienceSource.com/DummyVariables

More information

THE LINEAR PROBABILITY MODEL: USING LEAST SQUARES TO ESTIMATE A REGRESSION EQUATION WITH A DICHOTOMOUS DEPENDENT VARIABLE

THE LINEAR PROBABILITY MODEL: USING LEAST SQUARES TO ESTIMATE A REGRESSION EQUATION WITH A DICHOTOMOUS DEPENDENT VARIABLE PLS 802 Spring 2018 Professor Jacoby THE LINEAR PROBABILITY MODEL: USING LEAST SQUARES TO ESTIMATE A REGRESSION EQUATION WITH A DICHOTOMOUS DEPENDENT VARIABLE This handout shows the log of a Stata session

More information

Linear and Quadratic Least Squares

Linear and Quadratic Least Squares Linear and Quadratic Least Squares Prepared by Stephanie Quintal, graduate student Dept. of Mathematical Sciences, UMass Lowell in collaboration with Marvin Stick Dept. of Mathematical Sciences, UMass

More information

Course Number 432/433 Title Algebra II (A & B) H Grade # of Days 120

Course Number 432/433 Title Algebra II (A & B) H Grade # of Days 120 Whitman-Hanson Regional High School provides all students with a high- quality education in order to develop reflective, concerned citizens and contributing members of the global community. Course Number

More information

An Introduction to Stata Part II: Data Analysis

An Introduction to Stata Part II: Data Analysis An Introduction to Stata Part II: Data Analysis Kerry L. Papps 1. Overview Do-files Sorting a dataset Combining datasets Creating a dataset of means or medians etc. Weights Panel data capabilities Dummy

More information

API-202 Empirical Methods II Spring 2004 A SHORT INTRODUCTION TO STATA 8.0

API-202 Empirical Methods II Spring 2004 A SHORT INTRODUCTION TO STATA 8.0 API-202 Empirical Methods II Spring 2004 A SHORT INTRODUCTION TO STATA 8.0 Course materials and data sets will assume that you are using Stata to complete the analysis. Stata is available on all of the

More information

Your Name: Section: INTRODUCTION TO STATISTICAL REASONING Computer Lab #4 Scatterplots and Regression

Your Name: Section: INTRODUCTION TO STATISTICAL REASONING Computer Lab #4 Scatterplots and Regression Your Name: Section: 36-201 INTRODUCTION TO STATISTICAL REASONING Computer Lab #4 Scatterplots and Regression Objectives: 1. To learn how to interpret scatterplots. Specifically you will investigate, using

More information

REPLACING MLE WITH BAYESIAN SHRINKAGE CAS ANNUAL MEETING NOVEMBER 2018 GARY G. VENTER

REPLACING MLE WITH BAYESIAN SHRINKAGE CAS ANNUAL MEETING NOVEMBER 2018 GARY G. VENTER REPLACING MLE WITH BAYESIAN SHRINKAGE CAS ANNUAL MEETING NOVEMBER 2018 GARY G. VENTER ESTIMATION Problems with MLE known since Charles Stein 1956 paper He showed that when estimating 3 or more means, shrinking

More information

Regression. Dr. G. Bharadwaja Kumar VIT Chennai

Regression. Dr. G. Bharadwaja Kumar VIT Chennai Regression Dr. G. Bharadwaja Kumar VIT Chennai Introduction Statistical models normally specify how one set of variables, called dependent variables, functionally depend on another set of variables, called

More information

Detailed Explanation of Stata Code for a Marginal Effect Plot for X

Detailed Explanation of Stata Code for a Marginal Effect Plot for X Detailed Explanation of Stata Code for a Marginal Effect Plot for X Below, I go through the Stata code for creating a marginal effect plot for X for an interaction model with the following basic form:

More information

Missing Data Techniques

Missing Data Techniques Missing Data Techniques Paul Philippe Pare Department of Sociology, UWO Centre for Population, Aging, and Health, UWO London Criminometrics (www.crimino.biz) 1 Introduction Missing data is a common problem

More information

Introduction to Stata. Getting Started. This is the simple command syntax in Stata and more conditions can be added as shown in the examples.

Introduction to Stata. Getting Started. This is the simple command syntax in Stata and more conditions can be added as shown in the examples. Getting Started Command Syntax command varlist, option This is the simple command syntax in Stata and more conditions can be added as shown in the examples. Preamble mkdir tutorial /* to create a new directory,

More information

STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II. 3 rd Nine Weeks,

STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II. 3 rd Nine Weeks, STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II 3 rd Nine Weeks, 2016-2017 1 OVERVIEW Algebra II Content Review Notes are designed by the High School Mathematics Steering Committee as a resource

More information

An Introductory Guide to Stata

An Introductory Guide to Stata An Introductory Guide to Stata Scott L. Minkoff Assistant Professor Department of Political Science Barnard College sminkoff@barnard.edu Updated: July 9, 2012 1 TABLE OF CONTENTS ABOUT THIS GUIDE... 4

More information

ALGEBRA 1 NOTES. Quarter 3. Name: Block

ALGEBRA 1 NOTES. Quarter 3. Name: Block 2016-2017 ALGEBRA 1 NOTES Quarter 3 Name: Block Table of Contents Unit 8 Exponent Rules Exponent Rules for Multiplication page 4 Negative and Zero Exponents page 8 Exponent Rules Involving Quotients page

More information

( ) = Y ˆ. Calibration Definition A model is calibrated if its predictions are right on average: ave(response Predicted value) = Predicted value.

( ) = Y ˆ. Calibration Definition A model is calibrated if its predictions are right on average: ave(response Predicted value) = Predicted value. Calibration OVERVIEW... 2 INTRODUCTION... 2 CALIBRATION... 3 ANOTHER REASON FOR CALIBRATION... 4 CHECKING THE CALIBRATION OF A REGRESSION... 5 CALIBRATION IN SIMPLE REGRESSION (DISPLAY.JMP)... 5 TESTING

More information

Here is the data collected.

Here is the data collected. Introduction to Scientific Analysis of Data Using Spreadsheets. Computer spreadsheets are very powerful tools that are widely used in Business, Science, and Engineering to perform calculations and record,

More information

SOCY7706: Longitudinal Data Analysis Instructor: Natasha Sarkisian. Panel Data Analysis: Fixed Effects Models

SOCY7706: Longitudinal Data Analysis Instructor: Natasha Sarkisian. Panel Data Analysis: Fixed Effects Models SOCY776: Longitudinal Data Analysis Instructor: Natasha Sarkisian Panel Data Analysis: Fixed Effects Models Fixed effects models are similar to the first difference model we considered for two wave data

More information

STATA 13 INTRODUCTION

STATA 13 INTRODUCTION STATA 13 INTRODUCTION Catherine McGowan & Elaine Williamson LONDON SCHOOL OF HYGIENE & TROPICAL MEDICINE DECEMBER 2013 0 CONTENTS INTRODUCTION... 1 Versions of STATA... 1 OPENING STATA... 1 THE STATA

More information

Second Edition. Concept Builders. Jana Kohout

Second Edition. Concept Builders. Jana Kohout Second Edition Concept Builders Jana Kohout First published in Australia as an online resource in 016. Edited and printed in 017. Jana Kohout 017 Reproduction and Communication for educational purposes

More information

Week 4: Simple Linear Regression III

Week 4: Simple Linear Regression III Week 4: Simple Linear Regression III Marcelo Coca Perraillon University of Colorado Anschutz Medical Campus Health Services Research Methods I HSMP 7607 2017 c 2017 PERRAILLON ARR 1 Outline Goodness of

More information

Econometric Tools 1: Non-Parametric Methods

Econometric Tools 1: Non-Parametric Methods University of California, Santa Cruz Department of Economics ECON 294A (Fall 2014) - Stata Lab Instructor: Manuel Barron 1 Econometric Tools 1: Non-Parametric Methods 1 Introduction This lecture introduces

More information

Econometrics I: OLS. Dean Fantazzini. Dipartimento di Economia Politica e Metodi Quantitativi. University of Pavia

Econometrics I: OLS. Dean Fantazzini. Dipartimento di Economia Politica e Metodi Quantitativi. University of Pavia Dipartimento di Economia Politica e Metodi Quantitativi University of Pavia Overview of the Lecture 1 st EViews Session I: Convergence in the Solow Model 2 Overview of the Lecture 1 st EViews Session I:

More information

STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression

STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression analysis. Analysis of Variance: one way classification,

More information

STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA I. 2 nd Nine Weeks,

STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA I. 2 nd Nine Weeks, STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA I 2 nd Nine Weeks, 2016-2017 1 OVERVIEW Algebra I Content Review Notes are designed by the High School Mathematics Steering Committee as a resource for

More information

Teaching students quantitative methods using resources from the British Birth Cohorts

Teaching students quantitative methods using resources from the British Birth Cohorts Centre for Longitudinal Studies, Institute of Education Teaching students quantitative methods using resources from the British Birth Cohorts Assessment of Cognitive Development through Childhood CognitiveExercises.doc:

More information

Solutions. Algebra II Journal. Module 2: Regression. Exploring Other Function Models

Solutions. Algebra II Journal. Module 2: Regression. Exploring Other Function Models Solutions Algebra II Journal Module 2: Regression Exploring Other Function Models This journal belongs to: 1 Algebra II Journal: Reflection 1 Before exploring these function families, let s review what

More information

Multiple Regression White paper

Multiple Regression White paper +44 (0) 333 666 7366 Multiple Regression White paper A tool to determine the impact in analysing the effectiveness of advertising spend. Multiple Regression In order to establish if the advertising mechanisms

More information

Tips and Guidance for Analyzing Data. Executive Summary

Tips and Guidance for Analyzing Data. Executive Summary Tips and Guidance for Analyzing Data Executive Summary This document has information and suggestions about three things: 1) how to quickly do a preliminary analysis of time-series data; 2) key things to

More information

Specific Objectives Students will understand that that the family of equation corresponds with the shape of the graph. Students will be able to create a graph of an equation by plotting points. In lesson

More information

RUDIMENTS OF STATA. After entering this command the data file WAGE1.DTA is loaded into memory.

RUDIMENTS OF STATA. After entering this command the data file WAGE1.DTA is loaded into memory. J.M. Wooldridge Michigan State University RUDIMENTS OF STATA This handout covers the most often encountered Stata commands. It is not comprehensive, but the summary will allow you to do basic data management

More information

EXAMINATIONS OF THE ROYAL STATISTICAL SOCIETY

EXAMINATIONS OF THE ROYAL STATISTICAL SOCIETY EXAMINATIONS OF THE ROYAL STATISTICAL SOCIETY GRADUATE DIPLOMA, 2015 MODULE 4 : Modelling experimental data Time allowed: Three hours Candidates should answer FIVE questions. All questions carry equal

More information

Enduring Understandings: Some basic math skills are required to be reviewed in preparation for the course.

Enduring Understandings: Some basic math skills are required to be reviewed in preparation for the course. Curriculum Map for Functions, Statistics and Trigonometry September 5 Days Targeted NJ Core Curriculum Content Standards: N-Q.1, N-Q.2, N-Q.3, A-CED.1, A-REI.1, A-REI.3 Enduring Understandings: Some basic

More information

Sacha Kapoor - Masters Metrics

Sacha Kapoor - Masters Metrics Sacha Kapoor - Masters Metrics 091610 1 Address: Max Gluskin House, 150 St.George, Rm 329 Email: sacha.kapoor@utoronto.ca Web: http://individual.utoronto.ca/sacha$_$kapoor 1 Basics Here are some data resources

More information

Statistical Matching using Fractional Imputation

Statistical Matching using Fractional Imputation Statistical Matching using Fractional Imputation Jae-Kwang Kim 1 Iowa State University 1 Joint work with Emily Berg and Taesung Park 1 Introduction 2 Classical Approaches 3 Proposed method 4 Application:

More information

Getting started with Stata 2017: Cheat-sheet

Getting started with Stata 2017: Cheat-sheet Getting started with Stata 2017: Cheat-sheet 4. september 2017 1 Get started Graphical user interface (GUI). Clickable. Simple. Commands. Allows for use of do-le. Easy to keep track. Command window: Write

More information

piecewise ginireg 1 Piecewise Gini Regressions in Stata Jan Ditzen 1 Shlomo Yitzhaki 2 September 8, 2017

piecewise ginireg 1 Piecewise Gini Regressions in Stata Jan Ditzen 1 Shlomo Yitzhaki 2 September 8, 2017 piecewise ginireg 1 Piecewise Gini Regressions in Stata Jan Ditzen 1 Shlomo Yitzhaki 2 1 Heriot-Watt University, Edinburgh, UK Center for Energy Economics Research and Policy (CEERP) 2 The Hebrew University

More information

Are We Really Doing What We think We are doing? A Note on Finite-Sample Estimates of Two-Way Cluster-Robust Standard Errors

Are We Really Doing What We think We are doing? A Note on Finite-Sample Estimates of Two-Way Cluster-Robust Standard Errors Are We Really Doing What We think We are doing? A Note on Finite-Sample Estimates of Two-Way Cluster-Robust Standard Errors Mark (Shuai) Ma Kogod School of Business American University Email: Shuaim@american.edu

More information

Building Concepts: Moving from Proportional Relationships to Linear Equations

Building Concepts: Moving from Proportional Relationships to Linear Equations Lesson Overview In this TI-Nspire lesson, students use previous experience with proportional relationships of the form y = kx to consider relationships of the form y = mx and eventually y = mx + b. Proportional

More information

Characteristics of Exponential Functions

Characteristics of Exponential Functions Math Objectives Students will identify the characteristics of exponential functions of the form f(x) = b x, where b > 1. Students will identify the characteristics of exponential functions of the form

More information

Growth Curve Modeling in Stata. Hsueh-Sheng Wu CFDR Workshop Series February 12, 2018

Growth Curve Modeling in Stata. Hsueh-Sheng Wu CFDR Workshop Series February 12, 2018 Growth Curve Modeling in Stata Hsueh-Sheng Wu CFDR Workshop Series February 12, 2018 1 Outline What is Growth Curve Modeling (GCM) Advantages of GCM Disadvantages of GCM Graphs of trajectories Inter-person

More information

Lecture 2: Advanced data manipulation

Lecture 2: Advanced data manipulation Introduction to Stata- A. Chevalier Content of Lecture 2: Lecture 2: Advanced data manipulation -creating data -using dates -merging and appending datasets - wide and long -collapse 1 A] Creating data

More information

Algebra 2 Common Core Summer Skills Packet

Algebra 2 Common Core Summer Skills Packet Algebra 2 Common Core Summer Skills Packet Our Purpose: Completion of this packet over the summer before beginning Algebra 2 will be of great value to helping students successfully meet the academic challenges

More information

Chapter 5 Accumulating Change: Limits of Sums and the Definite Integral

Chapter 5 Accumulating Change: Limits of Sums and the Definite Integral Chapter 5 Accumulating Change: Limits of Sums and the Definite Integral 5.1 Results of Change and Area Approximations So far, we have used Excel to investigate rates of change. In this chapter we consider

More information

The Coefficient of Determination

The Coefficient of Determination The Coefficient of Determination Lecture 46 Section 13.9 Robb T. Koether Hampden-Sydney College Wed, Apr 17, 2012 Robb T. Koether (Hampden-Sydney College) The Coefficient of Determination Wed, Apr 17,

More information

SIDM3: Combining and restructuring datasets; creating summary data across repeated measures or across groups

SIDM3: Combining and restructuring datasets; creating summary data across repeated measures or across groups SIDM3: Combining and restructuring datasets; creating summary data across repeated measures or across groups You might find that your data is in a very different structure to that needed for analysis.

More information

ECON Introductory Econometrics Seminar 4

ECON Introductory Econometrics Seminar 4 ECON4150 - Introductory Econometrics Seminar 4 Stock and Watson EE8.2 April 28, 2015 Stock and Watson EE8.2 ECON4150 - Introductory Econometrics Seminar 4 April 28, 2015 1 / 20 Current Population Survey

More information

Lab 1: Basics of Stata Short Course on Poverty & Development for Nordic Ph.D. Students University of Copenhagen June 13-23, 2000

Lab 1: Basics of Stata Short Course on Poverty & Development for Nordic Ph.D. Students University of Copenhagen June 13-23, 2000 Lab 1: Basics of Stata Short Course on Poverty & Development for Nordic Ph.D. Students University of Copenhagen June 13-23, 2000 This lab is designed to give you a basic understanding of the tools available

More information

PS 6: Regularization. PART A: (Source: HTF page 95) The Ridge regression problem is:

PS 6: Regularization. PART A: (Source: HTF page 95) The Ridge regression problem is: Economics 1660: Big Data PS 6: Regularization Prof. Daniel Björkegren PART A: (Source: HTF page 95) The Ridge regression problem is: : β "#$%& = argmin (y # β 2 x #4 β 4 ) 6 6 + λ β 4 #89 Consider the

More information

Department of Economics Spring 2016 University of California Economics 154 Professor Martha Olney Stata Lesson Wednesday February 17, 2016

Department of Economics Spring 2016 University of California Economics 154 Professor Martha Olney Stata Lesson Wednesday February 17, 2016 University of Califnia Economics 154 Berkeley Profess Martha Olney Stata Lesson Wednesday February 17, 2016 [1] Where to find the data sets http://www.econ.berkeley.edu/~olney/spring16/econ154 There are

More information

Quick look at the margins command

Quick look at the margins command Quick look at the margins command Jean-Philippe Gauvin jean-philippe.gauvin@umontreal.ca October 9, 22 Abstract In this document I try to give an overview of the margins command in Stata. I start with

More information

SPSS QM II. SPSS Manual Quantitative methods II (7.5hp) SHORT INSTRUCTIONS BE CAREFUL

SPSS QM II. SPSS Manual Quantitative methods II (7.5hp) SHORT INSTRUCTIONS BE CAREFUL SPSS QM II SHORT INSTRUCTIONS This presentation contains only relatively short instructions on how to perform some statistical analyses in SPSS. Details around a certain function/analysis method not covered

More information

Chapters 5-6: Statistical Inference Methods

Chapters 5-6: Statistical Inference Methods Chapters 5-6: Statistical Inference Methods Chapter 5: Estimation (of population parameters) Ex. Based on GSS data, we re 95% confident that the population mean of the variable LONELY (no. of days in past

More information

After opening Stata for the first time: set scheme s1mono, permanently

After opening Stata for the first time: set scheme s1mono, permanently Stata 13 HELP Getting help Type help command (e.g., help regress). If you don't know the command name, type lookup topic (e.g., lookup regression). Email: tech-support@stata.com. Put your Stata serial

More information

MPhil computer package lesson: getting started with Eviews

MPhil computer package lesson: getting started with Eviews MPhil computer package lesson: getting started with Eviews Ryoko Ito (ri239@cam.ac.uk, itoryoko@gmail.com, www.itoryoko.com ) 1. Creating an Eviews workfile 1.1. Download Wage data.xlsx from my homepage:

More information

8 th Grade Mathematics Unpacked Content For the new Common Core standards that will be effective in all North Carolina schools in the

8 th Grade Mathematics Unpacked Content For the new Common Core standards that will be effective in all North Carolina schools in the 8 th Grade Mathematics Unpacked Content For the new Common Core standards that will be effective in all North Carolina schools in the 2012-13. This document is designed to help North Carolina educators

More information

How to use FSBforecast Excel add in for regression analysis

How to use FSBforecast Excel add in for regression analysis How to use FSBforecast Excel add in for regression analysis FSBforecast is an Excel add in for data analysis and regression that was developed here at the Fuqua School of Business over the last 3 years

More information

1. Basic Steps for Data Analysis Data Editor. 2.4.To create a new SPSS file

1. Basic Steps for Data Analysis Data Editor. 2.4.To create a new SPSS file 1 SPSS Guide 2009 Content 1. Basic Steps for Data Analysis. 3 2. Data Editor. 2.4.To create a new SPSS file 3 4 3. Data Analysis/ Frequencies. 5 4. Recoding the variable into classes.. 5 5. Data Analysis/

More information

Migration and the Labour Market. STATA: An Introduction into the Basics. Dr. Ehsan Vallizadeh. Bamberg, May 17, 2018

Migration and the Labour Market. STATA: An Introduction into the Basics. Dr. Ehsan Vallizadeh. Bamberg, May 17, 2018 Migration and the Labour Market STATA: An Introduction into the Basics Dr. Ehsan Vallizadeh Bamberg, May 17, 2018 Contents I II III What do we have to do for the paper Brief introduction into the datasets

More information

Mastery. PRECALCULUS Student Learning Targets

Mastery. PRECALCULUS Student Learning Targets PRECALCULUS Student Learning Targets Big Idea: Sequences and Series 1. I can describe a sequence as a function where the domain is the set of natural numbers. Connections (Pictures, Vocabulary, Definitions,

More information

Learner Expectations UNIT 1: GRAPICAL AND NUMERIC REPRESENTATIONS OF DATA. Sept. Fathom Lab: Distributions and Best Methods of Display

Learner Expectations UNIT 1: GRAPICAL AND NUMERIC REPRESENTATIONS OF DATA. Sept. Fathom Lab: Distributions and Best Methods of Display CURRICULUM MAP TEMPLATE Priority Standards = Approximately 70% Supporting Standards = Approximately 20% Additional Standards = Approximately 10% HONORS PROBABILITY AND STATISTICS Essential Questions &

More information

Statistics: Normal Distribution, Sampling, Function Fitting & Regression Analysis (Grade 12) *

Statistics: Normal Distribution, Sampling, Function Fitting & Regression Analysis (Grade 12) * OpenStax-CNX module: m39305 1 Statistics: Normal Distribution, Sampling, Function Fitting & Regression Analysis (Grade 12) * Free High School Science Texts Project This work is produced by OpenStax-CNX

More information

Linear Regression in two variables (2-3 students per group)

Linear Regression in two variables (2-3 students per group) Linear Regression in two variables (2-3 students per group) 1. Choose a 2 or 3 person group. Turn in a list of group members to your instructor, in written form or through email, no later than February,

More information

Chapter 1 Polynomials and Modeling

Chapter 1 Polynomials and Modeling Chapter 1 Polynomials and Modeling 1.1 Linear Functions Recall that a line is a function of the form y = mx+ b, where m is the slope of the line (how steep the line is) and b gives the y-intercept (where

More information

Can double click the data file and it should open STATA

Can double click the data file and it should open STATA ECO 445: International Trade Professor Jack Rossbach Instructions on Doing Gravity Regressions in STATA Important: If you don t know how to use a command, use the help command in R. For example, type help

More information

STAT 2607 REVIEW PROBLEMS Word problems must be answered in words of the problem.

STAT 2607 REVIEW PROBLEMS Word problems must be answered in words of the problem. STAT 2607 REVIEW PROBLEMS 1 REMINDER: On the final exam 1. Word problems must be answered in words of the problem. 2. "Test" means that you must carry out a formal hypothesis testing procedure with H0,

More information

Introduction to PDEs: Notation, Terminology and Key Concepts

Introduction to PDEs: Notation, Terminology and Key Concepts Chapter 1 Introduction to PDEs: Notation, Terminology and Key Concepts 1.1 Review 1.1.1 Goal The purpose of this section is to briefly review notation as well as basic concepts from calculus. We will also

More information

A First Tutorial in Stata

A First Tutorial in Stata A First Tutorial in Stata Stan Hurn Queensland University of Technology National Centre for Econometric Research www.ncer.edu.au Stan Hurn (NCER) Stata Tutorial 1 / 66 Table of contents 1 Preliminaries

More information

Sampling Size Calculations for Estimating the Proportion of False Positive

Sampling Size Calculations for Estimating the Proportion of False Positive Sampling Size Calculations for Estimating the Proportion of False Positive and False Negative CLABSIs in the State of Texas J. Charles Huber Jr, PhD Associate Professor of Biostatistics Ryan Hollingsworth

More information

Integrated Math I. IM1.1.3 Understand and use the distributive, associative, and commutative properties.

Integrated Math I. IM1.1.3 Understand and use the distributive, associative, and commutative properties. Standard 1: Number Sense and Computation Students simplify and compare expressions. They use rational exponents and simplify square roots. IM1.1.1 Compare real number expressions. IM1.1.2 Simplify square

More information

Equating. Lecture #10 ICPSR Item Response Theory Workshop

Equating. Lecture #10 ICPSR Item Response Theory Workshop Equating Lecture #10 ICPSR Item Response Theory Workshop Lecture #10: 1of 81 Lecture Overview Test Score Equating Using IRT How do we get the results from separate calibrations onto the same scale, so

More information

Multiple Linear Regression Excel 2010Tutorial For use when at least one independent variable is qualitative

Multiple Linear Regression Excel 2010Tutorial For use when at least one independent variable is qualitative Multiple Linear Regression Excel 2010Tutorial For use when at least one independent variable is qualitative This tutorial combines information on how to obtain regression output for Multiple Linear Regression

More information

Important Things to Know about Stata

Important Things to Know about Stata Important Things to Know about Stata Accessing Stata Stata 14.0 is available in all clusters and classrooms on campus. You may also purchase it at a substantial discount through Notre Dame s GradPlan.

More information

Smartphone Ownership 2013 Update

Smartphone Ownership 2013 Update www.pewresearch.org JUNE 5, 2013 Smartphone Ownership 2013 Update 56% of American adults now own a smartphone of some kind; Android and iphone owners account for half of the cell phone user population.

More information

1.1 evaluating expressions 2017 ink.notebook. August 18, page 7 page 8 Unit 1 Basic Equations and Inequalities. 1.1 Order of Operations.

1.1 evaluating expressions 2017 ink.notebook. August 18, page 7 page 8 Unit 1 Basic Equations and Inequalities. 1.1 Order of Operations. 1.1 evaluating expressions 2017 ink.notebook page 7 page 8 Unit 1 Basic Equations and Inequalities 1.1 Order of Operations page 9 page 10 Lesson Objectives Standards 1.1 Order of Operations Press the tabs

More information

Package OLScurve. August 29, 2016

Package OLScurve. August 29, 2016 Type Package Title OLS growth curve trajectories Version 0.2.0 Date 2014-02-20 Package OLScurve August 29, 2016 Maintainer Provides tools for more easily organizing and plotting individual ordinary least

More information

Lab 3 - Introduction to Graphics

Lab 3 - Introduction to Graphics Lab 3 - Introduction to Graphics Spring 2018 Contents 1 Graphics 2 1.1 Plots in one dimension................................... 2 1.2 Plots in two dimensions: two-way plots.......................... 5

More information

GETTING DATA INTO THE PROGRAM

GETTING DATA INTO THE PROGRAM GETTING DATA INTO THE PROGRAM 1. Have a Stata dta dataset. Go to File then Open. OR Type use pathname in the command line. 2. Using a SAS or SPSS dataset. Use Stat Transfer. (Note: do not become dependent

More information

Course of study- Algebra Introduction: Algebra 1-2 is a course offered in the Mathematics Department. The course will be primarily taken by

Course of study- Algebra Introduction: Algebra 1-2 is a course offered in the Mathematics Department. The course will be primarily taken by Course of study- Algebra 1-2 1. Introduction: Algebra 1-2 is a course offered in the Mathematics Department. The course will be primarily taken by students in Grades 9 and 10, but since all students must

More information