Introduction to Structural Equation Modelling Answers to Exercises

Size: px
Start display at page:

Download "Introduction to Structural Equation Modelling Answers to Exercises"

Transcription

1 Introduction to Structural Equation Modelling Answers to Exercises John Fox Applied Statistics With R WU-Wien, May/June (a) Recursive y 3 = γ 31 x 1 + γ 32 x 2 + ε 6 y 4 = γ 41 x 1 + γ 42 x 2 + ε 7 y 5 = β 53 y 3 + β 54 y 4 + ε 8 (b) Nonrecursive y 3 = γ 31 x 1 + β 34 y 4 + ε 6 y 4 = γ 42 x 2 + β 43 y 3 + ε 7 y 5 = β 53 y 3 + β 54 y 4 + ε 8 (c) Block recursive y 3 = γ 31 x 1 + β 34 y 4 + ε 6 y 4 = γ 42 x 2 + β 43 y 4 + ε 7 y 5 = γ 51 x 1 + γ 52 x 2 + β 53 y 3 + β 54 y 4 + ε 8 (d) Block recursive y 3 = γ 31 x 1 + γ 32 x 2 + β 34 y 4 + ε 6 y 4 = γ 41 x 1 + γ 42 x 2 + β 43 y 4 + ε 7 y 5 = β 53 y 3 + β 54 y 4 + ε 8 (e) Nonrecursive y 2 = γ 21 x 1 + ε 4 y 3 = γ 31 x 1 + β 32 y 2 + ε 5 (f) Recursive y 2 = γ 21 x 1 + ε 4 y 3 = γ 31 x 1 + β 32 y 2 + ε 5 (g) Nonrecursive y 10 = γ 10,1 x 1 + γ 10,2 x 2 + γ 10,3 x 3 + γ 10,4 x 4 + γ 10,5 x 5 + γ 10,6 x 6 + γ 10,7 x 7 + γ 10,8 x 8 + β 10,11 y 11 + ε 12 y 11 = γ 11,2 x 2 + γ 11,3 x 3 + γ 11,4 x 4 + γ 11,5 x 5 + γ 11,6 x 6 + γ 11,7 x 7 + γ 10,8 x 8 + γ 11,9 x 9 + β 11,10 y 11 + ε 13 1

2 (j) Recursive y 5 = γ 52 x 2 + γ 53 x 3 + γ 54 x 4 + ε 8 y 6 = γ 61 x 1 + γ 62 x 2 + γ 63 x 3 + β 65 y 5 + ε 9 y 7 = γ 71 x 1 + γ 72 x 2 + γ 73 x 3 + β 76 y 6 + ε The general causal structure of the model seems reasonable to me. It s always possible in observational data to imagine that the exogenous variables are actually correlated with the error, but the burden should be on a critic to indicate what omitted variables are likely to make this true. The model could be more articulated, treating some of the exogenous variables as endogenous, perhaps in a block-recursvive structure, but this doesn t invalidate the model as specified. I wonder about the distribution of the endogenous variables, about the linearity of effects, and about possible interactions (e.g., of other explanatory variables with race), but without access to the original data, it s impossible to know whether these concerns are valid. 4.5 Here, too, the general causal structure of the model seems reasonable, but the assumption that the errors are uncorrelated does not: I expect that the omitted causes of the endogenous variables are similar. As well, all of the endogenous variables are counts, which are probably positively skewed. Although one can t know without checking the data, assuming normally distributed errors here is probably not a good idea. 2. (a) IV estimating equations: s z1 y = s z1 x 1 b β1 + s z1 x 2 b β2 s z2 y = s z2 x 1 b β1 + s z2 x 2 b β2 s z3y = s z3x 1 b β1 + s z3x 2 b β2 (b) We have three estimating equations but only two unknown parameters; generally, the estimating equations will be inconsistent there will be no pair of values b β 1, b β 2 that satisfies all three simultaneously. (c) [optional] There are several ways to proceed. One simple way would be to arbitrarily get rid of one of the IVs. After all, we have more IVs than we need, and any two will give us consistent estimates of β 1 and β 2. (But see the later discussion of estimating overidentified equations.) 3. Identification: (a) overidentified (b) just-identified (c) just-identified (d) underidentified (e) underidentified (f) just-identified (g) just-identified (j) overidentified 2

3 Estimation: (a) OLS (b) IV (or equivalently, 2SLS or FIML) (c) IV (or equivalently, 2SLS or FIML), taking account of the block-recursive structure (so x 3 and x 4 can be used as IVs in estimating for the equation for y 5 ) (d) The model cannot be estimated (although the structural equation for y 5 could be estimated by 2SLS). (e) The model cannot be estimated (although the structural equation for y 2 could be estimated by OLS). (f) OLS (g) IV (or equivalently, 2SLS or FIML) (j) OLS Rindfuss et al: Because this is a just-identified model, IV, 2SLS, and FIML estimates will coincide. Estimates by FIML from the sem function: library(sem) Rindfuss <- matrix(c( , 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, , , 0, 0, 0, 0, 0, 0, 0, 0, 0, , , , 0, 0, 0, 0, 0, 0, 0, 0, , , , , 0, 0, 0, 0, 0, 0, 0, , , , , , 0, 0, 0, 0, 0, 0, , , , , , , 0, 0, 0, 0, 0, , , , , , , , 0, 0, 0, 0, , , , , , , , , 0, 0, 0, , , , , , , , , , 0, 0, , , , , , , , , , , 0, , , , , , , , , , , ), + 11, 11, byrow=true) rownames(rindfuss) <- colnames(rindfuss) <- c("fatherocc", "Black", "Sibs", "Farm", "South", + "Parents", "Catholic", "Smoking", "Miscarriage", "Education", "FirstBirth") Rindfuss.mod <- specify.model() 1: FatherOcc - Education, gamma10.1, NA 2: Black - Education, gamma10.2, NA 3: Sibs - Education, gamma10.3, NA 4: Farm - Education, gamma10.4, NA 5: South - Education, gamma10.5, NA 6: Parents - Education, gamma10.6, NA 7: Catholic - Education, gamma10.7, NA 8: Smoking - Education, gamma10.8, NA 9: FirstBirth - Education, beta10.11, NA 10: Black - FirstBirth, gamma11.2, NA 11: Sibs - FirstBirth, gamma11.3, NA 12: Farm - FirstBirth, gamma11.4, NA 13: South - FirstBirth, gamma11.5, NA 14: Parents - FirstBirth, gamma11.6, NA 15: Catholic - FirstBirth, gamma11.7, NA 16: Smoking - FirstBirth, gamma11.8, NA 17: Miscarriage- FirstBirth, gamma11.9, NA 3

4 18: Education - FirstBirth, beta11.10, NA 19: Education <- Education, sigma10.10,na 20: FirstBirth<- FirstBirth, sigma11.11,na 21: Education <- FirstBirth, sigma10.11,na 22: Read 21 records Rindfuss.sem <- sem(rindfuss.mod, Rindfuss, 1766, + fixed.x=c("fatherocc", "Black", "Sibs", "Farm", "South", + "Parents", "Catholic", "Smoking", "Miscarriage")) summary(rindfuss.sem) Model Chisquare = e-06 Df = 0 Pr(Chisq) = NA Chisquare (null model) = Df = 55 Goodness-of-fit index = 1 Adjusted goodness-of-fit index = NA RMSEA index = Inf 90 % CI: (Inf, Inf) Bentler-Bonnett NFI = 1 Tucker-Lewis NNFI = -Inf Bentler CFI = 1 BIC = NA Normalized Residuals Min. 1st Qu. Median Mean 3rd Qu. Max e e e e e e-04 Parameter Estimates Estimate Std Error z value Pr( z ) gamma e+00 Education <--- FatherOcc gamma e-03 Education <--- Black gamma e+00 Education <--- Sibs gamma e-01 Education <--- Farm gamma e-06 Education <--- South gamma e-09 Education <--- Parents gamma e-05 Education <--- Catholic gamma e-08 Education <--- Smoking beta e-01 Education <--- FirstBirth gamma e-05 FirstBirth <--- Black gamma e-02 FirstBirth <--- Sibs gamma e-01 FirstBirth <--- Farm gamma e-01 FirstBirth <--- South gamma e+00 FirstBirth <--- Parents gamma e-04 FirstBirth <--- Catholic gamma e-02 FirstBirth <--- Smoking gamma e+00 FirstBirth <--- Miscarriage beta e-09 FirstBirth <--- Education sigma e+00 Education <-- Education sigma e+00 FirstBirth <-- FirstBirth sigma e-02 FirstBirth <-- Education Iterations = 52 4

5 The reciprocal effects between education and age at first birth are primarily what are of interest here. The coefficient for the direct effect of age at first birth on education at marriage is (surprisingly) positive, but non-significant. The coefficient for the direct effect of education on age at first birth is positive (as expected) and highly statistically significant. The estimated correlation between the errors is r 10,11 = = This isn t a very large correlaton, but I would have expected it to be positive (and the negative disturbance covariance is statistically significant), so there is a suggestion that the model may be misspecified. Lincoln: Because this is a recursive model, OLS and FIML estimates coincide. Estimates by FIML from the sem function: Lincoln <- matrix(c( , 0, 0, 0, 0, 0, 0, , , 0, 0, 0, 0, 0, , , , 0, 0, 0, 0, , , , , 0, 0, 0, , , , , , 0, 0, , , , , , , 0, , , , , , , ), + 7, 7, byrow=true) rownames(lincoln) <- colnames(lincoln) <- c("unionstaff", "Employment", + "logworkers", "Unionized", "Strikes", "Strikers", "PersonDays") Lincoln.mod <- specify.model() 1: Employment - Strikes, gamma52, NA 2: logworkers - Strikes, gamma53, NA 3: Unionized - Strikes, gamma54, NA 4: UnionStaff - Strikers, gamma61, NA 5: Employment - Strikers, gamma62, NA 6: logworkers - Strikers, gamma63, NA 7: Strikes - Strikers, beta65, NA 8: UnionStaff - PersonDays,gamma71, NA 9: Employment - PersonDays,gamma72, NA 10: logworkers - PersonDays,gamma73, NA 11: Strikers - PersonDays,beta76, NA 12: Strikes <- Strikes, sigma55, NA 13: Strikers <- Strikers, sigma66, NA 14: PersonDays <- PersonDays,sigma77, NA 15: Read 14 records Lincoln.sem <- sem(lincoln.mod, Lincoln, 78, + fixed.x=c("unionstaff", "Employment", "logworkers", "Unionized")) summary(lincoln.sem) Model Chisquare = Df = 4 Pr(Chisq) = Chisquare (null model) = Df = 21 Goodness-of-fit index = Adjusted goodness-of-fit index = RMSEA index = % CI: (NA, ) Bentler-Bonnett NFI = Tucker-Lewis NNFI = Bentler CFI = 0 BIC =

6 Normalized Residuals Min. 1st Qu. Median Mean 3rd Qu. Max e e e e e e-01 Parameter Estimates Estimate Std Error z value Pr( z ) gamma e-03 Strikes <--- Employment gamma e-07 Strikes <--- logworkers gamma e-04 Strikes <--- Unionized gamma e-07 Strikers <--- UnionStaff gamma e-03 Strikers <--- Employment gamma e-05 Strikers <--- logworkers beta e+00 Strikers <--- Strikes gamma e-03 PersonDays <--- UnionStaff gamma e-04 PersonDays <--- Employment gamma e-04 PersonDays <--- logworkers beta e+00 PersonDays <--- Strikers sigma e-10 Strikes <-- Strikes sigma e-10 Strikers <-- Strikers sigma e-10 PersonDays <-- PersonDays Iterations = 0 Because this model is overidentified, it was possible that it would not do a good job of reproducing the observed correlational structure of the data, but the overidentification test (labelled Model Chisquare in the output) is nonsignificant. Desipte the small sample size, all of the specified structural parameters are statistically significant. Not surprisingly, given the nature of the three endogenous variables (numbers of strikes, strikers, and person-days lost to strikes), the coefficients b β 65 and b β 76 are particularly highly significant. 4. (a) Label the variables as follows structural submodel: x 1 x 2 y 1 y 2 y 3 y 4 ξ 1 η 1 η 2 Education SEI Anomia67 Powerless67 Anomia71 Powerless71 SES Alienation67 Alienation71 η 1 = γ 11 ξ 1 + ζ 1 η 2 = γ 21 ξ 1 + β 21 η 1 + ζ 2 6

7 measurement submodel: x 1 = ξ 1 + δ 1 x 2 = λ x 21ξ 1 + δ 2 y 1 = η 1 + ε 1 y 2 = λ y 21 η 1 + ε 2 y 3 = η 2 + ε 3 y 4 = λ y 42 η 2 + ε 4 note that Cov(ε 1,ε 3 ) and Cov(ε 2,ε 4 ) are not prespecified to be 0. (b) Allowing correlated measurement errors across waves of the panel study appears to make sense. Specifying that the structural disturbances ζ 1 and ζ 2 are uncorrelated across waves almost surely does not (and will likely lead to the direct effect of Alienation67 on Alienation71 being over-estimated). Having only a single exogenous cause of alienation makes for a very sparse model and, in my opinion, calls into question the exogeneity of SES. Isn t SES likely to be correlated with other possible causes of alienation? race, ethnicity, and age come immediately to mind. Finally, it doesn t make sense to me to think of SES as a cause, rather than a consequence, of Education and SEI. (The resulting model would not be identified, I believe.) (c) Parameters: γ 11,γ 21,β 21,λ x 21,λ y 21,λy 42,φ 11,ψ 11,ψ 22,θ δ 11,θ δ 22,θ ε 11,θ ε 22,θ ε 33,θ ε 44,θ ε 13,θ ε 24 (17 in all) Number of observed variances and covariances = (6)(6 + 1)/2 = 21. Given that the model is identified, it is overidentified since there are more observed variances and covariances than parameters to estimate. (d) S.Wheaton <- matrix(c( , 0, 0, 0, 0, 0, , 9.364, 0, 0, 0, 0, , 5.091, , 0, 0, 0, , 5.028, 7.495, 9.986, 0, 0, , , , , 9.610, 0, , , , , , ), + 6, 6) rownames(s.wheaton) <- colnames(s.wheaton) <- + c( Anomia67, Powerless67, Anomia71, Powerless71, Education, SEI ) model.wheaton.1 <- specify.model() 1: Alienation67 - Anomia67, NA, 1 2: Alienation67 - Powerless67, lamby21, NA 3: Alienation71 - Anomia71, NA, 1 4: Alienation71 - Powerless71, lamby42, NA 5: SES - Education, NA, 1 6: SES - SEI, lambx21, NA 7: SES - Alienation67, gam11, NA 8: SES - Alienation71, gam21, NA 9: Alienation67 - Alienation71, beta21, NA 10: Anomia67 <- Anomia67, thee11, NA 11: Powerless67 <- Powerless67, thee22, NA 12: Anomia71 <- Anomia71, thee33, NA 13: Powerless71 <- Powerless71, thee44, NA 14: Anomia67 <- Anomia71, thee13, NA 15: Powerless67 <- Powerless71, thee24, NA 16: Education <- Education, thed11, NA 17: SEI <- SEI, thed22, NA 7

8 18: Alienation67 <- Alienation67, psi11, NA 19: Alienation71 <- Alienation71, psi22, NA 20: SES <- SES, phi11, NA 21: Read 20 records sem.wheaton.1 <- sem(model.wheaton.1, S.Wheaton, 932) summary(sem.wheaton.1) Model Chisquare = Df = 4 Pr(Chisq) = Chisquare (null model) = Df = 15 Goodness-of-fit index = Adjusted goodness-of-fit index = RMSEA index = % CI: (NA, ) Bentler-Bonnett NFI = Tucker-Lewis NNFI = Bentler CFI = BIC = Normalized Residuals Min. 1st Qu. Median Mean 3rd Qu. Max Parameter Estimates Estimate Std Error z value Pr( z ) lamby e+00 Powerless67 <--- Alienation67 lamby e+00 Powerless71 <--- Alienation71 lambx e+00 SEI <--- SES gam e+00 Alienation67 <--- SES gam e-05 Alienation71 <--- SES beta e+00 Alienation71 <--- Alienation67 thee e+00 Anomia67 <-- Anomia67 thee e-10 Powerless67 <-- Powerless67 thee e+00 Anomia71 <-- Anomia71 thee e-12 Powerless71 <-- Powerless71 thee e-07 Anomia71 <-- Anomia67 thee e-01 Powerless71 <-- Powerless67 thed e-08 Education <-- Education thed e+00 SEI <-- SEI psi e+00 Alienation67 <-- Alienation67 psi e+00 Alienation71 <-- Alienation71 phi e+00 SES <-- SES Iterations = 92 With the exception of the measurement-error covariance of the two powerlessness measures, all of the parameter estimates are highly statistically significant. The estimates of the structural parameters appear reasonable (although, as indicated above, the coefficient β b 21 is probably an over-estimate). The overidentification test and fit indices suggest that the model does a good job of reproducing the correlational structure of the data. (e) model.wheaton.2 <- specify.model() 1: Alienation67 - Anomia67, NA, 1 2: Alienation67 - Powerless67, lamby*, NA 3: Alienation71 - Anomia71, NA, 1 8

9 4: Alienation71 - Powerless71, lamby*, NA 5: SES - Education, NA, 1 6: SES - SEI, lambx21, NA 7: SES - Alienation67, gam11, NA 8: SES - Alienation71, gam21, NA 9: Alienation67 - Alienation71, beta21, NA 10: Anomia67 <- Anomia67, thee1*, NA 11: Powerless67 <- Powerless67, thee2*, NA 12: Anomia71 <- Anomia71, thee1*, NA 13: Powerless71 <- Powerless71, thee2*, NA 14: Anomia67 <- Anomia71, thee13, NA 15: Powerless67 <- Powerless71, thee24, NA 16: Education <- Education, thed11, NA 17: SEI <- SEI, thed22, NA 18: Alienation67 <- Alienation67, psi11, NA 19: Alienation71 <- Alienation71, psi22, NA 20: SES <- SES, phi11, NA 21: Read 20 records sem.wheaton.2 <- sem(model.wheaton.2, S.Wheaton, 932) sem.wheaton.2 Model Chisquare = Df = 7 lamby* lambx21 gam11 gam21 beta21 thee1* thee2* thee13 thee24 thed11 thed22 psi psi22 phi Iterations = pchisq( , 7-4) [1] pchisq(deviance(sem.wheaton.2) - deviance(sem.wheaton.1), + df.residual(sem.wheaton.2) - df.residual(sem.wheaton.1), + lower.tail=false) [1] The nonsignificant likelihood-ratio test comparing the two models suggests that constraining the measurement-model parameters to be equal across waves is consistent with the data. 9

Chapter 3: Testing alternative models of data

Chapter 3: Testing alternative models of data Chapter 3: Testing alternative models of data William Revelle Northwestern University Prepared as part of course on latent variable analysis (Psychology 454) and as a supplement to the Short Guide to R

More information

An Introduction to Structural Equation Modeling with the sem Package for R 1. John Fox

An Introduction to Structural Equation Modeling with the sem Package for R 1. John Fox Georg-August University Göttingen An Introduction to Structural Equation Modeling with the sem Package for R John Fox McMaster University, Canada June 2014 Copyright 2014 by John Fox An Introduction to

More information

Minor data correction

Minor data correction More adventures Steps of analysis I. Initial data entry as a spreadsheet II. descriptive stats III.preliminary correlational structure IV.EFA V.CFA/SEM VI.Theoretical interpretation Initial data entry

More information

Inference using structural equations with latent variables

Inference using structural equations with latent variables This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike License. Your use of this material constitutes acceptance of that license and the conditions of use of materials on this

More information

An Introduction to Structural Equation Modelling John Fox

An Introduction to Structural Equation Modelling John Fox Lecture Notes (with corrections) An Introduction to Structural Equation Modelling John Fox McMaster University Canada Copyright 2006 by John Fox Introduction to Structural-Equation Modelling 1 1. Introduction

More information

Introduction to Structural Equation Modeling Dominique Zephyr Applied Statistics Lab

Introduction to Structural Equation Modeling Dominique Zephyr Applied Statistics Lab Applied Statistics Lab Introduction to Structural Equation Modeling Dominique Zephyr Applied Statistics Lab SEM Model 3.64 7.32 Education 2.6 Income 2.1.6.83 Charac. of Individuals 1 5.2e-06 -.62 2.62

More information

SEM with observed variables: parameterization and identification. Psychology 588: Covariance structure and factor models

SEM with observed variables: parameterization and identification. Psychology 588: Covariance structure and factor models SEM with observed variables: parameterization and identification Psychology 588: Covariance structure and factor models Limitations of SEM as a causal modeling 2 If an SEM model reflects the reality, the

More information

Nonrecursive Models Highlights Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised April 6, 2015

Nonrecursive Models Highlights Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised April 6, 2015 Nonrecursive Models Highlights Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised April 6, 2015 This lecture borrows heavily from Duncan s Introduction to Structural

More information

Confirmatory Factor Analysis. Psych 818 DeShon

Confirmatory Factor Analysis. Psych 818 DeShon Confirmatory Factor Analysis Psych 818 DeShon Purpose Takes factor analysis a few steps further. Impose theoretically interesting constraints on the model and examine the resulting fit of the model with

More information

THE GENERAL STRUCTURAL EQUATION MODEL WITH LATENT VARIATES

THE GENERAL STRUCTURAL EQUATION MODEL WITH LATENT VARIATES THE GENERAL STRUCTURAL EQUATION MODEL WITH LATENT VARIATES I. Specification: A full structural equation model with latent variables consists of two parts: a latent variable model (which specifies the relations

More information

SC705: Advanced Statistics Instructor: Natasha Sarkisian Class notes: Model Building Strategies

SC705: Advanced Statistics Instructor: Natasha Sarkisian Class notes: Model Building Strategies SC705: Advanced Statistics Instructor: Natasha Sarkisian Class notes: Model Building Strategies Model Diagnostics The model diagnostics and improvement strategies discussed here apply to both measurement

More information

Latent Variable Analysis

Latent Variable Analysis Latent Variable Analysis Path Analysis Recap I. Path Diagram a. Exogeneous vs. Endogeneous Variables b. Dependent vs, Independent Variables c. Recursive vs. on-recursive Models II. Structural (Regression)

More information

Introduction to Confirmatory Factor Analysis

Introduction to Confirmatory Factor Analysis Introduction to Confirmatory Factor Analysis Multivariate Methods in Education ERSH 8350 Lecture #12 November 16, 2011 ERSH 8350: Lecture 12 Today s Class An Introduction to: Confirmatory Factor Analysis

More information

UNIVERSITY OF TORONTO MISSISSAUGA April 2009 Examinations STA431H5S Professor Jerry Brunner Duration: 3 hours

UNIVERSITY OF TORONTO MISSISSAUGA April 2009 Examinations STA431H5S Professor Jerry Brunner Duration: 3 hours Name (Print): Student Number: Signature: Last/Surname First /Given Name UNIVERSITY OF TORONTO MISSISSAUGA April 2009 Examinations STA431H5S Professor Jerry Brunner Duration: 3 hours Aids allowed: Calculator

More information

An Introduction to Path Analysis

An Introduction to Path Analysis An Introduction to Path Analysis PRE 905: Multivariate Analysis Lecture 10: April 15, 2014 PRE 905: Lecture 10 Path Analysis Today s Lecture Path analysis starting with multivariate regression then arriving

More information

9 Day 4: Multivariate analysis. 8.5 Multi-level models as an alternative to repeated measures ANOVA

9 Day 4: Multivariate analysis. 8.5 Multi-level models as an alternative to repeated measures ANOVA --- Signif. codes: 0 ^aăÿ***^aăź 0.001 ^aăÿ**^aăź 0.01 ^aăÿ*^aăź 0.05 ^aăÿ.^aăź 0.1 ^aăÿ ^aăź 1 > print(model.tables(recall.aov, "means"), digits = 3) Tables of means Grand mean 18.53704 time time long

More information

Overview. 1. Terms and Definitions. 2. Model Identification. 3. Path Coefficients

Overview. 1. Terms and Definitions. 2. Model Identification. 3. Path Coefficients 2. The Basics Overview 1. Terms and Definitions 2. Model Identification 3. Path Coefficients 2.1 Terms and Definitions 2.1 Terms & Definitions. Structural equation model = observed, latent, composite Direct

More information

An Introduction to Mplus and Path Analysis

An Introduction to Mplus and Path Analysis An Introduction to Mplus and Path Analysis PSYC 943: Fundamentals of Multivariate Modeling Lecture 10: October 30, 2013 PSYC 943: Lecture 10 Today s Lecture Path analysis starting with multivariate regression

More information

STRUCTURAL EQUATION MODELING. Khaled Bedair Statistics Department Virginia Tech LISA, Summer 2013

STRUCTURAL EQUATION MODELING. Khaled Bedair Statistics Department Virginia Tech LISA, Summer 2013 STRUCTURAL EQUATION MODELING Khaled Bedair Statistics Department Virginia Tech LISA, Summer 2013 Introduction: Path analysis Path Analysis is used to estimate a system of equations in which all of the

More information

2/26/2017. PSY 512: Advanced Statistics for Psychological and Behavioral Research 2

2/26/2017. PSY 512: Advanced Statistics for Psychological and Behavioral Research 2 PSY 512: Advanced Statistics for Psychological and Behavioral Research 2 What is SEM? When should we use SEM? What can SEM tell us? SEM Terminology and Jargon Technical Issues Types of SEM Models Limitations

More information

Econometrics. Week 8. Fall Institute of Economic Studies Faculty of Social Sciences Charles University in Prague

Econometrics. Week 8. Fall Institute of Economic Studies Faculty of Social Sciences Charles University in Prague Econometrics Week 8 Institute of Economic Studies Faculty of Social Sciences Charles University in Prague Fall 2012 1 / 25 Recommended Reading For the today Instrumental Variables Estimation and Two Stage

More information

Case of single exogenous (iv) variable (with single or multiple mediators) iv à med à dv. = β 0. iv i. med i + α 1

Case of single exogenous (iv) variable (with single or multiple mediators) iv à med à dv. = β 0. iv i. med i + α 1 Mediation Analysis: OLS vs. SUR vs. ISUR vs. 3SLS vs. SEM Note by Hubert Gatignon July 7, 2013, updated November 15, 2013, April 11, 2014, May 21, 2016 and August 10, 2016 In Chap. 11 of Statistical Analysis

More information

UNIVERSIDAD CARLOS III DE MADRID ECONOMETRICS FINAL EXAM (Type B) 2. This document is self contained. Your are not allowed to use any other material.

UNIVERSIDAD CARLOS III DE MADRID ECONOMETRICS FINAL EXAM (Type B) 2. This document is self contained. Your are not allowed to use any other material. DURATION: 125 MINUTES Directions: UNIVERSIDAD CARLOS III DE MADRID ECONOMETRICS FINAL EXAM (Type B) 1. This is an example of a exam that you can use to self-evaluate about the contents of the course Econometrics

More information

Introduction to Structural Equation Modeling

Introduction to Structural Equation Modeling Introduction to Structural Equation Modeling Notes Prepared by: Lisa Lix, PhD Manitoba Centre for Health Policy Topics Section I: Introduction Section II: Review of Statistical Concepts and Regression

More information

Simultaneous Equations with Error Components. Mike Bronner Marko Ledic Anja Breitwieser

Simultaneous Equations with Error Components. Mike Bronner Marko Ledic Anja Breitwieser Simultaneous Equations with Error Components Mike Bronner Marko Ledic Anja Breitwieser PRESENTATION OUTLINE Part I: - Simultaneous equation models: overview - Empirical example Part II: - Hausman and Taylor

More information

Chapter 8. Models with Structural and Measurement Components. Overview. Characteristics of SR models. Analysis of SR models. Estimation of SR models

Chapter 8. Models with Structural and Measurement Components. Overview. Characteristics of SR models. Analysis of SR models. Estimation of SR models Chapter 8 Models with Structural and Measurement Components Good people are good because they've come to wisdom through failure. Overview William Saroyan Characteristics of SR models Estimation of SR models

More information

Chapter 5. Introduction to Path Analysis. Overview. Correlation and causation. Specification of path models. Types of path models

Chapter 5. Introduction to Path Analysis. Overview. Correlation and causation. Specification of path models. Types of path models Chapter 5 Introduction to Path Analysis Put simply, the basic dilemma in all sciences is that of how much to oversimplify reality. Overview H. M. Blalock Correlation and causation Specification of path

More information

The Role of Leader Motivating Language in Employee Absenteeism (Mayfield: 2009)

The Role of Leader Motivating Language in Employee Absenteeism (Mayfield: 2009) DATE: 12/15/2009 TIME: 5:50 Page 1 LISREL 8.80 (STUDENT EDITION) BY Karl G. J reskog & Dag S rbom This program is published exclusively by Scientific Software International, Inc. 7383 N. Lincoln Avenue,

More information

THE GENERAL STRUCTURAL EQUATION MODEL WITH LATENT VARIATES

THE GENERAL STRUCTURAL EQUATION MODEL WITH LATENT VARIATES THE GENERAL STRUCTURAL EQUATION MODEL WITH LATENT VARIATES I. Specification: A full structural equation model with latent variables consists of two parts: a latent variable model (which specifies the relations

More information

Handout 12. Endogeneity & Simultaneous Equation Models

Handout 12. Endogeneity & Simultaneous Equation Models Handout 12. Endogeneity & Simultaneous Equation Models In which you learn about another potential source of endogeneity caused by the simultaneous determination of economic variables, and learn how to

More information

Problem Set # 1. Master in Business and Quantitative Methods

Problem Set # 1. Master in Business and Quantitative Methods Problem Set # 1 Master in Business and Quantitative Methods Contents 0.1 Problems on endogeneity of the regressors........... 2 0.2 Lab exercises on endogeneity of the regressors......... 4 1 0.1 Problems

More information

EVALUATION OF STRUCTURAL EQUATION MODELS

EVALUATION OF STRUCTURAL EQUATION MODELS 1 EVALUATION OF STRUCTURAL EQUATION MODELS I. Issues related to the initial specification of theoretical models of interest 1. Model specification: a. Measurement model: (i) EFA vs. CFA (ii) reflective

More information

SEM Day 1 Lab Exercises SPIDA 2007 Dave Flora

SEM Day 1 Lab Exercises SPIDA 2007 Dave Flora SEM Day 1 Lab Exercises SPIDA 2007 Dave Flora 1 Today we will see how to estimate CFA models and interpret output using both SAS and LISREL. In SAS, commands for specifying SEMs are given using linear

More information

Sociology 593 Exam 2 Answer Key March 28, 2002

Sociology 593 Exam 2 Answer Key March 28, 2002 Sociology 59 Exam Answer Key March 8, 00 I. True-False. (0 points) Indicate whether the following statements are true or false. If false, briefly explain why.. A variable is called CATHOLIC. This probably

More information

Title. Description. Remarks and examples. stata.com. stata.com. Variable notation. methods and formulas for sem Methods and formulas for sem

Title. Description. Remarks and examples. stata.com. stata.com. Variable notation. methods and formulas for sem Methods and formulas for sem Title stata.com methods and formulas for sem Methods and formulas for sem Description Remarks and examples References Also see Description The methods and formulas for the sem commands are presented below.

More information

Factor analysis. George Balabanis

Factor analysis. George Balabanis Factor analysis George Balabanis Key Concepts and Terms Deviation. A deviation is a value minus its mean: x - mean x Variance is a measure of how spread out a distribution is. It is computed as the average

More information

Evaluation of structural equation models. Hans Baumgartner Penn State University

Evaluation of structural equation models. Hans Baumgartner Penn State University Evaluation of structural equation models Hans Baumgartner Penn State University Issues related to the initial specification of theoretical models of interest Model specification: Measurement model: EFA

More information

SAS Example 3: Deliberately create numerical problems

SAS Example 3: Deliberately create numerical problems SAS Example 3: Deliberately create numerical problems Four experiments 1. Try to fit this model, failing the parameter count rule. 2. Set φ 12 =0 to pass the parameter count rule, but still not identifiable.

More information

UNIVERSIDAD CARLOS III DE MADRID ECONOMETRICS Academic year 2009/10 FINAL EXAM (2nd Call) June, 25, 2010

UNIVERSIDAD CARLOS III DE MADRID ECONOMETRICS Academic year 2009/10 FINAL EXAM (2nd Call) June, 25, 2010 UNIVERSIDAD CARLOS III DE MADRID ECONOMETRICS Academic year 2009/10 FINAL EXAM (2nd Call) June, 25, 2010 Very important: Take into account that: 1. Each question, unless otherwise stated, requires a complete

More information

Regression without measurement error using proc calis

Regression without measurement error using proc calis Regression without measurement error using proc calis /* calculus2.sas */ options linesize=79 pagesize=500 noovp formdlim='_'; title 'Calculus 2: Regression with no measurement error'; title2 ''; data

More information

Nonrecursive models (Extended Version) Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised April 6, 2015

Nonrecursive models (Extended Version) Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised April 6, 2015 Nonrecursive models (Extended Version) Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised April 6, 2015 NOTE: This lecture borrows heavily from Duncan s Introduction

More information

Instrumental Variables and the Problem of Endogeneity

Instrumental Variables and the Problem of Endogeneity Instrumental Variables and the Problem of Endogeneity September 15, 2015 1 / 38 Exogeneity: Important Assumption of OLS In a standard OLS framework, y = xβ + ɛ (1) and for unbiasedness we need E[x ɛ] =

More information

Instrumental Variables, Simultaneous and Systems of Equations

Instrumental Variables, Simultaneous and Systems of Equations Chapter 6 Instrumental Variables, Simultaneous and Systems of Equations 61 Instrumental variables In the linear regression model y i = x iβ + ε i (61) we have been assuming that bf x i and ε i are uncorrelated

More information

Instrumental variables regression on the Poverty data

Instrumental variables regression on the Poverty data Instrumental variables regression on the Poverty data /********************** poverty2.sas **************************/ options linesize=79 noovp formdlim='-' nodate; title 'UN Poverty Data: Instrumental

More information

Applied Statistics and Econometrics. Giuseppe Ragusa Lecture 15: Instrumental Variables

Applied Statistics and Econometrics. Giuseppe Ragusa Lecture 15: Instrumental Variables Applied Statistics and Econometrics Giuseppe Ragusa Lecture 15: Instrumental Variables Outline Introduction Endogeneity and Exogeneity Valid Instruments TSLS Testing Validity 2 Instrumental Variables Regression

More information

Applied Econometrics (MSc.) Lecture 3 Instrumental Variables

Applied Econometrics (MSc.) Lecture 3 Instrumental Variables Applied Econometrics (MSc.) Lecture 3 Instrumental Variables Estimation - Theory Department of Economics University of Gothenburg December 4, 2014 1/28 Why IV estimation? So far, in OLS, we assumed independence.

More information

The use of structural equation modeling to examine consumption of pornographic materials in Chinese adolescents in Hong Kong

The use of structural equation modeling to examine consumption of pornographic materials in Chinese adolescents in Hong Kong The use of structural equation modeling to examine consumption of pornographic materials in Chinese adolescents in Hong Kong Appendix 1 Creating matrices and checking for normality!prelis SYNTAX: Can be

More information

Consequences of measurement error. Psychology 588: Covariance structure and factor models

Consequences of measurement error. Psychology 588: Covariance structure and factor models Consequences of measurement error Psychology 588: Covariance structure and factor models Scaling indeterminacy of latent variables Scale of a latent variable is arbitrary and determined by a convention

More information

Psychology 454: Latent Variable Modeling

Psychology 454: Latent Variable Modeling Psychology 454: Latent Variable Modeling Week 2 Department of Psychology Northwestern University Evanston, Illinois USA September, 2016 1 / 62 Outline Working through a problem set First steps Creating

More information

Advanced Structural Equations Models I

Advanced Structural Equations Models I This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike License. Your use of this material constitutes acceptance of that license and the conditions of use of materials on this

More information

Instrumental Variables

Instrumental Variables Instrumental Variables Department of Economics University of Wisconsin-Madison September 27, 2016 Treatment Effects Throughout the course we will focus on the Treatment Effect Model For now take that to

More information

Econometrics II - EXAM Answer each question in separate sheets in three hours

Econometrics II - EXAM Answer each question in separate sheets in three hours Econometrics II - EXAM Answer each question in separate sheets in three hours. Let u and u be jointly Gaussian and independent of z in all the equations. a Investigate the identification of the following

More information

Sociology 593 Exam 2 March 28, 2002

Sociology 593 Exam 2 March 28, 2002 Sociology 59 Exam March 8, 00 I. True-False. (0 points) Indicate whether the following statements are true or false. If false, briefly explain why.. A variable is called CATHOLIC. This probably means that

More information

Mediation Analysis: OLS vs. SUR vs. 3SLS Note by Hubert Gatignon July 7, 2013, updated November 15, 2013

Mediation Analysis: OLS vs. SUR vs. 3SLS Note by Hubert Gatignon July 7, 2013, updated November 15, 2013 Mediation Analysis: OLS vs. SUR vs. 3SLS Note by Hubert Gatignon July 7, 2013, updated November 15, 2013 In Chap. 11 of Statistical Analysis of Management Data (Gatignon, 2014), tests of mediation are

More information

Warwick Economics Summer School Topics in Microeconometrics Instrumental Variables Estimation

Warwick Economics Summer School Topics in Microeconometrics Instrumental Variables Estimation Warwick Economics Summer School Topics in Microeconometrics Instrumental Variables Estimation Michele Aquaro University of Warwick This version: July 21, 2016 1 / 31 Reading material Textbook: Introductory

More information

4. Path Analysis. In the diagram: The technique of path analysis is originated by (American) geneticist Sewell Wright in early 1920.

4. Path Analysis. In the diagram: The technique of path analysis is originated by (American) geneticist Sewell Wright in early 1920. 4. Path Analysis The technique of path analysis is originated by (American) geneticist Sewell Wright in early 1920. The relationships between variables are presented in a path diagram. The system of relationships

More information

Longitudinal Invariance CFA (using MLR) Example in Mplus v. 7.4 (N = 151; 6 items over 3 occasions)

Longitudinal Invariance CFA (using MLR) Example in Mplus v. 7.4 (N = 151; 6 items over 3 occasions) Longitudinal Invariance CFA (using MLR) Example in Mplus v. 7.4 (N = 151; 6 items over 3 occasions) CLP 948 Example 7b page 1 These data measuring a latent trait of social functioning were collected at

More information

HOW TO TEST ENDOGENEITY OR EXOGENEITY: AN E-LEARNING HANDS ON SAS

HOW TO TEST ENDOGENEITY OR EXOGENEITY: AN E-LEARNING HANDS ON SAS How to Test Endogeneity or Exogeneity: An E-Learning Hands on SAS 1 HOW TO TEST ENDOGENEITY OR EXOGENEITY: AN E-LEARNING HANDS ON SAS *N. Uttam Singh, **Kishore K Das and *Aniruddha Roy *ICAR Research

More information

SC705: Advanced Statistics Instructor: Natasha Sarkisian Class notes: Introduction to Structural Equation Modeling (SEM)

SC705: Advanced Statistics Instructor: Natasha Sarkisian Class notes: Introduction to Structural Equation Modeling (SEM) SC705: Advanced Statistics Instructor: Natasha Sarkisian Class notes: Introduction to Structural Equation Modeling (SEM) SEM is a family of statistical techniques which builds upon multiple regression,

More information

Dynamic Panels. Chapter Introduction Autoregressive Model

Dynamic Panels. Chapter Introduction Autoregressive Model Chapter 11 Dynamic Panels This chapter covers the econometrics methods to estimate dynamic panel data models, and presents examples in Stata to illustrate the use of these procedures. The topics in this

More information

Using Structural Equation Modeling to Conduct Confirmatory Factor Analysis

Using Structural Equation Modeling to Conduct Confirmatory Factor Analysis Using Structural Equation Modeling to Conduct Confirmatory Factor Analysis Advanced Statistics for Researchers Session 3 Dr. Chris Rakes Website: http://csrakes.yolasite.com Email: Rakes@umbc.edu Twitter:

More information

General structural model Part 1: Covariance structure and identification. Psychology 588: Covariance structure and factor models

General structural model Part 1: Covariance structure and identification. Psychology 588: Covariance structure and factor models General structural model Part 1: Covariance structure and identification Psychology 588: Covariance structure and factor models Latent variables 2 Interchangeably used: constructs --- substantively defined

More information

Factor Analysis & Structural Equation Models. CS185 Human Computer Interaction

Factor Analysis & Structural Equation Models. CS185 Human Computer Interaction Factor Analysis & Structural Equation Models CS185 Human Computer Interaction MoodPlay Recommender (Andjelkovic et al, UMAP 2016) Online system available here: http://ugallery.pythonanywhere.com/ 2 3 Structural

More information

C:\Users\Rex Kline\AppData\Local\Temp\AmosTemp\AmosScratch.amw. Date: Friday, December 5, 2014 Time: 11:20:30 AM

C:\Users\Rex Kline\AppData\Local\Temp\AmosTemp\AmosScratch.amw. Date: Friday, December 5, 2014 Time: 11:20:30 AM Page 1 of 7 C:\Users\Rex Kline\AppData\Local\Temp\AmosTemp\AmosScratch.amw Analysis Summary Date and Time Date: Friday, December 5, 2014 Time: 11:20:30 AM Title Groups Group number 1 (Group number 1) Notes

More information

1 Correlation and Inference from Regression

1 Correlation and Inference from Regression 1 Correlation and Inference from Regression Reading: Kennedy (1998) A Guide to Econometrics, Chapters 4 and 6 Maddala, G.S. (1992) Introduction to Econometrics p. 170-177 Moore and McCabe, chapter 12 is

More information

4 Instrumental Variables Single endogenous variable One continuous instrument. 2

4 Instrumental Variables Single endogenous variable One continuous instrument. 2 Econ 495 - Econometric Review 1 Contents 4 Instrumental Variables 2 4.1 Single endogenous variable One continuous instrument. 2 4.2 Single endogenous variable more than one continuous instrument..........................

More information

5.2. a. Unobserved factors that tend to make an individual healthier also tend

5.2. a. Unobserved factors that tend to make an individual healthier also tend SOLUTIONS TO CHAPTER 5 PROBLEMS ^ ^ ^ ^ 5.1. Define x _ (z,y ) and x _ v, and let B _ (B,r ) be OLS estimator 1 1 1 1 ^ ^ ^ ^ from (5.5), where B = (D,a ). Using the hint, B can also be obtained by 1 1

More information

Structural Equation Modeling and Confirmatory Factor Analysis. Types of Variables

Structural Equation Modeling and Confirmatory Factor Analysis. Types of Variables /4/04 Structural Equation Modeling and Confirmatory Factor Analysis Advanced Statistics for Researchers Session 3 Dr. Chris Rakes Website: http://csrakes.yolasite.com Email: Rakes@umbc.edu Twitter: @RakesChris

More information

Introduction to Regression Analysis. Dr. Devlina Chatterjee 11 th August, 2017

Introduction to Regression Analysis. Dr. Devlina Chatterjee 11 th August, 2017 Introduction to Regression Analysis Dr. Devlina Chatterjee 11 th August, 2017 What is regression analysis? Regression analysis is a statistical technique for studying linear relationships. One dependent

More information

Journal of Multivariate Analysis. Use of prior information in the consistent estimation of regression coefficients in measurement error models

Journal of Multivariate Analysis. Use of prior information in the consistent estimation of regression coefficients in measurement error models Journal of Multivariate Analysis 00 (2009) 498 520 Contents lists available at ScienceDirect Journal of Multivariate Analysis journal homepage: www.elsevier.com/locate/jmva Use of prior information in

More information

1 Motivation for Instrumental Variable (IV) Regression

1 Motivation for Instrumental Variable (IV) Regression ECON 370: IV & 2SLS 1 Instrumental Variables Estimation and Two Stage Least Squares Econometric Methods, ECON 370 Let s get back to the thiking in terms of cross sectional (or pooled cross sectional) data

More information

Econometrics. 8) Instrumental variables

Econometrics. 8) Instrumental variables 30C00200 Econometrics 8) Instrumental variables Timo Kuosmanen Professor, Ph.D. http://nomepre.net/index.php/timokuosmanen Today s topics Thery of IV regression Overidentification Two-stage least squates

More information

FIT CRITERIA PERFORMANCE AND PARAMETER ESTIMATE BIAS IN LATENT GROWTH MODELS WITH SMALL SAMPLES

FIT CRITERIA PERFORMANCE AND PARAMETER ESTIMATE BIAS IN LATENT GROWTH MODELS WITH SMALL SAMPLES FIT CRITERIA PERFORMANCE AND PARAMETER ESTIMATE BIAS IN LATENT GROWTH MODELS WITH SMALL SAMPLES Daniel M. McNeish Measurement, Statistics, and Evaluation University of Maryland, College Park Background

More information

Introduction to Structural Equation Modeling with Latent Variables

Introduction to Structural Equation Modeling with Latent Variables SAS/STAT 9.2 User s Guide Introduction to Structural Equation Modeling with Latent Variables (Book Excerpt) SAS Documentation This document is an individual chapter from SAS/STAT 9.2 User s Guide. The

More information

RESMA course Introduction to LISREL. Harry Ganzeboom RESMA Data Analysis & Report #4 February

RESMA course Introduction to LISREL. Harry Ganzeboom RESMA Data Analysis & Report #4 February RESMA course Introduction to LISREL Harry Ganzeboom RESMA Data Analysis & Report #4 February 17 2009 LISREL SEM: Simultaneous [Structural] Equations Model: A system of linear equations ( causal model )

More information

ECO375 Tutorial 8 Instrumental Variables

ECO375 Tutorial 8 Instrumental Variables ECO375 Tutorial 8 Instrumental Variables Matt Tudball University of Toronto Mississauga November 16, 2017 Matt Tudball (University of Toronto) ECO375H5 November 16, 2017 1 / 22 Review: Endogeneity Instrumental

More information

Evaluating the Sensitivity of Goodness-of-Fit Indices to Data Perturbation: An Integrated MC-SGR Approach

Evaluating the Sensitivity of Goodness-of-Fit Indices to Data Perturbation: An Integrated MC-SGR Approach Evaluating the Sensitivity of Goodness-of-Fit Indices to Data Perturbation: An Integrated MC-SGR Approach Massimiliano Pastore 1 and Luigi Lombardi 2 1 Department of Psychology University of Cagliari Via

More information

WISE International Masters

WISE International Masters WISE International Masters ECONOMETRICS Instructor: Brett Graham INSTRUCTIONS TO STUDENTS 1 The time allowed for this examination paper is 2 hours. 2 This examination paper contains 32 questions. You are

More information

Job Training Partnership Act (JTPA)

Job Training Partnership Act (JTPA) Causal inference Part I.b: randomized experiments, matching and regression (this lecture starts with other slides on randomized experiments) Frank Venmans Example of a randomized experiment: Job Training

More information

Multiple Group CFA Invariance Example (data from Brown Chapter 7) using MLR Mplus 7.4: Major Depression Criteria across Men and Women (n = 345 each)

Multiple Group CFA Invariance Example (data from Brown Chapter 7) using MLR Mplus 7.4: Major Depression Criteria across Men and Women (n = 345 each) Multiple Group CFA Invariance Example (data from Brown Chapter 7) using MLR Mplus 7.4: Major Depression Criteria across Men and Women (n = 345 each) 9 items rated by clinicians on a scale of 0 to 8 (0

More information

Basic econometrics. Tutorial 3. Dipl.Kfm. Johannes Metzler

Basic econometrics. Tutorial 3. Dipl.Kfm. Johannes Metzler Basic econometrics Tutorial 3 Dipl.Kfm. Introduction Some of you were asking about material to revise/prepare econometrics fundamentals. First of all, be aware that I will not be too technical, only as

More information

Econometric Methods. Prediction / Violation of A-Assumptions. Burcu Erdogan. Universität Trier WS 2011/2012

Econometric Methods. Prediction / Violation of A-Assumptions. Burcu Erdogan. Universität Trier WS 2011/2012 Econometric Methods Prediction / Violation of A-Assumptions Burcu Erdogan Universität Trier WS 2011/2012 (Universität Trier) Econometric Methods 30.11.2011 1 / 42 Moving on to... 1 Prediction 2 Violation

More information

4 Instrumental Variables Single endogenous variable One continuous instrument. 2

4 Instrumental Variables Single endogenous variable One continuous instrument. 2 Econ 495 - Econometric Review 1 Contents 4 Instrumental Variables 2 4.1 Single endogenous variable One continuous instrument. 2 4.2 Single endogenous variable more than one continuous instrument..........................

More information

EVALUATING EFFECT, COMPOSITE, AND CAUSAL INDICATORS IN STRUCTURAL EQUATION MODELS 1

EVALUATING EFFECT, COMPOSITE, AND CAUSAL INDICATORS IN STRUCTURAL EQUATION MODELS 1 RESEARCH COMMENTARY EVALUATING EFFECT, COMPOSITE, AND CAUSAL INDICATORS IN STRUCTURAL EQUATION MODELS 1 Kenneth A. Bollen Carolina Population Center, Department of Sociology, University of North Carolina

More information

Economics 241B Estimation with Instruments

Economics 241B Estimation with Instruments Economics 241B Estimation with Instruments Measurement Error Measurement error is de ned as the error resulting from the measurement of a variable. At some level, every variable is measured with error.

More information

Misspecification in Nonrecursive SEMs 1. Nonrecursive Latent Variable Models under Misspecification

Misspecification in Nonrecursive SEMs 1. Nonrecursive Latent Variable Models under Misspecification Misspecification in Nonrecursive SEMs 1 Nonrecursive Latent Variable Models under Misspecification Misspecification in Nonrecursive SEMs 2 Abstract A problem central to structural equation modeling is

More information

8. Instrumental variables regression

8. Instrumental variables regression 8. Instrumental variables regression Recall: In Section 5 we analyzed five sources of estimation bias arising because the regressor is correlated with the error term Violation of the first OLS assumption

More information

Confirmatory Factor Analysis: Model comparison, respecification, and more. Psychology 588: Covariance structure and factor models

Confirmatory Factor Analysis: Model comparison, respecification, and more. Psychology 588: Covariance structure and factor models Confirmatory Factor Analysis: Model comparison, respecification, and more Psychology 588: Covariance structure and factor models Model comparison 2 Essentially all goodness of fit indices are descriptive,

More information

SAS/STAT 14.1 User s Guide. Introduction to Structural Equation Modeling with Latent Variables

SAS/STAT 14.1 User s Guide. Introduction to Structural Equation Modeling with Latent Variables SAS/STAT 14.1 User s Guide Introduction to Structural Equation Modeling with Latent Variables This document is an individual chapter from SAS/STAT 14.1 User s Guide. The correct bibliographic citation

More information

Dealing With Endogeneity

Dealing With Endogeneity Dealing With Endogeneity Junhui Qian December 22, 2014 Outline Introduction Instrumental Variable Instrumental Variable Estimation Two-Stage Least Square Estimation Panel Data Endogeneity in Econometrics

More information

1. You have data on years of work experience, EXPER, its square, EXPER2, years of education, EDUC, and the log of hourly wages, LWAGE

1. You have data on years of work experience, EXPER, its square, EXPER2, years of education, EDUC, and the log of hourly wages, LWAGE 1. You have data on years of work experience, EXPER, its square, EXPER, years of education, EDUC, and the log of hourly wages, LWAGE You estimate the following regressions: (1) LWAGE =.00 + 0.05*EDUC +

More information

MULTILEVEL MODELS WHERE THE RANDOM EFFECTS ARE CORRELATED WITH THE FIXED PREDICTORS

MULTILEVEL MODELS WHERE THE RANDOM EFFECTS ARE CORRELATED WITH THE FIXED PREDICTORS MULTILEVEL MODELS WHERE THE RANDOM EFFECTS ARE CORRELATED WITH THE FIXED PREDICTORS Nigel Rice Centre for Health Economics University of York Heslington York Y01 5DD England and Institute of Education

More information

Using Instrumental Variables to Find Causal Effects in Public Health

Using Instrumental Variables to Find Causal Effects in Public Health 1 Using Instrumental Variables to Find Causal Effects in Public Health Antonio Trujillo, PhD John Hopkins Bloomberg School of Public Health Department of International Health Health Systems Program October

More information

Wooldridge, Introductory Econometrics, 3d ed. Chapter 16: Simultaneous equations models. An obvious reason for the endogeneity of explanatory

Wooldridge, Introductory Econometrics, 3d ed. Chapter 16: Simultaneous equations models. An obvious reason for the endogeneity of explanatory Wooldridge, Introductory Econometrics, 3d ed. Chapter 16: Simultaneous equations models An obvious reason for the endogeneity of explanatory variables in a regression model is simultaneity: that is, one

More information

STOCKHOLM UNIVERSITY Department of Economics Course name: Empirical Methods Course code: EC40 Examiner: Lena Nekby Number of credits: 7,5 credits Date of exam: Friday, June 5, 009 Examination time: 3 hours

More information

Path Analysis. PRE 906: Structural Equation Modeling Lecture #5 February 18, PRE 906, SEM: Lecture 5 - Path Analysis

Path Analysis. PRE 906: Structural Equation Modeling Lecture #5 February 18, PRE 906, SEM: Lecture 5 - Path Analysis Path Analysis PRE 906: Structural Equation Modeling Lecture #5 February 18, 2015 PRE 906, SEM: Lecture 5 - Path Analysis Key Questions for Today s Lecture What distinguishes path models from multivariate

More information

Using the same data as before, here is part of the output we get in Stata when we do a logistic regression of Grade on Gpa, Tuce and Psi.

Using the same data as before, here is part of the output we get in Stata when we do a logistic regression of Grade on Gpa, Tuce and Psi. Logistic Regression, Part III: Hypothesis Testing, Comparisons to OLS Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised January 14, 2018 This handout steals heavily

More information

miivfind: A command for identifying model-implied instrumental variables for structural equation models in Stata

miivfind: A command for identifying model-implied instrumental variables for structural equation models in Stata The Stata Journal (yyyy) vv, Number ii, pp. 1 16 miivfind: A command for identifying model-implied instrumental variables for structural equation models in Stata Shawn Bauldry University of Alabama at

More information

Dynamic Panel Data Models

Dynamic Panel Data Models Models Amjad Naveed, Nora Prean, Alexander Rabas 15th June 2011 Motivation Many economic issues are dynamic by nature. These dynamic relationships are characterized by the presence of a lagged dependent

More information

DATE: 9/ L I S R E L 8.80

DATE: 9/ L I S R E L 8.80 98 LAMPIRAN 3 STRUCTURAL EQUATION MODEL ONE CONGINERIC Use of this program is subject to the terms specified in the Convention. Universal Copyright 9/2017 DATE: 9/ TIME: 20:22 Website: www.ssicentral.com

More information