Examples of Using Stata v11.0 with JRR replicate weights Provided in the NHANES data set

Size: px
Start display at page:

Download "Examples of Using Stata v11.0 with JRR replicate weights Provided in the NHANES data set"

Transcription

1 Examples of Using Stata v110 with JRR replicate weights Provided in the NHANES data set This document is designed to illustrate comparisons of methods to use JRR replicate weights sometimes provided by NCHS and other distributors of public release data sets The NHANES provided JRR replicate weights along with masked strata and PSU variables Demonstrated is how to use the JRR replicate weights directly in Stata along with a comparison of results using both the Taylor Series linearization approach and use of the JRR option in Stata where the replicates are developed by the Stata program Stata Do File: ******************************************************************************************************************** * Use of JRR replicate weights with NHANES dataset * Comparison to Linearization and JRR with "Masked Weights" ******************************************************************************************************************** * read in dataset with demo variables and blood pressure readings use "F:\brahms\summerclasses\complexanalysis2007\demo_bpx_nhanes9900dta", clear * do surveyset with 52 replicate weights svyset _n [pweight=wtint2yr], jkrweight(wtmrep01 wtmrep02 wtmrep03 wtmrep04 wtmrep05 wtmrep06 wtmrep07 wtmrep08 wtmrep09 /// wtmrep10 wtmrep11 wtmrep12 wtmrep13 wtmrep14 wtmrep15 wtmrep16 wtmrep17 wtmrep18 wtmrep19 /// wtmrep20 wtmrep21 wtmrep22 wtmrep23 wtmrep24 wtmrep25 wtmrep26 wtmrep27 wtmrep28 wtmrep29 /// wtmrep30 wtmrep31 wtmrep32 wtmrep33 wtmrep34 wtmrep35 wtmrep36 wtmrep37 wtmrep38 wtmrep39 /// wtmrep40 wtmrep41 wtmrep42 wtmrep43 wtmrep44 wtmrep45 wtmrep46 wtmrep47 wtmrep48 wtmrep49 /// wtmrep50 wtmrep51 wtmrep52) vce(linearized) svydes * run analyses using the JRR replicate weights provided by project staff svy, vce(jackknife): mean bpxdi1 * note that riagendr =1 = male and =2= female svy, vce(jackknife): tabulate riagendr, cell se svy, vce(jackknife): regress bpxdi1 iriagendr * reset svy using masked stratum and psu variables svyset sdmvpsu [pweight=wtint2yr], strata(sdmvstra) vce(linearized) svydes * use of linearized approach svy, vce(linearized): mean bpxdi1 svy, vce(linearized): regress bpxdi1 iriagendr * use of JRR approach with strata and psu variables and Stata creates the JRR replicates for us svy, vce(jackknife): mean bpxdi1 svy, vce(jackknife): regress bpxdi1 iriagendr

2 Output : * read in dataset with demo variables and blood pressure readings use "F:\brahms\summerclasses\complexanalysis2007\demo_bpx_nhanes9900dta", clear * do surveyset with 52 replicate weights svyset _n [pweight=wtint2yr], jkrweight(wtmrep01 wtmrep02 wtmrep03 wtmrep04 wtmrep05 wtmrep06 wtmrep07 wtmrep08 wtmrep09 /// > wtmrep10 wtmrep11 wtmrep12 wtmrep13 wtmrep14 wtmrep15 wtmrep16 wtmrep17 wtmrep18 wtmrep19 /// > wtmrep20 wtmrep21 wtmrep22 wtmrep23 wtmrep24 wtmrep25 wtmrep26 wtmrep27 wtmrep28 wtmrep29 /// > wtmrep30 wtmrep31 wtmrep32 wtmrep33 wtmrep34 wtmrep35 wtmrep36 wtmrep37 wtmrep38 wtmrep39 /// > wtmrep40 wtmrep41 wtmrep42 wtmrep43 wtmrep44 wtmrep45 wtmrep46 wtmrep47 wtmrep48 wtmrep49 /// > wtmrep50 wtmrep51 wtmrep52) vce(linearized) jkrweight: wtmrep01 wtmrep02 wtmrep03 wtmrep04 wtmrep05 wtmrep06 wtmrep07 wtmrep08 wtmrep09 wtmrep10 wtmrep11 wtmrep12 wtmrep13 wtmrep14 wtmrep15 wtmrep16 wtmrep17 wtmrep18 wtmrep19 wtmrep20 wtmrep21 wtmrep22 wtmrep23 wtmrep24 wtmrep25 wtmrep26 wtmrep27 wtmrep28 wtmrep29 wtmrep30 wtmrep31 wtmrep32 wtmrep33 wtmrep34 wtmrep35 wtmrep36 wtmrep37 wtmrep38 wtmrep39 wtmrep40 wtmrep41 wtmrep42 wtmrep43 wtmrep44 wtmrep45 wtmrep46 wtmrep47 wtmrep48 wtmrep49 wtmrep50 wtmrep51 wtmrep52 Strata 1: <one> SU 1: <observations> svydes Survey: Describing stage 1 sampling units jkrweight: wtmrep01 wtmrep02 wtmrep03 wtmrep04 wtmrep05 wtmrep06 wtmrep07 wtmrep08 wtmrep09 wtmrep10 wtmrep11 wtmrep12 wtmrep13 wtmrep14 wtmrep15 wtmrep16 wtmrep17 wtmrep18 wtmrep19 wtmrep20 wtmrep21 wtmrep22 wtmrep23 wtmrep24 wtmrep25 wtmrep26 wtmrep27 wtmrep28 wtmrep29 wtmrep30 wtmrep31 wtmrep32 wtmrep33 wtmrep34 wtmrep35 wtmrep36 wtmrep37 wtmrep38 wtmrep39 wtmrep40 wtmrep41 wtmrep42 wtmrep43 wtmrep44 wtmrep45 wtmrep46 wtmrep47 wtmrep48 wtmrep49 wtmrep50 wtmrep51 wtmrep52 Strata 1: <one> SU 1: <observations> #Obs per Unit Stratum #Units #Obs min mean max

3 * run analyses using the JRR replicate weights provided by project staff svy, vce(jackknife): mean bpxdi1 Jackknife replications (52) 50 Number of strata = 1 Number of obs = 6457 Population size = Mean Std Err [95% Conf Interval] bpxdi * note that riagendr =1 = male and =2= female svy, vce(jackknife): tabulate riagendr, cell se (running tabulate on estimation sample) Number of strata = 1 Number of obs = 9282 Population size = gender - adjudicat ed proportions se Total Key: proportions = cell proportions se = jackknife standard errors of cell proportions svy, vce(jackknife): regress bpxdi1 iriagendr Jackknife replications (52) 50 Number of strata = 1 Number of obs = 6457 Population size = F( 1, 51) = 7951 Prob > F = R-squared = bpxdi1 Coef Std Err t P> t [95% Conf Interval] riagendr _cons

4 * reset svy using masked stratum and psu variables svyset sdmvpsu [pweight=wtint2yr], strata(sdmvstra) vce(linearized) Strata 1: sdmvstra SU 1: sdmvpsu svydes Survey: Describing stage 1 sampling units Strata 1: sdmvstra SU 1: sdmvpsu #Obs per Unit Stratum #Units #Obs min mean max * use of linearized approach svy, vce(linearized): mean bpxdi1 Linearized Mean Std Err [95% Conf Interval] bpxdi

5 svy, vce(linearized): regress bpxdi1 iriagendr F( 1, 14) = 4162 Prob > F = R-squared = Linearized bpxdi1 Coef Std Err t P> t [95% Conf Interval] riagendr _cons * use of JRR approach with strata and psu variables and Stata creates the JRR replicates for us svy, vce(jackknife): mean bpxdi1 Jackknife replications (27) Replications = 27 Mean Std Err [95% Conf Interval] bpxdi svy, vce(jackknife): regress bpxdi1 iriagendr Jackknife replications (27) Replications = 27 F( 1, 14) = 4155 Prob > F = R-squared = bpxdi1 Coef Std Err t P> t [95% Conf Interval] riagendr _cons

Survey commands in STATA

Survey commands in STATA Survey commands in STATA Carlo Azzarri DECRG Sample survey: Albania 2005 LSMS 4 strata (Central, Coastal, Mountain, Tirana) 455 Primary Sampling Units (PSU) 8 HHs by PSU * 455 = 3,640 HHs svy command:

More information

CHAPTER 11 ASDA ANALYSIS EXAMPLES REPLICATION-SUDAAN

CHAPTER 11 ASDA ANALYSIS EXAMPLES REPLICATION-SUDAAN CHAPTER 11 ASDA ANALYSIS EXAMPLES REPLICATION-SUDAAN 10.0.1 GENERAL NOTES ABOUT ANALYSIS EXAMPLES REPLICATION These examples are intended to provide guidance on how to use the commands/procedures for analysis

More information

SUDAAN Analysis Example Replication C5

SUDAAN Analysis Example Replication C5 Analysis Example Replication C5 * Analysis Examples Replication for ASDA 2nd Edition, SAS v9.4 TS1M3 ; * Berglund April 2017 * Chapter 5 ; libname d "P:\ASDA 2\Data sets\nhanes 2011_2012\" ; ods graphics

More information

Interpreting and Visualizing Regression models with Stata Margins and Marginsplot. Boriana Pratt May 2017

Interpreting and Visualizing Regression models with Stata Margins and Marginsplot. Boriana Pratt May 2017 Interpreting and Visualizing Regression models with Stata Margins and Marginsplot Boriana Pratt May 2017 Interpreting regression models Often regression results are presented in a table format, which makes

More information

SUDAAN Analysis Example Replication C6

SUDAAN Analysis Example Replication C6 SUDAAN Analysis Example Replication C6 * Sudaan Analysis Examples Replication for ASDA 2nd Edition * Berglund April 2017 * Chapter 6 ; libname d "P:\ASDA 2\Data sets\nhanes 2011_2012\" ; ods graphics off

More information

ECON Introductory Econometrics Seminar 6

ECON Introductory Econometrics Seminar 6 ECON4150 - Introductory Econometrics Seminar 6 Stock and Watson EE10.1 April 28, 2015 Stock and Watson EE10.1 ECON4150 - Introductory Econometrics Seminar 6 April 28, 2015 1 / 21 Guns data set Some U.S.

More information

Compartmental Pharmacokinetic Analysis. Dr Julie Simpson

Compartmental Pharmacokinetic Analysis. Dr Julie Simpson Compartmental Pharmacokinetic Analysis Dr Julie Simpson Email: julieas@unimelb.edu.au BACKGROUND Describes how the drug concentration changes over time using physiological parameters. Gut compartment Absorption,

More information

This is a quick-and-dirty example for some syntax and output from pscore and psmatch2.

This is a quick-and-dirty example for some syntax and output from pscore and psmatch2. This is a quick-and-dirty example for some syntax and output from pscore and psmatch2. It is critical that when you run your own analyses, you generate your own syntax. Both of these procedures have very

More information

The Multivariate Regression Model

The Multivariate Regression Model The Multivariate Regression Model Example Determinants of College GPA Sample of 4 Freshman Collect data on College GPA (4.0 scale) Look at importance of ACT Consider the following model CGPA ACT i 0 i

More information

Introduction of STATA

Introduction of STATA Introduction of STATA News: There is an introductory course on STATA offered by CIS Description: Intro to STATA On Tue, Feb 13th from 4:00pm to 5:30pm in CIT 269 Seats left: 4 Windows, 7 Macintosh For

More information

Propensity Scores for Multiple Treatments

Propensity Scores for Multiple Treatments C O R P O R A T I O N Propensity Scores for Multiple Treatments A Tutorial on the MNPS Command for Stata Users Matthew Cefalu, Maya Buenaventura For more information on this publication, visit www.rand.org/t/tl170z1

More information

Week 10: Heteroskedasticity

Week 10: Heteroskedasticity Week 10: Heteroskedasticity Marcelo Coca Perraillon University of Colorado Anschutz Medical Campus Health Services Research Methods I HSMP 7607 2017 c 2017 PERRAILLON ARR 1 Outline The problem of (conditional)

More information

Stata v 12 Illustration. One Way Analysis of Variance

Stata v 12 Illustration. One Way Analysis of Variance Stata v 12 Illustration Page 1. Preliminary Download anovaplot.. 2. Descriptives Graphs. 3. Descriptives Numerical 4. Assessment of Normality.. 5. Analysis of Variance Model Estimation.. 6. Tests of Equality

More information

Using Weights in the Analysis of Survey Data

Using Weights in the Analysis of Survey Data Using Weights in the Analysis of Survey Data David R. Johnson Department of Sociology Population Research Institute The Pennsylvania State University November 2008 What is a Survey Weight? A value assigned

More information

Using Stata 11 & higher for Logistic Regression Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised March 28, 2015

Using Stata 11 & higher for Logistic Regression Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised March 28, 2015 Using Stata 11 & higher for Logistic Regression Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised March 28, 2015 NOTE: The routines spost13, lrdrop1, and extremes

More information

The relationship between innovation and economic growth in emerging economies

The relationship between innovation and economic growth in emerging economies Mladen Vuckovic The relationship between innovation and economic growth in emerging economies 130 - Organizational Response To Globally Driven Institutional Changes Abstract This paper will investigate

More information

Advanced Analytics through the credit cycle

Advanced Analytics through the credit cycle Advanced Analytics through the credit cycle Alejandro Correa B. Andrés Gonzalez M. Introduction PRE ORIGINATION Credit Cycle POST ORIGINATION ORIGINATION Pre-Origination Propensity Models What is it?

More information

*STATA.OUTPUT -- Chapter 13

*STATA.OUTPUT -- Chapter 13 *STATA.OUTPUT -- Chapter 13.*small example of rank sum test.input x grp x grp 1. 4 1 2. 35 1 3. 21 1 4. 28 1 5. 66 1 6. 10 2 7. 42 2 8. 71 2 9. 77 2 10. 90 2 11. end.ranksum x, by(grp) porder Two-sample

More information

EFA in a CFA Framework

EFA in a CFA Framework EFA in a CFA Framework 2012 San Diego Stata Conference Phil Ender UCLA Statistical Consulting Group Institute for Digital Research & Education July 26, 2012 Phil Ender EFA in a CFA Framework Disclaimer

More information

A HYPOTHETICAL US SPORTS GAMBLING MARKET. Richard A. McGowan & John F. Mahon

A HYPOTHETICAL US SPORTS GAMBLING MARKET. Richard A. McGowan & John F. Mahon A HYPOTHETICAL US SPORTS GAMBLING MARKET Richard A. McGowan & John F. Mahon Recap: Why this topic? I believe that sports betting should be brought out of the underground and into the sunlight where it

More information

ROBUST ESTIMATION OF STANDARD ERRORS

ROBUST ESTIMATION OF STANDARD ERRORS ROBUST ESTIMATION OF STANDARD ERRORS -- log: Z:\LDA\DataLDA\sitka_Lab8.log log type: text opened on: 18 Feb 2004, 11:29:17. ****The observed mean responses in each of the 4 chambers; for 1988 and 1989.

More information

Appendix C: Lab Guide for Stata

Appendix C: Lab Guide for Stata Appendix C: Lab Guide for Stata 2011 1. The Lab Guide is divided into sections corresponding to class lectures. Each section includes both a review, which everyone should complete and an exercise, which

More information

BIOSTATS 640 Spring 2017 Stata v14 Unit 2: Regression & Correlation. Stata version 14

BIOSTATS 640 Spring 2017 Stata v14 Unit 2: Regression & Correlation. Stata version 14 Stata version 14 Illustration Simple and Multiple Linear Regression February 2017 I- Simple Linear Regression.... 1. Introduction to Example... 2. Preliminaries: Descriptives.. 3. Model Fitting (Estimation)

More information

Introduction to Survey Data Analysis. Linda K. Owens, PhD. Assistant Director for Sampling & Analysis

Introduction to Survey Data Analysis. Linda K. Owens, PhD. Assistant Director for Sampling & Analysis Introduction to Survey Data Analysis Linda K. Owens, PhD Assistant Director for Sampling & Analysis General information Please hold questions until the end of the presentation Slides available at www.srl.uic.edu/seminars/fall15seminars.htm

More information

Module 15: Multilevel Modelling of Repeated Measures Data. Stata Practical

Module 15: Multilevel Modelling of Repeated Measures Data. Stata Practical Module 15: Multilevel Modelling of Repeated Measures Data Pre-requisites Stata Practical Fiona Steele London School of Economics and Political Science Stata practicals for Modules 3 and 5 If you find this

More information

for var trstprl trstlgl trstplc trstplt trstep: reg X trust10 stfeco yrbrn hinctnt edulvl pltcare polint wrkprty

for var trstprl trstlgl trstplc trstplt trstep: reg X trust10 stfeco yrbrn hinctnt edulvl pltcare polint wrkprty for var trstprl trstlgl trstplc trstplt trstep: reg X trust10 stfeco yrbrn hinctnt edulvl pltcare polint wrkprty -> reg trstprl trust10 stfeco yrbrn hinctnt edulvl pltcare polint wrkprty Source SS df MS

More information

The Multivariate Dustbin

The Multivariate Dustbin UCLA Statistical Consulting Group (Ret.) Stata Conference Baltimore - July 28, 2017 Back in graduate school... My advisor told me that the future of data analysis was multivariate. By multivariate he meant...

More information

Post-Estimation Commands for MLogit Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised February 13, 2017

Post-Estimation Commands for MLogit Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised February 13, 2017 Post-Estimation Commands for MLogit Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised February 13, 2017 These notes borrow heavily (sometimes verbatim) from Long &

More information

Correlated Random Effects Panel Data Models

Correlated Random Effects Panel Data Models NONLINEAR MODELS Correlated Random Effects Panel Data Models IZA Summer School in Labor Economics May 13-19, 2013 Jeffrey M. Wooldridge Michigan State University 1. Why Nonlinear Models? 2. CRE versus

More information

Two pieces of evidence on gender discrimination in the Italian University system

Two pieces of evidence on gender discrimination in the Italian University system Two pieces of evidence on gender discrimination in the Italian University system 1) Local competitions in 2009-2010 with randomly selected committee members 2) Effective promotions after ASN in 2014-2015

More information

Technical note The treatment effect: Comparing the ESR and PSM methods with an artificial example By: Araar, A.: April 2015:

Technical note The treatment effect: Comparing the ESR and PSM methods with an artificial example By: Araar, A.: April 2015: Technical note The treatment effect: Comparing the ESR and PSM methods with an artificial example By: Araar, A.: April 2015: In this brief note, we propose to use an artificial example data in order to

More information

SHIPPING COST, SPOT RATE AND EBAY AUCTIONS: A STRUCTURED EQUATION MODELING APPROACH

SHIPPING COST, SPOT RATE AND EBAY AUCTIONS: A STRUCTURED EQUATION MODELING APPROACH SHIPPING COST, SPOT RATE AND EBAY AUCTIONS: A STRUCTURED EQUATION MODELING APPROACH Ossama Elhadary, DBA City University of New York Abstract In this paper, the author used a Structured Equation Modeling

More information

Full-time schooling, part-time schooling, and wages: returns and risks in Portugal

Full-time schooling, part-time schooling, and wages: returns and risks in Portugal Full-time schooling, part-time schooling, and wages: returns and risks in Portugal Corrado Andini (PRESENTER), University of Madeira and CEEAplA Pedro Telhado Pereira, University of Madeira, CEEAplA, IZA

More information

[DataSet3] C:\Program Files\SPSSInc\Statistics17\Samples\English\GSS93 subset.sav. Auto-Clustering. Ratio of BIC Changes b

[DataSet3] C:\Program Files\SPSSInc\Statistics17\Samples\English\GSS93 subset.sav. Auto-Clustering. Ratio of BIC Changes b TwoStep [DataSet] C:\Program Files\SPSSInc\Statistics7\Samples\English\GSS9 subset.sav Schwarz's Bayesian Criterion (BIC) 79.9 Auto-ing Ratio of BIC Changes b Ratio of Distance Measures c Number of s BIC

More information

Regression Analysis I & II

Regression Analysis I & II Data for this session is available in Data Regression I & II Regression Analysis I & II Quantitative Methods for Business Skander Esseghaier 1 In this session, you will learn: How to read and interpret

More information

Full-time schooling, part-time schooling, and wages: returns and risks in Portugal

Full-time schooling, part-time schooling, and wages: returns and risks in Portugal Full-time schooling, part-time schooling, and wages: returns and risks in Portugal Corrado Andini, University of Madeira, CEEAplA and IZA Pedro Telhado Pereira, University of Madeira, CEEAplA, IZA and

More information

CHAPTER Activity Cost Behavior

CHAPTER Activity Cost Behavior 3-1 CHAPTER Activity Cost Behavior Objectives 3-2 1. Define cost behavior After studying for fixed, this variable, and mixed costs. chapter, you should 2. Explain the role be of the able resource to: usage

More information

Calculating Absolute Rate Differences and Relative Rate Ratios in SAS/SUDAAN and STATA. Ashley Hirai, PhD May 20, 2014

Calculating Absolute Rate Differences and Relative Rate Ratios in SAS/SUDAAN and STATA. Ashley Hirai, PhD May 20, 2014 Calculating Absolute Rate Differences and Relative Rate Ratios in SAS/SUDAAN and STATA Ashley Hirai, PhD May 20, 2014 Outline Importance of absolute and relative measures Problems with odds ratios as a

More information

CROSSTAB Example #8. This example illustrates the variety of hypotheses and test statistics now available on the TEST statement in CROSSTAB.

CROSSTAB Example #8. This example illustrates the variety of hypotheses and test statistics now available on the TEST statement in CROSSTAB. CROSSTAB Example #8 SUDAAN Statements and Results Illustrated Stratum-specific Chi-square (CHISQ) Test Stratum-adjusted Cochran-Mantel-Haenszel (CMH) Test ANOVA-type (ACMH) Test ALL Test option DISPLAY

More information

The Effect of Prepayment on Energy Use. By: Michael Ozog, Ph.D. Integral Analytics, Inc.

The Effect of Prepayment on Energy Use. By: Michael Ozog, Ph.D. Integral Analytics, Inc. The Effect of Prepayment on Energy Use By: Michael Ozog, Ph.D. Integral Analytics, Inc. A research project commissioned by the DEFG Prepay Energy Working Group March 2013 Introduction In the U.S. and abroad,

More information

3. Stated choice analyses

3. Stated choice analyses 3. Stated choice analyses 3.1 Stated and revealed preference data Revealed preference (RP) data: These data are based on actual decisions and choices in real-world situations, i.e. individuals reveal their

More information

Logistic Regression, Part III: Hypothesis Testing, Comparisons to OLS

Logistic Regression, Part III: Hypothesis Testing, Comparisons to OLS Logistic Regression, Part III: Hypothesis Testing, Comparisons to OLS Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised February 22, 2015 This handout steals heavily

More information

Questionnaire. (3) (3) Bachelor s degree (3) Clerk (3) Third. (6) Other (specify) (6) Other (specify)

Questionnaire. (3) (3) Bachelor s degree (3) Clerk (3) Third. (6) Other (specify) (6) Other (specify) Questionnaire 1. Age (years) 2. Education 3. Job Level 4.Sex 5. Work Shift (1) Under 25 (1) High school (1) Manager (1) M (1) First (2) 25-35 (2) Some college (2) Supervisor (2) F (2) Second (3) 36-45

More information

Unit 6: Simple Linear Regression Lecture 2: Outliers and inference

Unit 6: Simple Linear Regression Lecture 2: Outliers and inference Unit 6: Simple Linear Regression Lecture 2: Outliers and inference Statistics 101 Thomas Leininger June 18, 2013 Types of outliers in linear regression Types of outliers How do(es) the outlier(s) influence

More information

Semiparametric analysis of case control genetic data in the presence of environmental factors

Semiparametric analysis of case control genetic data in the presence of environmental factors The Stata Journal (2008) 8, Number 3, pp. 305 333 Semiparametric analysis of case control genetic data in the presence of environmental factors Yulia V. Marchenko StataCorp College Station, TX ymarchenko@stata.com

More information

Measuring Impact of Increase in High-Skilled Workers on the Livelihoods of Medium- and Low-Skilled Workers

Measuring Impact of Increase in High-Skilled Workers on the Livelihoods of Medium- and Low-Skilled Workers Columbia University in the City of New York Measuring Impact of Increase in High-Skilled Workers on the Livelihoods of Medium- and Low-Skilled Workers May 7, 2015 Advisor: Prof. Lance Freeman Reader: Prof.

More information

What Factors Influence Seat Belt Usage Rates in the United States?: A Meta-analysis

What Factors Influence Seat Belt Usage Rates in the United States?: A Meta-analysis University of Kentucky UKnowledge MPA/MPP Capstone Projects Martin School of Public Policy and Administration 2006 What Factors Influence Seat Belt Usage Rates in the United States?: A Meta-analysis Tiffany

More information

Non-linear Pricing of Paid Content Products

Non-linear Pricing of Paid Content Products 18 th Bled econference eintegration in Action Bled, Slovenia, June 6-8, 2005 Non-linear Pricing of Paid Content Products Florian Stahl University of St. Gallen, Switzerland mail@florian-stahl.com Fabian

More information

Chapter 2. Linear model. Put some concreteness on problem. The Bivariate Regression Model. Sample of n observations, labeled as i=1,2,..

Chapter 2. Linear model. Put some concreteness on problem. The Bivariate Regression Model. Sample of n observations, labeled as i=1,2,.. Linear model Chapter 2 The Bivariate Regression Model Sample of n observations, labeled as i=1,2,..n y i = + x i 1 + i and 1 are population values represent the true relationship between x and y Unfortunately

More information

AcaStat How To Guide. AcaStat. Software. Copyright 2016, AcaStat Software. All rights Reserved.

AcaStat How To Guide. AcaStat. Software. Copyright 2016, AcaStat Software. All rights Reserved. AcaStat How To Guide AcaStat Software Copyright 2016, AcaStat Software. All rights Reserved. http://www.acastat.com Table of Contents Frequencies... 3 List Variables... 4 Descriptives... 5 Explore Means...

More information

MULTILOG Example #3. SUDAAN Statements and Results Illustrated. Input Data Set(s): IRONSUD.SSD. Example. Solution

MULTILOG Example #3. SUDAAN Statements and Results Illustrated. Input Data Set(s): IRONSUD.SSD. Example. Solution MULTILOG Example #3 SUDAAN Statements and Results Illustrated REFLEVEL CUMLOGIT option SETENV LEVELS WEIGHT Input Data Set(s): IRONSUD.SSD Example Using data from the NHANES I and its Longitudinal Follow-up

More information

Outliers Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised April 7, 2016

Outliers Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised April 7, 2016 Outliers Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised April 7, 206 These notes draw heavily from several sources, including Fox s Regression Diagnostics; Pindyck

More information

remained are mine. 1 I would like to thank Dr Nguyen Thang, Director of Forecast and Analysis for his helpful comments. All errors

remained are mine. 1 I would like to thank Dr Nguyen Thang, Director of Forecast and Analysis for his helpful comments. All errors and Wages: Evidence from Vietnam s Employee Survey (As of March 2009) By Hoang Thanh Huong 1 1. Introduction Although in the past years, capital flow into Vietnam has been quite high. There have been a

More information

F u = t n+1, t f = 1994, 2005

F u = t n+1, t f = 1994, 2005 Forecasting an Electric Utility's Emissions Using SAS/AF and SAS/STAT Software: A Linear Analysis Md. Azharul Islam, The Ohio State University, Columbus, Ohio. David Wang, The Public Utilities Commission

More information

Telecommunications Churn Analysis Using Cox Regression

Telecommunications Churn Analysis Using Cox Regression Telecommunications Churn Analysis Using Cox Regression Introduction As part of its efforts to increase customer loyalty and reduce churn, a telecommunications company is interested in modeling the "time

More information

Title. Syntax. Description. xt Introduction to xt commands

Title. Syntax. Description. xt Introduction to xt commands Title xt Introduction to xt commands Syntax xtcmd... Description The xt series of commands provides tools for analyzing panel data (also known as longitudinal data or in some disciplines as cross-sectional

More information

Evaluating options for securing camel breeding stock in production systems vulnerable to climate variability in Northern Kenya Mumina G.

Evaluating options for securing camel breeding stock in production systems vulnerable to climate variability in Northern Kenya Mumina G. Evaluating options for securing camel breeding stock in production systems vulnerable to climate variability in Northern Kenya Mumina G. Shibia Egerton University 1 Introduction cont Descriptions of grasslands

More information

BIO 226: Applied Longitudinal Analysis. Homework 2 Solutions Due Thursday, February 21, 2013 [100 points]

BIO 226: Applied Longitudinal Analysis. Homework 2 Solutions Due Thursday, February 21, 2013 [100 points] Prof. Brent Coull TA Shira Mitchell BIO 226: Applied Longitudinal Analysis Homework 2 Solutions Due Thursday, February 21, 2013 [100 points] Purpose: To provide an introduction to the use of PROC MIXED

More information

Sylvain Tremblay SAS Canada

Sylvain Tremblay SAS Canada TECHNIQUES FOR MODEL SCORING ESUG Sylvain Tremblay SAS Canada APRIL 15, 2015 You are done and have a predictive model Now what? It s time to score If you are using Enterprise Miner You can then do the

More information

R. Creedon, J. Krstic, R. Mann, K. Ruffini, M. Skuodis, K. Smula, M. Vlekke

R. Creedon, J. Krstic, R. Mann, K. Ruffini, M. Skuodis, K. Smula, M. Vlekke Managerial Capital and Productivity: Evidence from a Training Program in the Bangladeshi Garment Sector R. Creedon, J. Krstic, R. Mann, K. Ruffini, M. Skuodis, K. Smula, M. Vlekke Rocco Macchiavello -

More information

GHG Fluxes Calculation. By Ahmad S. Mat Su Dec. 10, 2012

GHG Fluxes Calculation. By Ahmad S. Mat Su Dec. 10, 2012 GHG Fluxes Calculation By Ahmad S. Mat Su Dec. 10, 2012 Outline Method Matlab analysis Flux Analysis & Calculations Sherrington St Emmanuel Harrow Leamington St Louis de Blandford Compare at all site Conclusion

More information

Drivers of Sustainable Land Management in Eastern Africa

Drivers of Sustainable Land Management in Eastern Africa Article Drivers of Sustainable Land Management in Eastern Africa Oliver K. Kirui Center for Development Research, University of Bonn, Germany; okirui@uni-bonn.de; +49-152-154-57 199 Abstract: Land degradation

More information

demographic of respondent include gender, age group, position and level of education.

demographic of respondent include gender, age group, position and level of education. CHAPTER 4 - RESEARCH RESULTS 4.0 Chapter Overview This chapter presents the results of the research and comprises few sections such as and data analysis technique, analysis of measures, testing of hypotheses,

More information

Online Appendix Stuck in the Adoption Funnel: The Effect of Interruptions in the Adoption Process on Usage

Online Appendix Stuck in the Adoption Funnel: The Effect of Interruptions in the Adoption Process on Usage Online Appendix Stuck in the Adoption Funnel: The Effect of Interruptions in the Adoption Process on Usage Anja Lambrecht London Business School alambrecht@london.edu Catherine Tucker Katja Seim University

More information

SQL*LIMS Stability Analytics Software

SQL*LIMS Stability Analytics Software SQL*LIMS Stability Analytics SQL*LIMS Stability Analytics Software Real-Time Analysis At-Your-Fingertips A purpose-built analytics solution that puts meaningful information at the fingertips of your Stability

More information

The impact of workforce on industrialization in Algeria with the existence of expenditure in education as a variable mediator from 1970 to 2014

The impact of workforce on industrialization in Algeria with the existence of expenditure in education as a variable mediator from 1970 to 2014 African Educational Research Journal Vol. 5(1), pp. 32-37, January 2017 ISSN: 2354-2160 Full Length Research Paper The impact of workforce on industrialization in Algeria with the existence of expenditure

More information

Research Article Minimum Porosity Formation in Pressure Die Casting by Taguchi Method

Research Article Minimum Porosity Formation in Pressure Die Casting by Taguchi Method Mathematical Problems in Engineering Volume 2013, Article ID 920865, 9 pages http://dx.doi.org/10.1155/2013/920865 Research Article Minimum Porosity Formation in Pressure Die Casting by Taguchi Method

More information

Psych 5741/5751: Data Analysis University of Boulder Gary McClelland & Charles Judd

Psych 5741/5751: Data Analysis University of Boulder Gary McClelland & Charles Judd Second Mid-Term Exam Multiple Regression Question A: Public policy analysts are interested in understanding how and why individuals come to develop the opinions they do of various public policy issues.

More information

Tougher rules on mandatory substitution brought forth price drop in the Swedish pharmaceutical market

Tougher rules on mandatory substitution brought forth price drop in the Swedish pharmaceutical market Tougher rules on mandatory substitution brought forth price drop in the Swedish pharmaceutical market - Estimating the impact of the new rules of 2009 using Difference- in- Difference regression. Bachelor

More information

FIRM S SPECIFIC ATTRIBUTES AND VOLUNTARY ENVIRONMENTAL DISCLOSURE IN NIGERIA: EVIDENCE FROM LISTED MANUFACTURING COMPANIES

FIRM S SPECIFIC ATTRIBUTES AND VOLUNTARY ENVIRONMENTAL DISCLOSURE IN NIGERIA: EVIDENCE FROM LISTED MANUFACTURING COMPANIES FIRM S SPECIFIC ATTRIBUTES AND VOLUNTARY ENVIRONMENTAL DISCLOSURE IN NIGERIA: EVIDENCE FROM LISTED MANUFACTURING COMPANIES Amaechi Patrick Egbunike, Nnamdi Azikiwe University Nwankwe Tarilaye, Nnamdi Azikiwe

More information

Gender Wage Gaps in Greece 1 - an examination among University Graduates

Gender Wage Gaps in Greece 1 - an examination among University Graduates Gender Wage Gaps in Greece 1 - an examination among University Graduates George Agiomirgianakis 2*, Georgios Bertsatos 3, Nicholas Tsounis 4 Abstract Though the issue of gender wage gaps is of increasing

More information

FROM: Dan Rubado, Evaluation Project Manager, Energy Trust of Oregon; Phil Degens, Evaluation Manager, Energy Trust of Oregon

FROM: Dan Rubado, Evaluation Project Manager, Energy Trust of Oregon; Phil Degens, Evaluation Manager, Energy Trust of Oregon September 2, 2015 MEMO FROM: Dan Rubado, Evaluation Project Manager, Energy Trust of Oregon; Phil Degens, Evaluation Manager, Energy Trust of Oregon TO: Marshall Johnson, Sr. Program Manager, Energy Trust

More information

An Econometric Assessment of Electricity Demand in the United States Using Panel Data and the Impact of Retail Competition on Prices

An Econometric Assessment of Electricity Demand in the United States Using Panel Data and the Impact of Retail Competition on Prices 9 June 2015 An Econometric Assessment of Electricity Demand in the United States Using Panel Data and the Impact of Retail Competition on Prices By Dr. Agustin J. Ros This paper was originally presented

More information

Examining the Short-Run Price Elasticity of Gasoline Demand in the United States

Examining the Short-Run Price Elasticity of Gasoline Demand in the United States Clemson University TigerPrints All Theses Theses 12-2012 Examining the Short-Run Price Elasticity of Gasoline Demand in the United States Michael Brannan Clemson University, michael.brannan4@gmail.com

More information

Measuring Parallelism and Relative Potency In Well-Behaved and Ill-Behaved Cell-Based Bioassays

Measuring Parallelism and Relative Potency In Well-Behaved and Ill-Behaved Cell-Based Bioassays IIR Third Annual Cell Based Assays Measuring Parallelism and Relative Potency In Well-Behaved and Ill-Behaved Cell-Based Bioassays Workshop Instructor: John R. Dunn, Ph.D. Chief Technical Officer Brendan

More information

Please respond to each of the following attitude statement using the scale below:

Please respond to each of the following attitude statement using the scale below: Resp. ID: QWL Questionnaire : Part A: Personal Profile 1. Age as of last birthday. years 2. Gender 0. Male 1. Female 3. Marital status 0. Bachelor 1. Married 4. Level of education 1. Certificate 2. Diploma

More information

Measuring the Impact of a Comprehensive Health and Wellness Initiative

Measuring the Impact of a Comprehensive Health and Wellness Initiative Claremont Colleges Scholarship @ Claremont CMC Senior Theses CMC Student Scholarship 2012 Measuring the Impact of a Comprehensive Health and Wellness Initiative Patrick R. Rooney Claremont McKenna College

More information

A Comparative Assessment of Disclosure Risk and Data Quality between MASSC and Other Statistical Disclosure Limitation Methods

A Comparative Assessment of Disclosure Risk and Data Quality between MASSC and Other Statistical Disclosure Limitation Methods A Comparative Assessment of Disclosure Risk and Data Quality between MASSC and Other Statistical Disclosure Limitation Methods By Feng Yu and Neeraja Sathe RTI International is a trade name of Research

More information

Multiple Imputation and Multiple Regression with SAS and IBM SPSS

Multiple Imputation and Multiple Regression with SAS and IBM SPSS Multiple Imputation and Multiple Regression with SAS and IBM SPSS See IntroQ Questionnaire for a description of the survey used to generate the data used here. *** Mult-Imput_M-Reg.sas ***; options pageno=min

More information

Understanding and accounting for product

Understanding and accounting for product Understanding and Modeling Product and Process Variation Variation understanding and modeling is a core component of modern drug development. Understanding and accounting for product and process variation

More information

Survey of Income and Program Participation 2001 Wave 8 Food Security Data File Technical Documentation and User Notes

Survey of Income and Program Participation 2001 Wave 8 Food Security Data File Technical Documentation and User Notes Survey of Income and Program Participation 2001 Wave 8 Food Security Data File Technical Documentation and User Notes Questions: Contact Mark Nord Phone: 202-694-5433 Email: marknord@ers.usda.gov. Revision

More information

Improved Water Supply Forecasts for the Kootenay Basin

Improved Water Supply Forecasts for the Kootenay Basin Improved Water Supply Forecasts for the Kootenay Basin Randal T. Wortman Hydraulic Engineer August 4, 2005 Columbia Basin Water Management Division, U.S. Army Corps PO Box 2870, Portland, OR 97208-2870

More information

1 of :01 PM

1 of :01 PM 1 of 5 09-02-16 5:01 PM Continuous Issue - 11 November - December 2014 A Study of Job Satisfaction among Male and Female Faculties Teaching in Self-Finance and Government Colleges within Ahmedabad District

More information

Relationship between Consumption, Labor Supply and Fertility - Theory and Evidence from Japan

Relationship between Consumption, Labor Supply and Fertility - Theory and Evidence from Japan Relationship between Consumption, Labor Supply and Fertility - Theory and Evidence from Japan Reiko Aoki Center for Intergenerational Studies, Hitotsubashi University Yoko Konishi Research Institute of

More information

Need Additional Statistics in Your Report? - ODS OUTPUT to the Rescue!

Need Additional Statistics in Your Report? - ODS OUTPUT to the Rescue! Paper 3253-2015 Need Additional Statistics in Your Report? - ODS OUTPUT to the Rescue! Deborah Buck, inventiv Health. ABSTRACT You might be familiar with or experienced in writing or running reports using

More information

A Latent Class Analysis of agricultural technology adoption behavior in Uganda: Implications for Optimal Targeting

A Latent Class Analysis of agricultural technology adoption behavior in Uganda: Implications for Optimal Targeting A Latent Class Analysis of agricultural technology adoption behavior in Uganda: Implications for Optimal Targeting Emmanuel Bizimungu and Nassul Kabunga Invited poster presented at the 5 th International

More information

FACTORS THAT DETERMINE THE STATED WILLINGNESS TO PAY FOR AIR POLLUTION: A CASE OF BOPHELONG TOWNSHIP

FACTORS THAT DETERMINE THE STATED WILLINGNESS TO PAY FOR AIR POLLUTION: A CASE OF BOPHELONG TOWNSHIP FACTORS THAT DETERMINE THE STATED WILLINGNESS TO PAY FOR AIR POLLUTION: A CASE OF BOPHELONG TOWNSHIP Ismael Maloma North-West University, Vaal Triangle Campus, South Africa Mr E-mail: Ismael.maloma@nwu.ac.za

More information

Market Sentiment Helps Explain the Price of Bitcoin

Market Sentiment Helps Explain the Price of Bitcoin Market Sentiment Helps Explain the Price of Bitcoin Yoshiharu Sato http://yoshi2233.strikingly.com/ December 15 th, 2017 Abstract. A simple model that accurately explains the market price of Bitcoin (BTC)

More information

The Underlying Factors of Regional U.S. Hotel Market Resiliency Post 9/11

The Underlying Factors of Regional U.S. Hotel Market Resiliency Post 9/11 Claremont Colleges Scholarship @ Claremont CMC Senior Theses CMC Student Scholarship 2010 The Underlying Factors of Regional U.S. Hotel Market Resiliency Post 9/11 Beaumont L. Heidrich Claremont McKenna

More information

Biodiversity, Ecosystem Conservation and Poverty Reduction: A Contingent Valuation Approach in Grande Riviere

Biodiversity, Ecosystem Conservation and Poverty Reduction: A Contingent Valuation Approach in Grande Riviere Biodiversity, Ecosystem Conservation and Poverty Reduction: A Contingent Valuation Approach in Grande Riviere Sean Scott and Roger Hosein Trade and Economic Development Unit UWI ST Augustine 1 Ecotourism

More information

Bangladesh - CGAP Smallholder Household Survey 2016, Building the Evidence Base on The Agricultural and Financial Lives of Smallholder Households

Bangladesh - CGAP Smallholder Household Survey 2016, Building the Evidence Base on The Agricultural and Financial Lives of Smallholder Households Microdata Library Bangladesh - CGAP Smallholder Household Survey 2016, Building the Evidence Base on The Agricultural and Financial Lives of Smallholder Households Jamie Anderson - Consultative Group to

More information

CHAPTER. Activity Cost Behavior

CHAPTER. Activity Cost Behavior 3-1 CHAPTER Activity Cost Behavior 3-2 Objectives 1. Define cost behavior After for fixed, variable, and studying this mixed costs. chapter, you should 2. Explain the role of be the resource usage model

More information

What can a CIE tell us about the origins of negative treatment effects of a training programme

What can a CIE tell us about the origins of negative treatment effects of a training programme Expert Workshop: Local statistics for decision-making on well-being and vulnerability Livorno, 17.6. 2015 What can a CIE tell us about the origins of negative treatment effects of a training programme

More information

Probability Of Booking

Probability Of Booking Axis Title Web Social Analytics Air France Assignment 1 Spring 216 Shuhua Zhu Assignment 1 Question 1: CTR TCR NET REVEAVE. COSROA AVE. REV PROB COUNT 451 451 451 451 459 368 451 MAX 2.% 9.% $549,524 $1.

More information

The Importance of Service Encounter Social Exchange Elements for Creating Positive Word of Mouth within the Australian Public Hotel Industry

The Importance of Service Encounter Social Exchange Elements for Creating Positive Word of Mouth within the Australian Public Hotel Industry The Importance of Service Encounter Social Exchange Elements for Creating Positive Word of Mouth within the Australian Public Hotel Industry Elizabeth Connoley - University of New South Wales Abstract

More information

1. Department of Design and Environmental Analysis, Cornell University; Energy Technology Area, Lawrence Berkeley National Laboratory

1. Department of Design and Environmental Analysis, Cornell University; Energy Technology Area, Lawrence Berkeley National Laboratory An Overview of the Success Story of Jiangsu Electric s Residential Time of Use Program in China and Related Behavior Changes Jing Ge 1*, Ying Hua 2, Ricardo A Daziano 3, Xing Tong 4 and Sijie Chen 4 1.

More information

Palestinian Central Bureau of Statistics Economic Statistics Directorate

Palestinian Central Bureau of Statistics Economic Statistics Directorate Palestinian Central Bureau of Statistics Economic Statistics Directorate The Services Survey 2002 User s Guide Raw Data Table of Contents Concepts and Definition Survey Questionnaire Data Set linkage Target

More information

Timing Production Runs

Timing Production Runs Class 7 Categorical Factors with Two or More Levels 189 Timing Production Runs ProdTime.jmp An analysis has shown that the time required in minutes to complete a production run increases with the number

More information

Mohammad Abdallah Fayad Altawalbeh, Firas Na el Rawhi Hashem, Khalid Ali Ahmad Alduneibat. Tafilah Technical University, Jordan

Mohammad Abdallah Fayad Altawalbeh, Firas Na el Rawhi Hashem, Khalid Ali Ahmad Alduneibat. Tafilah Technical University, Jordan Journal of Modern Accounting and Auditing, January 2017, Vol. 13, No. 1, 1-7 doi: 10.17265/1548-6583/2017.01.001 D DAVID PUBLISHING The Role of Accounting Information Systems in Activating the Role of

More information