Psychology 454: Latent Variable Modeling

Size: px
Start display at page:

Download "Psychology 454: Latent Variable Modeling"

Transcription

1 Psychology 454: Latent Variable Modeling Notes for a course in Latent Variable Modeling to accompany Psychometric Theory with Applications in R William Revelle Department of Psychology Northwestern University Evanston, Illinois USA September, / 59

2 Outline Overview Text and Readings and Requirements Overview Latent and Observed Variables Observations, Constructs, Theory Putting it together Correlation and Regression Bivariate correlations Multivariate Regression and Partial Correlation Path models and path algebra Wright s rules Applying path models to regression Measurement models Reliability models Multiple factor models Structural Models Regression models multiple predictors, single criterion 2 / 59

3 Texts and readings Loehlin, J. C. Latent Variable Models (4th ed). Lawrence Erlbaum Associates, Mahwah, N.J (recommended) Revelle, W. (in prep) An introduction to Psychometric Theory with Applications in R. Springer. Chapters available at Various web based readings about SEM e.g., Barrett (2007), Bollen (2002), McArdle (2009), Widaman & Thompson (2003), Preacher (2015) Syllabus and handouts are available at syllabus.pdf Syllabus is subject to modification as we go through the course. Lecture notes will appear no later than 3 hours before class. R tutorial is at 3 / 59

4 Requirements and Evaluation 1. Basic knowledge of psychometrics Preferably have taken 405 or equivalent course. Alternatively, willing to read some key chapters and catch up Chapters available at Basic concepts of measurement and scaling (Chapters 1-3) Correlation and Regression (Chapters 4 & 5) Factor Analysis (Chapter 6) Reliability (Chapter 7) 2. Familiarity with basic linear algebra (Appendix E) (or, at least, a willingness to learn) 3. Willingness to use computer programs, particularly R, comparing alternative solutions, playing with data. 4. Willingness to ask questions 5. Weekly problem sets/final brief paper 4 / 59

5 Outline of Course 1. Review of correlation/regression/reliability/matrix algebra (405 in a week) 2. Basic model fitting/path analysis 3. Simple models 4. Goodness of fit what is it all about? 5. Exploratory Factor Analysis 6. Confirmatory Factor Analysis 7. Multiple groups/multiple occasions 8. Further topics 5 / 59

6 Data = Model + Residual The fundamental equations of statistics are that Data = Model + Residual Residual = Data - Model The problem is to specify the model and then evaluate the fit of the model to the data as compared to other models Fit = f(data, Residual) Typically: Fit α 1 Residual 2 Data 2 Fit = (Data Model)2 Data 2 This is a course in developing, evaluating, and comparing models of data. This is not a course in how to use any particular program (e.g., MPlus, LISREL, AMOS, or even R) to do latent variable analysis, but rather in how and why to think about latent variables when thinking about data. 6 / 59

7 Latent Variable Modeling Two kinds of variables 1. Observed Variables (X, Y) 2. Latent Variables(ξ η ɛ ζ) Three kinds of variance/covariances 1. Observed with Observed C xy or σ xy 2. Observed with Latent λ 3. Latent with Latent φ Three kinds of algebra 1. Path algebra 2. Linear algebra 3. Computer syntax R packages e.g., psych, lavaan, sem, and OpenMx and associated functions Commercial packages: MPlus (available through SSCC) AMOS, EQS (if licensed) 7 / 59

8 Latent and Observed variables The distinction between what we see (observe) versus what is really there goes back at least to Plato in the Allegory of the Cave. Prisoners in a cave observe shadows on the walls of the cave. These are caused by people and objects behind them, but in front of a fire. Movements of the shadows are caused by, but not the same as the movements of the people and objects. In psychology we sometimes make the distinction between surface traits and source traits. A major breakthrough in psychological theorizing was the willingness to consider latent constructs. Operational definitions are associated with the observed (surface) measures. Unobserved, latent constructs are now part of our theoretical armamentarium. 8 / 59

9 X Observed Variables Y X 1 Y 1 X 2 Y 2 X 3 Y 3 X 4 Y 4 X 5 Y 5 X 6 Y 6 9 / 59

10 Latent Variables ξ η ξ 1 η 1 ξ 2 η 2 10 / 59

11 Theory: A regression model of latent variables ξ η ζ 1 ξ 1 η 1 ξ 2 η 2 ζ 2 11 / 59

12 A measurement model for X δ X ξ δ 1 δ 2 δ 3 δ 4 δ 5 δ 6 X 1 X 2 X 3 X 4 X 5 X 6 ξ 1 ξ 2 12 / 59

13 A measurement model for Y η Y ɛ Y 1 η 1 Y 2 Y 3 Y 4 η 2 Y 5 Y 6 ɛ 1 ɛ 2 ɛ 3 ɛ 4 ɛ 5 ɛ 6 13 / 59

14 A complete structural model δ X ξ η Y ɛ δ 1 δ 2 δ 3 δ 4 δ 5 δ 6 X 1 X 2 X 3 X 4 X 5 X 6 ξ 1 ξ 2 ζ 1 Y 1 η 1 Y 2 Y 3 Y 4 η 2 Y 5 ζ 2 Y 6 ɛ 1 ɛ 2 ɛ 3 ɛ 4 ɛ 5 ɛ 6 14 / 59

15 Latent Variable Modeling 1. Requires measuring observed variables Requires defining what is relevant and irrelevant to our theory. Issues in quality of scale information, levels of measurement. 2. Formulating a measurement model of the data: estimating latent constructs Perhaps based upon exploratory and then confirmatory factor analysis, definitely based upon theory. Includes understanding the reliability of the measures. 3. Modeling the structure of the constructs This is a combination of theory and fitting. Do the data fit the theory. Comparison of models. Does one model fit better than alternative models? 15 / 59

16 Data Analysis: using R to analyze Graduate School Applicants The data are taken from an Excel file downloaded from the Graduate School. They were then copied into R and saved as a.rds file. First, get the file and download to your machine. Use your browser: grad.rds Then, load the file using read.file. First, examine the data to remove outliers. > library(psych) #necessary first time you use psych package > grad <- read.file() #find the grad.rds file using your finder > describe(grad) vars n mean sd median trimmed mad min max range skew kurtosis se V.Gre Q.Gre A.Gre P.Gre X2.GPA X4.GPA #clean up the data, remove GPA > 5 > grad1 <- scrub(grad,1,max=5) > describe(grad1) Then, draw a Scatter Plot Matrix of the data. 16 / 59

17 Scatter Plot Matrix of Psychology Graduate Applicants pairs.panels(grad1,cor=false,ellipses=false,smooth=false,lm=true) UgradGPA GRE.Q GRE.V / 59

18 Bivariate Regression X Y ɛ X β y.x Y ŷ = β y.x x + ɛ ɛ β y.x = σxy σ 2 x 18 / 59

19 δ Bivariate Regression X Y ɛ X β y.x Y ŷ = β y.x x + ɛ ɛ β y.x = σxy σ 2 x δ X β x.y Y ˆx = β x.y y + δ β y.x = σxy σ 2 y 19 / 59

20 X Bivariate Correlation Y X ˆx = β x.y y + δ β y.x = σxy σ 2 y Y ŷ = β y.x x + ɛ β y.x = σxy σ 2 x r xy = σxy σ 2x σy 2 20 / 59

21 Scatter Plot Matrix showing correlation and LOESS regression UgradGPA GRE.Q 0.46 GRE.V / 59

22 The effect of selection on the correlation UgradGPA GRE.Q GRE.V Consider what happens if we select a subset The Oregon model (GPA + (V+Q)/200) > 11.6 The range is truncated, but even more important, by using a compensatory selection model, we have changed the sign of the correlations / 59

23 Regression and restriction of range Original data GRE Q > 700 GRE.V r =.46 b =.56 GRE.V r =.18 b = GRE.Q GRE.Q Although the correlation is very sensitive, regression slopes are relatively insensitive to restriction of range. 23 / 59

24 R code for regression figures gradq <- subset(gradf,gradf[2]>700) #choose the subset with(gradq,lm(gre.v ~ GRE.Q)) #do the regression Call: lm(formula = GRE.V ~ GRE.Q) Coefficients: (Intercept) GRE.Q #show the graphic op <- par(mfrow=c(1,2)) #two panel graph with(gradf,{ plot(gre.v ~ GRE.Q,xlim=c(200,800), main="original data", pch=16) abline(lm(gre.v ~ GRE.Q)) } ) text(300,500,"r =.46 b =.56") with(gradq,{ plot(gre.v ~ GRE.Q,xlim=c(200,800),main="GRE Q > 700",pch=16) abline(lm(gre.v ~ GRE.Q)) } ) text(300,500,"r =.18 b =.50") op <- par(mfrow=c(1,1)) #switch back to one panel 24 / 59

25 Alternative versions of the correlation coefficient Table: A number of correlations are Pearson r in different forms, or with particular assumptions. If r = xi y i, then depending upon the type x 2 i y 2 i of data being analyzed, a variety of correlations are found. Coefficient symbol X Y Assumptions Pearson r continuous continuous Spearman rho (ρ) ranks ranks Point bi-serial r pb dichotomous continuous Phi φ dichotomous dichotomous Bi-serial r bis dichotomous continuous normality Tetrachoric r tet dichotomous dichotomous bivariate normality Polychoric r pc categorical categorical bivariate normality 25 / 59

26 y y y y The biserial correlation estimates the latent correlation r = 0.9 rpb = 0.71 rbis = 0.89 r = 0.6 rpb = 0.48 rbis = x x r = 0.3 rpb = 0.23 rbis = 0.28 r = 0 rpb = 0.02 rbis = x x 26 / 59

27 The tetrachoric correlation estimates the latent correlation τ X > τ X < τ Y > Τ X < τ Y < Τ rho = 0.5 phi = 0.33 X > τ Y > Τ X > τ Y < Τ Y > Τ Τ / 59

28 The tetrachoric correlation estimates the latent correlation Bivariate density rho = 0.5 z y x 28 / 59

29 Cautions about correlations The Anscombe data set Consider the following 8 variables describe(anscombe) vars n mean sd median trimmed mad min max range skew kurtosis se x x x x y y y y summary(lm(y1~x1,data=anscombe)) #show one of the regressions Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) * x ** Residual standard error: on 9 degrees of freedom Multiple R-squared: , Adjusted R-squared: F-statistic: on 1 and 9 DF, p-value: Anscombe (1973) 29 / 59

30 With regressions of Cautions, Anscombe continued Estimate Std. Error t value Pr(> t ) (Intercept) x [[2]] Estimate Std. Error t value Pr(> t ) (Intercept) x [[3]] Estimate Std. Error t value Pr(> t ) (Intercept) x [[4]] Estimate Std. Error t value Pr(> t ) (Intercept) x / 59

31 Cautions about correlations: Anscombe data set Anscombe's 4 Regression data sets y y x x2 y y Moral: Always plot your data! x x4 31 / 59

32 Cautions about correlations: Anscombe data set x x x x y y y y / 59

33 The ubiquitous correlation coefficient Table: Alternative Estimates of effect size. Using the correlation as a scale free estimate of effect size allows for combining experimental and correlational data in a metric that is directly interpretable as the effect of a standardized unit change in x leads to r change in standardized y. Statistic Estimate r equivalent as a function of r Pearson correlation r xy = Cxy r σ x σ xy y Regression b y.x = Cxy σ σx 2 r = b y y.x b σ y.x = r σx x σ y Cohen s d d = X 1 X 2 d = 2r σ x r = d d r 2 Hedge s g g = X 1 X 2 r = g g = 2r df /N s x g 2 +4(df /N) 1 r 2 t - test t = d df r = t 2 2 /(t 2 + df ) t = r 2 df 1 r 2 F-test F = d2 df r = F /(F + df ) F = r 2 df 4 1 r 2 Chi Square r = χ 2 /n χ 2 = r 2 n Odds ratio d = ln(or) ln(or) r = 1.81 ln(or) = 3.62r 1.81 (ln(or)/1.81) r 2 r equivalent r with probability p r = r equivalent 33 / 59

34 X Multiple correlations r x1 y Y X 1 Y r x1 x 2 X 2 r x2 y 34 / 59

35 Multiple Regression X Y ɛ r x1 x 2 β X y.x1 1 Y X 2 β y.x2 ɛ 35 / 59

36 Multiple Regression: decomposing correlations X Y ɛ r x1 y r x1 x 2 β X y.x1 1 Y X 2 β y.x2 r x2 y ɛ 36 / 59

37 Multiple Regression: decomposing correlations X Y ɛ r x1 y r x1 x 2 β X y.x1 1 Y X 2 β y.x2 r x2 y ɛ direct indirect {}}{{}}{ r x1 y = β y.x1 + r x1 x 2 β y.x2 r x2 y = β y.x2 + }{{} direct r x1 x 2 β y.x1 }{{} indirect 37 / 59

38 Multiple Regression: decomposing correlations X Y ɛ r x1 y r x1 x 2 β X y.x1 1 Y X 2 β y.x2 r x2 y ɛ direct indirect {}}{{}}{ r x1 y = β y.x1 + r x1 x 2 β y.x2 r x2 y = β y.x2 + }{{} direct r x1 x 2 β y.x1 }{{} indirect β y.x1 = rx 1 y rx 1 x 2 rx 2 y 1 r 2 x 1 x 2 β y.x2 = rx 2 y rx 1 x 2 rx 1 y 1 r 2 x 1 x 2 38 / 59

39 Multiple Regression: decomposing correlations X Y ɛ r x1 y r x1 x 2 β X y.x1 1 Y X 2 β y.x2 r x2 y ɛ direct indirect {}}{{}}{ r x1 y = β y.x1 + r x1 x 2 β y.x2 r x2 y = β y.x2 + }{{} direct r x1 x 2 β y.x1 }{{} indirect β y.x1 = rx 1 y rx 1 x 2 rx 2 y 1 r 2 x 1 x 2 β y.x2 = rx 2 y rx 1 x 2 rx 1 y 1 r 2 x 1 x 2 R 2 = r x1 yβ y.x1 + r x2 yβ y.x2 39 / 59

40 What happens with 3 predictors? The correlations X Y r x1 y X 1 r x1 x 2 r x2 y r x1 x 3 X 2 Y r x2 x 3 X 3 r x3 y 40 / 59

41 What happens with 3 predictors? β weights X Y ɛ X 1 r x1 x 2 β y.x1 r x1 x 3 3 β y.x2 X 2 β r y.x3 x2 x 3 X 3 Y ɛ3 41 / 59

42 What happens with 3 predictors? X Y ɛ r x1 y X 1 β y.x1 r x1 x 3 3 r x1 x 2 r x2 y X 2 β y.x2 β r y.x3 x2 x 3 X 3 r x3 y Y ɛ3 r x1 y = β y.x1 + }{{} direct r x1 x 2 β y.x1 + r x1 x 3 β y.x3 }{{} indirect r x2 y =... r x3 y =... The math gets tedious 42 / 59

43 Multiple regression and linear algebra Multiple regression requires solving multiple, simultaneous equations to estimate the direct and indirect effects. Each equation is expressed as a r xi y in terms of direct and indirect effects. Direct effect is β y.xi Indirect effect is j i beta y.x j r xj y How to solve these equations? Tediously, or just use linear algebra 43 / 59

44 Wright s Path model of inheritance in the Guinea Pig (Wright, 1921) 44 / 59

45 The basic rules of path analysis think genetics C 1 a e X 1 e X 5 A aab eaab b C 2 X 2 bbc Up... and over and down... B bbd c X 3 C 3 No down and up cd d 3 X 4 No double overs Parents cause children Up... and down... children do not cause parents 45 / 59

46 3 special cases of regression Orthogonal predictors Correlated predictors X 1 r x1 y X 1 r x1 y Y r x1 x 2 Y X 2 r x2 y Suppressive predictors X 1 r x1 y X 2 r x2 y r x1 x 2 Y X 2 46 / 59

47 3 special cases of regression Orthogonal predictors Correlated predictors r x1 x 2 r x1 y X 1 β y.x1 β X 2 y.x2 r x2 y Y Suppressive predictors r x1 y X 1 β y.x1 β y.x2 X 2 Y r x1 y X 1 β y.x1 r x1 x 2 β X 2 y.x2 r x2 y β y.x1 = rx 1 y rx 1 x 2 rx 2 y 1 r 2 x 1 x 2 β y.x2 = rx 2 y rx 1 x 2 rx 1 y 1 r 2 x 1 x 2 Y R 2 = r x1 yβ y.x1 + r x2 yβ y.x2 47 / 59

48 A measurement model for X δ X ξ δ 1 δ 2 δ 3 δ 4 δ 5 δ 6 X 1 X 2 X 3 X 4 X 5 X 6 ξ 1 ξ 2 48 / 59

49 Congeneric Reliability δ X ξ δ 1 δ 2 δ 3 X 1 X 2 X 3 ξ1 49 / 59

50 Creating a congeneric model > cong <- sim.congeneric() > cong V1 V2 V3 V4 V V V V / 59

51 Factor a 1 factor model > f <- fa(cong) > f > cong <- sim.congeneric() > cong V1 V2 V3 V4 V V V V Factor Analysis using method = minres Call: fa(r = cong) Standardized loadings based upon correlation matrix MR1 h2 u2 com V V V V MR1 SS loadings 1.74 Proportion Var / 59

52 Factoring components! > f <- fa(cong) > f Factor Analysis using method = minres Call: fa(r = cong) Standardized loadings based upon correlation matrix MR1 h2 u2 com V V V V > p <- principal(cong) > p Principal Components Analysis Call: principal(r = cong) Standardized loadings (pattern matrix) based upon correlation matrix PC1 h2 u2 com V V V V MR1 SS loadings 1.74 Proportion Var 0.44 PC1 SS loadings 2.27 Proportion Var / 59

53 Exploratory factoring a congeneric model Factor Analysis using method = minres Call: fa(r = cong) Standardized loadings based upon correlation matrix MR1 h2 u2 V V V V MR1 SS loadings 1.74 Proportion Var 0.44 Test of the hypothesis that 1 factor is sufficient. The degrees of freedom for the null model are 6 and the objective function was The degrees of freedom for the model are 2 and the objective function was 0 The root mean square of the residuals is 0 The df corrected root mean square of the residuals is 0 Fit based upon off diagonal values = 1 Measures of factor score adequacy MR1 Correlation of scores with factors 0.89 Multiple R square of scores with factors 0.78 Minimum correlation of possible factor scores / 59

54 Show the structure Factor Analysis V1 V2 V MR1 V4 54 / 59

55 Congeneric with some noise > cong1 <- sim.congeneric(n=500,short=false) > cong1 Call: NULL $model (Population correlation matrix) V1 V2 V3 V4 V V V V $r (Sample correlation matrix for sample size = 500 ) V1 V2 V3 V4 V V V V / 59

56 Add noise to the model > cong1 <- sim.congeneric(n=500,short=false) > f <- fa(cong1$observed) > cong1 > f Call: NULL $model (Population correlation matrix) Factor Analysis using method = V1 V2 V3 V4 V V V V $r (Sample correlation matrix for sample size = 500 ) V1 V2 V3 V4 V V V V minres Call: fa(r = cong1$observed) Standardized loadings based upon correlation m MR1 h2 u2 V V V V MR1 SS loadings 1.79 Proportion Var / 59

57 Factor a 1 dimensional model Factor Analysis using method = minres Call: fa(r = cong1$observed) Standardized loadings based upon correlation matrix MR1 h2 u2 V V V V MR1 SS loadings 1.79 Proportion Var 0.45 Test of the hypothesis that 1 factor is sufficient. The degrees of freedom for the null model are 6 and the objective function was 0.95 with Chi Square of The degrees of freedom for the model are 2 and the objective function was 0 The root mean square of the residuals is 0 The df corrected root mean square of the residuals is 0.01 The number of observations was 500 with Chi Square = 0.11 with prob < 0.95 Tucker Lewis Index of factoring reliability = RMSEA index = 0 and the 90 % confidence intervals are BIC = Fit based upon off diagonal values = 1 Measures of factor score adequacy MR1 Correlation of scores with factors 0.88 Multiple R square of scores with factors 0.78 Minimum correlation of possible factor scores / 59

58 Factor Analysis δ X ξ δ 1 δ 2 δ 3 δ 4 δ 5 δ 6 X 1 X 2 X 3 X 4 X 5 X 6 ξ 1 ξ 2 58 / 59

59 A complete structural model δ X ξ η Y ɛ δ 1 δ 2 δ 3 δ 4 δ 5 δ 6 X 1 X 2 X 3 X 4 X 5 X 6 ξ 1 ξ 2 ζ 1 Y 1 η 1 Y 2 Y 3 Y 4 η 2 Y 5 ζ 2 Y 6 ɛ 1 ɛ 2 ɛ 3 ɛ 4 ɛ 5 ɛ 6 59 / 59

60 Anscombe, F. J. (1973). Graphs in statistical analysis. The American Statistician, 27(1), Barrett, P. (2007). Structural equation modelling: Adjudging model fit. Personality and Individual Differences, 42(5), Bollen, K. A. (2002). Latent variables in psychology and the social sciences. US: Annual Reviews. McArdle, J. J. (2009). Latent variable modeling of differences and changes with longitudinal data. Annual Review of Psychology. Vol 60 Jan 2009, Preacher, K. J. (2015). Advances in mediation analysis: A survey and synthesis of new developments. Annual Review of Psychology, 66, Widaman, K. F. & Thompson, J. S. (2003). On specifying the null model for incremental fit indices in structural equation modeling. Psychological Methods, 8(1), / 59

Psychology 205: Research Methods in Psychology

Psychology 205: Research Methods in Psychology Psychology 205: Research Methods in Psychology Methods in Differential Psychology Department of Psychology Northwestern University Evanston, Illinois USA November, 2016 1 / 21 Outline The two disciplines

More information

Psychology 405: Psychometric Theory

Psychology 405: Psychometric Theory Psychology 405: Psychometric Theory Homework Problem Set #2 Department of Psychology Northwestern University Evanston, Illinois USA April, 2017 1 / 15 Outline The problem, part 1) The Problem, Part 2)

More information

Introduction and Single Predictor Regression. Correlation

Introduction and Single Predictor Regression. Correlation Introduction and Single Predictor Regression Dr. J. Kyle Roberts Southern Methodist University Simmons School of Education and Human Development Department of Teaching and Learning Correlation A correlation

More information

Correlation and Regression: Example

Correlation and Regression: Example Correlation and Regression: Example 405: Psychometric Theory Department of Psychology Northwestern University Evanston, Illinois USA April, 2012 Outline 1 Preliminaries Getting the data and describing

More information

REVIEW 8/2/2017 陈芳华东师大英语系

REVIEW 8/2/2017 陈芳华东师大英语系 REVIEW Hypothesis testing starts with a null hypothesis and a null distribution. We compare what we have to the null distribution, if the result is too extreme to belong to the null distribution (p

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

Hierarchical Factor Analysis.

Hierarchical Factor Analysis. Hierarchical Factor Analysis. As published in Benchmarks RSS Matters, April 2013 http://web3.unt.edu/benchmarks/issues/2013/04/rss-matters Jon Starkweather, PhD 1 Jon Starkweather, PhD jonathan.starkweather@unt.edu

More information

Psychology 205: Research Methods in Psychology Advanced Statistical Procedures Data= Model + Residual

Psychology 205: Research Methods in Psychology Advanced Statistical Procedures Data= Model + Residual Psychology 205: Research Methods in Psychology Advanced Statistical Procedures Data= Model + Residual William Revelle Department of Psychology Northwestern University Evanston, Illinois USA November, 2016

More information

Can you tell the relationship between students SAT scores and their college grades?

Can you tell the relationship between students SAT scores and their college grades? Correlation One Challenge Can you tell the relationship between students SAT scores and their college grades? A: The higher SAT scores are, the better GPA may be. B: The higher SAT scores are, the lower

More information

9. Linear Regression and Correlation

9. Linear Regression and Correlation 9. Linear Regression and Correlation Data: y a quantitative response variable x a quantitative explanatory variable (Chap. 8: Recall that both variables were categorical) For example, y = annual income,

More information

Estimating ability for two samples

Estimating ability for two samples Estimating ability for two samples William Revelle David M. Condon Northwestern University Abstract Using IRT to estimate ability is easy, but how accurate are the estimate and what about multiple samples?

More information

Contents. Acknowledgments. xix

Contents. Acknowledgments. xix Table of Preface Acknowledgments page xv xix 1 Introduction 1 The Role of the Computer in Data Analysis 1 Statistics: Descriptive and Inferential 2 Variables and Constants 3 The Measurement of Variables

More information

Model Estimation Example

Model Estimation Example Ronald H. Heck 1 EDEP 606: Multivariate Methods (S2013) April 7, 2013 Model Estimation Example As we have moved through the course this semester, we have encountered the concept of model estimation. Discussions

More information

Psychology 454: Latent Variable Modeling How do you know if a model works?

Psychology 454: Latent Variable Modeling How do you know if a model works? Psychology 454: Latent Variable Modeling How do you know if a model works? William Revelle Department of Psychology Northwestern University Evanston, Illinois USA November, 2012 1 / 18 Outline 1 Goodness

More information

Lecture 18: Simple Linear Regression

Lecture 18: Simple Linear Regression Lecture 18: Simple Linear Regression BIOS 553 Department of Biostatistics University of Michigan Fall 2004 The Correlation Coefficient: r The correlation coefficient (r) is a number that measures the strength

More information

Introduction to Linear Regression

Introduction to Linear Regression Introduction to Linear Regression James H. Steiger Department of Psychology and Human Development Vanderbilt University James H. Steiger (Vanderbilt University) Introduction to Linear Regression 1 / 46

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

Confidence Intervals, Testing and ANOVA Summary

Confidence Intervals, Testing and ANOVA Summary Confidence Intervals, Testing and ANOVA Summary 1 One Sample Tests 1.1 One Sample z test: Mean (σ known) Let X 1,, X n a r.s. from N(µ, σ) or n > 30. Let The test statistic is H 0 : µ = µ 0. z = x µ 0

More information

Correlation. A statistics method to measure the relationship between two variables. Three characteristics

Correlation. A statistics method to measure the relationship between two variables. Three characteristics Correlation Correlation A statistics method to measure the relationship between two variables Three characteristics Direction of the relationship Form of the relationship Strength/Consistency Direction

More information

Lab 3 A Quick Introduction to Multiple Linear Regression Psychology The Multiple Linear Regression Model

Lab 3 A Quick Introduction to Multiple Linear Regression Psychology The Multiple Linear Regression Model Lab 3 A Quick Introduction to Multiple Linear Regression Psychology 310 Instructions.Work through the lab, saving the output as you go. You will be submitting your assignment as an R Markdown document.

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

Review of Multiple Regression

Review of Multiple Regression Ronald H. Heck 1 Let s begin with a little review of multiple regression this week. Linear models [e.g., correlation, t-tests, analysis of variance (ANOVA), multiple regression, path analysis, multivariate

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

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

BIOL 458 BIOMETRY Lab 9 - Correlation and Bivariate Regression

BIOL 458 BIOMETRY Lab 9 - Correlation and Bivariate Regression BIOL 458 BIOMETRY Lab 9 - Correlation and Bivariate Regression Introduction to Correlation and Regression The procedures discussed in the previous ANOVA labs are most useful in cases where we are interested

More information

Course Introduction and Overview Descriptive Statistics Conceptualizations of Variance Review of the General Linear Model

Course Introduction and Overview Descriptive Statistics Conceptualizations of Variance Review of the General Linear Model Course Introduction and Overview Descriptive Statistics Conceptualizations of Variance Review of the General Linear Model PSYC 943 (930): Fundamentals of Multivariate Modeling Lecture 1: August 22, 2012

More information

Psychology 282 Lecture #4 Outline Inferences in SLR

Psychology 282 Lecture #4 Outline Inferences in SLR Psychology 282 Lecture #4 Outline Inferences in SLR Assumptions To this point we have not had to make any distributional assumptions. Principle of least squares requires no assumptions. Can use correlations

More information

Chapter 10. Correlation and Regression. McGraw-Hill, Bluman, 7th ed., Chapter 10 1

Chapter 10. Correlation and Regression. McGraw-Hill, Bluman, 7th ed., Chapter 10 1 Chapter 10 Correlation and Regression McGraw-Hill, Bluman, 7th ed., Chapter 10 1 Chapter 10 Overview Introduction 10-1 Scatter Plots and Correlation 10- Regression 10-3 Coefficient of Determination and

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

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

1 A Review of Correlation and Regression

1 A Review of Correlation and Regression 1 A Review of Correlation and Regression SW, Chapter 12 Suppose we select n = 10 persons from the population of college seniors who plan to take the MCAT exam. Each takes the test, is coached, and then

More information

Research Design - - Topic 19 Multiple regression: Applications 2009 R.C. Gardner, Ph.D.

Research Design - - Topic 19 Multiple regression: Applications 2009 R.C. Gardner, Ph.D. Research Design - - Topic 19 Multiple regression: Applications 2009 R.C. Gardner, Ph.D. Curve Fitting Mediation analysis Moderation Analysis 1 Curve Fitting The investigation of non-linear functions using

More information

Correlation and Linear Regression

Correlation and Linear Regression Correlation and Linear Regression Correlation: Relationships between Variables So far, nearly all of our discussion of inferential statistics has focused on testing for differences between group means

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

Dimensionality Assessment: Additional Methods

Dimensionality Assessment: Additional Methods Dimensionality Assessment: Additional Methods In Chapter 3 we use a nonlinear factor analytic model for assessing dimensionality. In this appendix two additional approaches are presented. The first strategy

More information

Psychology 405: Psychometric Theory Validity

Psychology 405: Psychometric Theory Validity Preliminaries Psychology 405: Psychometric Theory Validity William Revelle Department of Psychology Northwestern University Evanston, Illinois USA May, 2016 1/17 Preliminaries Outline Preliminaries 2/17

More information

Psychology 454: Latent Variable Modeling How do you know if a model works?

Psychology 454: Latent Variable Modeling How do you know if a model works? Psychology 454: Latent Variable Modeling How do you know if a model works? William Revelle Department of Psychology Northwestern University Evanston, Illinois USA October, 2017 1 / 33 Outline Goodness

More information

Correlation. What Is Correlation? Why Correlations Are Used

Correlation. What Is Correlation? Why Correlations Are Used Correlation 1 What Is Correlation? Correlation is a numerical value that describes and measures three characteristics of the relationship between two variables, X and Y The direction of the relationship

More information

Course Introduction and Overview Descriptive Statistics Conceptualizations of Variance Review of the General Linear Model

Course Introduction and Overview Descriptive Statistics Conceptualizations of Variance Review of the General Linear Model Course Introduction and Overview Descriptive Statistics Conceptualizations of Variance Review of the General Linear Model EPSY 905: Multivariate Analysis Lecture 1 20 January 2016 EPSY 905: Lecture 1 -

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

Business Statistics. Lecture 9: Simple Regression

Business Statistics. Lecture 9: Simple Regression Business Statistics Lecture 9: Simple Regression 1 On to Model Building! Up to now, class was about descriptive and inferential statistics Numerical and graphical summaries of data Confidence intervals

More information

Chapter 13 Correlation

Chapter 13 Correlation Chapter Correlation Page. Pearson correlation coefficient -. Inferential tests on correlation coefficients -9. Correlational assumptions -. on-parametric measures of correlation -5 5. correlational example

More information

ST430 Exam 1 with Answers

ST430 Exam 1 with Answers ST430 Exam 1 with Answers Date: October 5, 2015 Name: Guideline: You may use one-page (front and back of a standard A4 paper) of notes. No laptop or textook are permitted but you may use a calculator.

More information

Specifying Latent Curve and Other Growth Models Using Mplus. (Revised )

Specifying Latent Curve and Other Growth Models Using Mplus. (Revised ) Ronald H. Heck 1 University of Hawai i at Mānoa Handout #20 Specifying Latent Curve and Other Growth Models Using Mplus (Revised 12-1-2014) The SEM approach offers a contrasting framework for use in analyzing

More information

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

Intro to Linear Regression

Intro to Linear Regression Intro to Linear Regression Introduction to Regression Regression is a statistical procedure for modeling the relationship among variables to predict the value of a dependent variable from one or more predictor

More information

Intro to Linear Regression

Intro to Linear Regression Intro to Linear Regression Introduction to Regression Regression is a statistical procedure for modeling the relationship among variables to predict the value of a dependent variable from one or more predictor

More information

Confirmatory Factor Analysis

Confirmatory Factor Analysis Confirmatory Factor Analysis Latent Trait Measurement and Structural Equation Models Lecture #6 February 13, 2013 PSYC 948: Lecture #6 Today s Class An introduction to confirmatory factor analysis The

More information

DETAILED CONTENTS PART I INTRODUCTION AND DESCRIPTIVE STATISTICS. 1. Introduction to Statistics

DETAILED CONTENTS PART I INTRODUCTION AND DESCRIPTIVE STATISTICS. 1. Introduction to Statistics DETAILED CONTENTS About the Author Preface to the Instructor To the Student How to Use SPSS With This Book PART I INTRODUCTION AND DESCRIPTIVE STATISTICS 1. Introduction to Statistics 1.1 Descriptive and

More information

Linear Regression. Simple linear regression model determines the relationship between one dependent variable (y) and one independent variable (x).

Linear Regression. Simple linear regression model determines the relationship between one dependent variable (y) and one independent variable (x). Linear Regression Simple linear regression model determines the relationship between one dependent variable (y) and one independent variable (x). A dependent variable is a random variable whose variation

More information

Personality Research

Personality Research Personality Research Current Theories of Personality Research Problems in Personality Measurement of personality how do we measure the dimensions of personality what do we measure when we measure how well

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

SLR output RLS. Refer to slr (code) on the Lecture Page of the class website.

SLR output RLS. Refer to slr (code) on the Lecture Page of the class website. SLR output RLS Refer to slr (code) on the Lecture Page of the class website. Old Faithful at Yellowstone National Park, WY: Simple Linear Regression (SLR) Analysis SLR analysis explores the linear association

More information

Nesting and Equivalence Testing

Nesting and Equivalence Testing Nesting and Equivalence Testing Tihomir Asparouhov and Bengt Muthén August 13, 2018 Abstract In this note, we discuss the nesting and equivalence testing (NET) methodology developed in Bentler and Satorra

More information

AMS 7 Correlation and Regression Lecture 8

AMS 7 Correlation and Regression Lecture 8 AMS 7 Correlation and Regression Lecture 8 Department of Applied Mathematics and Statistics, University of California, Santa Cruz Suumer 2014 1 / 18 Correlation pairs of continuous observations. Correlation

More information

Reminder: Student Instructional Rating Surveys

Reminder: Student Instructional Rating Surveys Reminder: Student Instructional Rating Surveys You have until May 7 th to fill out the student instructional rating surveys at https://sakai.rutgers.edu/portal/site/sirs The survey should be available

More information

Acknowledgements. Outline. Marie Diener-West. ICTR Leadership / Team INTRODUCTION TO CLINICAL RESEARCH. Introduction to Linear Regression

Acknowledgements. Outline. Marie Diener-West. ICTR Leadership / Team INTRODUCTION TO CLINICAL RESEARCH. Introduction to Linear Regression INTRODUCTION TO CLINICAL RESEARCH Introduction to Linear Regression Karen Bandeen-Roche, Ph.D. July 17, 2012 Acknowledgements Marie Diener-West Rick Thompson ICTR Leadership / Team JHU Intro to Clinical

More information

N Utilization of Nursing Research in Advanced Practice, Summer 2008

N Utilization of Nursing Research in Advanced Practice, Summer 2008 University of Michigan Deep Blue deepblue.lib.umich.edu 2008-07 536 - Utilization of ursing Research in Advanced Practice, Summer 2008 Tzeng, Huey-Ming Tzeng, H. (2008, ctober 1). Utilization of ursing

More information

Correlation and Simple Linear Regression

Correlation and Simple Linear Regression Correlation and Simple Linear Regression Sasivimol Rattanasiri, Ph.D Section for Clinical Epidemiology and Biostatistics Ramathibodi Hospital, Mahidol University E-mail: sasivimol.rat@mahidol.ac.th 1 Outline

More information

A Study of Statistical Power and Type I Errors in Testing a Factor Analytic. Model for Group Differences in Regression Intercepts

A Study of Statistical Power and Type I Errors in Testing a Factor Analytic. Model for Group Differences in Regression Intercepts A Study of Statistical Power and Type I Errors in Testing a Factor Analytic Model for Group Differences in Regression Intercepts by Margarita Olivera Aguilar A Thesis Presented in Partial Fulfillment of

More information

Final Exam - Solutions

Final Exam - Solutions Ecn 102 - Analysis of Economic Data University of California - Davis March 19, 2010 Instructor: John Parman Final Exam - Solutions You have until 5:30pm to complete this exam. Please remember to put your

More information

Correlation: Relationships between Variables

Correlation: Relationships between Variables Correlation Correlation: Relationships between Variables So far, nearly all of our discussion of inferential statistics has focused on testing for differences between group means However, researchers are

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

Multiple Regression. More Hypothesis Testing. More Hypothesis Testing The big question: What we really want to know: What we actually know: We know:

Multiple Regression. More Hypothesis Testing. More Hypothesis Testing The big question: What we really want to know: What we actually know: We know: Multiple Regression Ψ320 Ainsworth More Hypothesis Testing What we really want to know: Is the relationship in the population we have selected between X & Y strong enough that we can use the relationship

More information

Review of Statistics 101

Review of Statistics 101 Review of Statistics 101 We review some important themes from the course 1. Introduction Statistics- Set of methods for collecting/analyzing data (the art and science of learning from data). Provides methods

More information

y response variable x 1, x 2,, x k -- a set of explanatory variables

y response variable x 1, x 2,, x k -- a set of explanatory variables 11. Multiple Regression and Correlation y response variable x 1, x 2,, x k -- a set of explanatory variables In this chapter, all variables are assumed to be quantitative. Chapters 12-14 show how to incorporate

More information

AMS 315/576 Lecture Notes. Chapter 11. Simple Linear Regression

AMS 315/576 Lecture Notes. Chapter 11. Simple Linear Regression AMS 315/576 Lecture Notes Chapter 11. Simple Linear Regression 11.1 Motivation A restaurant opening on a reservations-only basis would like to use the number of advance reservations x to predict the number

More information

EXAMINATIONS OF THE ROYAL STATISTICAL SOCIETY

EXAMINATIONS OF THE ROYAL STATISTICAL SOCIETY EXAMINATIONS OF THE ROYAL STATISTICAL SOCIETY HIGHER CERTIFICATE IN STATISTICS, 2011 MODULE 4 : Linear models Time allowed: One and a half hours Candidates should answer THREE questions. Each question

More information

Structural equation modeling

Structural equation modeling Structural equation modeling Rex B Kline Concordia University Montréal ISTQL Set B B1 Data, path models Data o N o Form o Screening B2 B3 Sample size o N needed: Complexity Estimation method Distributions

More information

Psychology Seminar Psych 406 Dr. Jeffrey Leitzel

Psychology Seminar Psych 406 Dr. Jeffrey Leitzel Psychology Seminar Psych 406 Dr. Jeffrey Leitzel Structural Equation Modeling Topic 1: Correlation / Linear Regression Outline/Overview Correlations (r, pr, sr) Linear regression Multiple regression interpreting

More information

2.1: Inferences about β 1

2.1: Inferences about β 1 Chapter 2 1 2.1: Inferences about β 1 Test of interest throughout regression: Need sampling distribution of the estimator b 1. Idea: If b 1 can be written as a linear combination of the responses (which

More information

STAT 4385 Topic 03: Simple Linear Regression

STAT 4385 Topic 03: Simple Linear Regression STAT 4385 Topic 03: Simple Linear Regression Xiaogang Su, Ph.D. Department of Mathematical Science University of Texas at El Paso xsu@utep.edu Spring, 2017 Outline The Set-Up Exploratory Data Analysis

More information

Chapter 10. Correlation and Regression. McGraw-Hill, Bluman, 7th ed., Chapter 10 1

Chapter 10. Correlation and Regression. McGraw-Hill, Bluman, 7th ed., Chapter 10 1 Chapter 10 Correlation and Regression McGraw-Hill, Bluman, 7th ed., Chapter 10 1 Example 10-2: Absences/Final Grades Please enter the data below in L1 and L2. The data appears on page 537 of your textbook.

More information

Inference for Regression

Inference for Regression Inference for Regression Section 9.4 Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Department of Mathematics University of Houston Lecture 13b - 3339 Cathy Poliak, Ph.D. cathy@math.uh.edu

More information

4/22/2010. Test 3 Review ANOVA

4/22/2010. Test 3 Review ANOVA Test 3 Review ANOVA 1 School recruiter wants to examine if there are difference between students at different class ranks in their reported intensity of school spirit. What is the factor? How many levels

More information

Statistics Introductory Correlation

Statistics Introductory Correlation Statistics Introductory Correlation Session 10 oscardavid.barrerarodriguez@sciencespo.fr April 9, 2018 Outline 1 Statistics are not used only to describe central tendency and variability for a single variable.

More information

Lecture 14. Analysis of Variance * Correlation and Regression. The McGraw-Hill Companies, Inc., 2000

Lecture 14. Analysis of Variance * Correlation and Regression. The McGraw-Hill Companies, Inc., 2000 Lecture 14 Analysis of Variance * Correlation and Regression Outline Analysis of Variance (ANOVA) 11-1 Introduction 11-2 Scatter Plots 11-3 Correlation 11-4 Regression Outline 11-5 Coefficient of Determination

More information

Lecture 14. Outline. Outline. Analysis of Variance * Correlation and Regression Analysis of Variance (ANOVA)

Lecture 14. Outline. Outline. Analysis of Variance * Correlation and Regression Analysis of Variance (ANOVA) Outline Lecture 14 Analysis of Variance * Correlation and Regression Analysis of Variance (ANOVA) 11-1 Introduction 11- Scatter Plots 11-3 Correlation 11-4 Regression Outline 11-5 Coefficient of Determination

More information

The Common Factor Model. Measurement Methods Lecture 15 Chapter 9

The Common Factor Model. Measurement Methods Lecture 15 Chapter 9 The Common Factor Model Measurement Methods Lecture 15 Chapter 9 Today s Class Common Factor Model Multiple factors with a single test ML Estimation Methods New fit indices because of ML Estimation method

More information

Statistics in medicine

Statistics in medicine Statistics in medicine Lecture 4: and multivariable regression Fatma Shebl, MD, MS, MPH, PhD Assistant Professor Chronic Disease Epidemiology Department Yale School of Public Health Fatma.shebl@yale.edu

More information

STAT 730 Chapter 9: Factor analysis

STAT 730 Chapter 9: Factor analysis STAT 730 Chapter 9: Factor analysis Timothy Hanson Department of Statistics, University of South Carolina Stat 730: Multivariate Data Analysis 1 / 15 Basic idea Factor analysis attempts to explain the

More information

regression analysis is a type of inferential statistics which tells us whether relationships between two or more variables exist

regression analysis is a type of inferential statistics which tells us whether relationships between two or more variables exist regression analysis is a type of inferential statistics which tells us whether relationships between two or more variables exist sales $ (y - dependent variable) advertising $ (x - independent variable)

More information

General Certificate of Education Advanced Level Examination June 2013

General Certificate of Education Advanced Level Examination June 2013 General Certificate of Education Advanced Level Examination June 2013 Human Biology HBI6T/P13/task Unit 6T A2 Investigative Skills Assignment Task Sheet Investigation into whether reaction time is different

More information

THE PEARSON CORRELATION COEFFICIENT

THE PEARSON CORRELATION COEFFICIENT CORRELATION Two variables are said to have a relation if knowing the value of one variable gives you information about the likely value of the second variable this is known as a bivariate relation There

More information

26:010:557 / 26:620:557 Social Science Research Methods

26:010:557 / 26:620:557 Social Science Research Methods 26:010:557 / 26:620:557 Social Science Research Methods Dr. Peter R. Gillett Associate Professor Department of Accounting & Information Systems Rutgers Business School Newark & New Brunswick 1 Overview

More information

Using SPSS for One Way Analysis of Variance

Using SPSS for One Way Analysis of Variance Using SPSS for One Way Analysis of Variance This tutorial will show you how to use SPSS version 12 to perform a one-way, between- subjects analysis of variance and related post-hoc tests. This tutorial

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

Simple Linear Regression

Simple Linear Regression Simple Linear Regression EdPsych 580 C.J. Anderson Fall 2005 Simple Linear Regression p. 1/80 Outline 1. What it is and why it s useful 2. How 3. Statistical Inference 4. Examining assumptions (diagnostics)

More information

Unit 6 - Introduction to linear regression

Unit 6 - Introduction to linear regression Unit 6 - Introduction to linear regression Suggested reading: OpenIntro Statistics, Chapter 7 Suggested exercises: Part 1 - Relationship between two numerical variables: 7.7, 7.9, 7.11, 7.13, 7.15, 7.25,

More information

Related Concepts: Lecture 9 SEM, Statistical Modeling, AI, and Data Mining. I. Terminology of SEM

Related Concepts: Lecture 9 SEM, Statistical Modeling, AI, and Data Mining. I. Terminology of SEM Lecture 9 SEM, Statistical Modeling, AI, and Data Mining I. Terminology of SEM Related Concepts: Causal Modeling Path Analysis Structural Equation Modeling Latent variables (Factors measurable, but thru

More information

Moderation 調節 = 交互作用

Moderation 調節 = 交互作用 Moderation 調節 = 交互作用 Kit-Tai Hau 侯傑泰 JianFang Chang 常建芳 The Chinese University of Hong Kong Based on Marsh, H. W., Hau, K. T., Wen, Z., Nagengast, B., & Morin, A. J. S. (in press). Moderation. In Little,

More information

Measuring relationships among multiple responses

Measuring relationships among multiple responses Measuring relationships among multiple responses Linear association (correlation, relatedness, shared information) between pair-wise responses is an important property used in almost all multivariate analyses.

More information

Draft Proof - Do not copy, post, or distribute. Chapter Learning Objectives REGRESSION AND CORRELATION THE SCATTER DIAGRAM

Draft Proof - Do not copy, post, or distribute. Chapter Learning Objectives REGRESSION AND CORRELATION THE SCATTER DIAGRAM 1 REGRESSION AND CORRELATION As we learned in Chapter 9 ( Bivariate Tables ), the differential access to the Internet is real and persistent. Celeste Campos-Castillo s (015) research confirmed the impact

More information

Review. Number of variables. Standard Scores. Anecdotal / Clinical. Bivariate relationships. Ch. 3: Correlation & Linear Regression

Review. Number of variables. Standard Scores. Anecdotal / Clinical. Bivariate relationships. Ch. 3: Correlation & Linear Regression Ch. 3: Correlation & Relationships between variables Scatterplots Exercise Correlation Race / DNA Review Why numbers? Distribution & Graphs : Histogram Central Tendency Mean (SD) The Central Limit Theorem

More information

Structural Equation Modelling

Structural Equation Modelling Slide Email: jkanglim@unimelb.edu.au Office: Room 0 Redmond Barry Building Website: http://jeromyanglim.googlepages.com/ Appointments: For appointments regarding course or with the application of statistics

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

Variance. Standard deviation VAR = = value. Unbiased SD = SD = 10/23/2011. Functional Connectivity Correlation and Regression.

Variance. Standard deviation VAR = = value. Unbiased SD = SD = 10/23/2011. Functional Connectivity Correlation and Regression. 10/3/011 Functional Connectivity Correlation and Regression Variance VAR = Standard deviation Standard deviation SD = Unbiased SD = 1 10/3/011 Standard error Confidence interval SE = CI = = t value for

More information

Comparing IRT with Other Models

Comparing IRT with Other Models Comparing IRT with Other Models Lecture #14 ICPSR Item Response Theory Workshop Lecture #14: 1of 45 Lecture Overview The final set of slides will describe a parallel between IRT and another commonly used

More information

Outline

Outline 2559 Outline cvonck@111zeelandnet.nl 1. Review of analysis of variance (ANOVA), simple regression analysis (SRA), and path analysis (PA) 1.1 Similarities and differences between MRA with dummy variables

More information

Class Introduction and Overview; Review of ANOVA, Regression, and Psychological Measurement

Class Introduction and Overview; Review of ANOVA, Regression, and Psychological Measurement Class Introduction and Overview; Review of ANOVA, Regression, and Psychological Measurement Introduction to Structural Equation Modeling Lecture #1 January 11, 2012 ERSH 8750: Lecture 1 Today s Class Introduction

More information