Conditional and Unconditional Regression with No Measurement Error

Size: px
Start display at page:

Download "Conditional and Unconditional Regression with No Measurement Error"

Transcription

1 Conditional and with No Measurement Error /* reg2ways.sas */ %include 'readsenic.sas'; title2 ''; proc reg; title3 'Conditional Regression'; model infrisk = stay census; proc calis cov; /* Analyze the covariance matrix (Default is corr) */ title3 ''; var infrisk stay census; /* Observed vars are in the data set */ lineqs /* Simultaneous equations, separated by commas */ infrisk = beta1 stay + beta2 census + epsilon; std /* Variances (not standard deviations) */ stay = phi11, census = phi22, epsilon = psi; /* Specify covariances in the model with the cov statement. Unmentioned pairs get covariance zero. */ cov stay census = phi12; bounds 0.0 < phi11 phi22 psi; /* Variances are greater than zero */ proc calis cov; /* Analyze the covariance matrix (Default is corr) */ title3 ' with census re-scaled'; var infrisk stay census100; /* Observed vars are in the data set */ lineqs /* Simultaneous equations, separated by commas */ infrisk = beta1 stay + beta2 census100 + epsilon; std /* Variances (not standard deviations) */ stay = phi11, census100 = phi22, epsilon = psi; /* Specify covariances in the model with the cov statement. Unmentioned pairs get covariance zero. */ cov stay census100 = phi12; bounds 0.0 < phi11 phi22 psi; /* Variances are greater than zero */ Page 1 of 11

2 SENIC data 1 Conditional Regression The REG Procedure Model: MODEL1 Dependent Variable: infrisk Prob of acquiring infection in hospital Number of Observations Read 113 Number of Observations Used 113 Analysis of Variance Sum of Mean Source DF Squares Square F Value Pr > F Model <.0001 Error Corrected Total Root MSE R-Square Dependent Mean Adj R-Sq Coeff Var Parameter Estimates Parameter Standard Variable Label DF Estimate Error Intercept Intercept stay Av length of hospital stay, in days census Aver # patients in hospital per day Parameter Estimates Variable Label DF t Value Pr > t Intercept Intercept stay Av length of hospital stay, in <.0001 days census Aver # patients in hospital per day Page 2 of 11

3 SENIC data 2 Covariance Structure Analysis: Pattern and Initial Values LINEQS Model Statement Matrix Rows Columns Matrix Type Term 1 1 _SEL_ 3 4 SELECTION 2 _BETA_ 4 4 EQSBETA IMINUSINV 3 _GAMMA_ 4 3 EQSGAMMA 4 _PHI_ 3 3 SYMMETRIC The 1 Endogenous Variables Manifest Latent infrisk Manifest stay census Latent Error epsilon The 3 Exogenous Variables SENIC data 3 Covariance Structure Analysis: Pattern and Initial Values Manifest Variable Equations with Initial Estimates infrisk =.*stay +.*census epsilon beta1 beta2 Variances of Exogenous Variables Variable Parameter Estimate stay phi11. census phi22. epsilon psi. Page 3 of 11

4 Covariances Among Exogenous Variables Var1 Var2 Parameter Estimate stay census phi12. SENIC data 4 Observations 113 Model Terms 1 Variables 3 Model Matrices 4 Informations 6 Parameters 6 Variable Mean Std Dev infrisk Prob of acquiring infection in hospital stay Av length of hospital stay, in days census Aver # patients in hospital per day Set Covariances of Exogenous Manifest Variables stay census NOTE: Some initial estimates computed by two-stage LS method. SENIC data 5 Vector of Initial Estimates Parameter Estimate Type 1 beta Matrix Entry: _GAMMA_[1:1] 2 beta Matrix Entry: _GAMMA_[1:2] 3 phi Matrix Entry: _PHI_[1:1] 4 phi Matrix Entry: _PHI_[2:1] 5 phi Matrix Entry: _PHI_[2:2] 6 psi Matrix Entry: _PHI_[3:3] Page 4 of 11

5 SENIC data 6 Levenberg-Marquardt Optimization Scaling Update of More (1978) Parameter Estimates 6 Functions (Observations) 6 Lower Bounds 3 Upper Bounds 0 Optimization Start Active Constraints 0 Objective Function 0 Max Abs Gradient Element E-14 Radius 1 Optimization Results Iterations 0 Function Calls 2 Jacobian Calls 1 Active Constraints 0 Objective Function 0 Max Abs Gradient Element E-14 Lambda 0 Actual Over Pred Change 0 Radius 1 ABSGCONV convergence criterion satisfied. NOTE: Moore-Penrose inverse is used in covariance matrix. NOTE: Covariance matrix for the estimates is not full rank. NOTE: The variance of some parameter estimates is zero or some parameter estimates are linearly related to other parameter estimates as shown in the following equations: phi22 = * phi12 Page 5 of 11

6 SENIC data 7 Fit Function Goodness of Fit Index (GFI) GFI Adjusted for Degrees of Freedom (AGFI). Root Mean Square Residual (RMR) Standardized Root Mean Square Residual (SRMR) Parsimonious GFI (Mulaik, 1989) Chi-Square Chi-Square DF 0 Pr > Chi-Square <.0001 Independence Model Chi-Square Independence Model Chi-Square DF 3 RMSEA Estimate RMSEA 90% Lower Confidence Limit. RMSEA 90% Upper Confidence Limit. ECVI Estimate ECVI 90% Lower Confidence Limit. ECVI 90% Upper Confidence Limit. Probability of Close Fit. Bentler's Comparative Fit Index Normal Theory Reweighted LS Chi-Square Akaike's Information Criterion Bozdogan's (1987) CAIC Schwarz's Bayesian Criterion McDonald's (1989) Centrality Bentler & Bonett's (1980) Non-normed Index. Bentler & Bonett's (1980) NFI James, Mulaik, & Brett (1982) Parsimonious NFI Z-Test of Wilson & Hilferty (1931). Bollen (1986) Normed Index Rho1. Bollen (1988) Non-normed Index Delta Hoelter's (1983) Critical N. SENIC data 8 Manifest Variable Equations with Estimates infrisk = *stay *census epsilon Std Err beta beta2 t Value Page 6 of 11

7 Variances of Exogenous Variables Standard Variable Parameter Estimate Error t Value stay phi census phi epsilon psi Covariances Among Exogenous Variables Standard Var1 Var2 Parameter Estimate Error t Value stay census phi SENIC data 9 Manifest Variable Equations with Standardized Estimates infrisk = *stay *census epsilon beta1 beta2 Squared Multiple Correlations Error Total Variable Variance Variance R-Square 1 infrisk Correlations Among Exogenous Variables Var1 Var2 Parameter Estimate stay census phi Page 7 of 11

8 SENIC data 10 with census re-scaled Covariance Structure Analysis: Pattern and Initial Values LINEQS Model Statement Matrix Rows Columns Matrix Type Term 1 1 _SEL_ 3 4 SELECTION 2 _BETA_ 4 4 EQSBETA IMINUSINV 3 _GAMMA_ 4 3 EQSGAMMA 4 _PHI_ 3 3 SYMMETRIC The 1 Endogenous Variables Manifest Latent infrisk The 3 Exogenous Variables Manifest stay census100 Latent Error epsilon SENIC data 11 with census re-scaled Covariance Structure Analysis: Pattern and Initial Values Manifest Variable Equations with Initial Estimates infrisk =.*stay +.*census epsilon beta1 beta2 Variances of Exogenous Variables Variable Parameter Estimate stay phi11. census100 phi22. epsilon psi. Page 8 of 11

9 Covariances Among Exogenous Variables Var1 Var2 Parameter Estimate stay census100 phi12. SENIC data 12 with census re-scaled Observations 113 Model Terms 1 Variables 3 Model Matrices 4 Informations 6 Parameters 6 Variable Mean Std Dev infrisk Prob of acquiring infection in hospital stay Av length of hospital stay, in days census100 Aver # patients in hospital per day in 100s Set Covariances of Exogenous Manifest Variables stay census100 NOTE: Some initial estimates computed by two-stage LS method. SENIC data 13 with census re-scaled Vector of Initial Estimates Parameter Estimate Type 1 beta Matrix Entry: _GAMMA_[1:1] 2 beta Matrix Entry: _GAMMA_[1:2] 3 phi Matrix Entry: _PHI_[1:1] 4 phi Matrix Entry: _PHI_[2:1] 5 phi Matrix Entry: _PHI_[2:2] 6 psi Matrix Entry: _PHI_[3:3] Page 9 of 11

10 SENIC data 14 with census re-scaled Levenberg-Marquardt Optimization Scaling Update of More (1978) Parameter Estimates 6 Functions (Observations) 6 Lower Bounds 3 Upper Bounds 0 Optimization Start Active Constraints 0 Objective Function E-16 Max Abs Gradient Element E-16 Radius 1 Optimization Results Iterations 0 Function Calls 2 Jacobian Calls 1 Active Constraints 0 Objective Function E-16 Max Abs Gradient Element E-16 Lambda 0 Actual Over Pred Change 0 Radius 1 ABSGCONV convergence criterion satisfied. SENIC data 15 with census re-scaled Fit Function Goodness of Fit Index (GFI) GFI Adjusted for Degrees of Freedom (AGFI). Root Mean Square Residual (RMR) Standardized Root Mean Square Residual (SRMR) Parsimonious GFI (Mulaik, 1989) Chi-Square Chi-Square DF 0 Pr > Chi-Square <.0001 Independence Model Chi-Square Independence Model Chi-Square DF 3 RMSEA Estimate RMSEA 90% Lower Confidence Limit. RMSEA 90% Upper Confidence Limit. ECVI Estimate ECVI 90% Lower Confidence Limit. ECVI 90% Upper Confidence Limit. Probability of Close Fit. Bentler's Comparative Fit Index Normal Theory Reweighted LS Chi-Square Akaike's Information Criterion Page 10 of 11

11 Bozdogan's (1987) CAIC Schwarz's Bayesian Criterion McDonald's (1989) Centrality Bentler & Bonett's (1980) Non-normed Index. Bentler & Bonett's (1980) NFI James, Mulaik, & Brett (1982) Parsimonious NFI Z-Test of Wilson & Hilferty (1931). Bollen (1986) Normed Index Rho1. Bollen (1988) Non-normed Index Delta Hoelter's (1983) Critical N. SENIC data 16 with census re-scaled Manifest Variable Equations with Estimates infrisk = *stay *census epsilon Std Err beta beta2 t Value Variances of Exogenous Variables Standard Variable Parameter Estimate Error t Value stay phi census100 phi epsilon psi Covariances Among Exogenous Variables Standard Var1 Var2 Parameter Estimate Error t Value stay census100 phi (Standardized estimates skipped) Page 11 of 11

Introduction to SAS proc calis

Introduction to SAS proc calis Introduction to SAS proc calis /* path1.sas */ %include 'SenicRead.sas'; title2 ''; /************************************************************************ * * * Cases are hospitals * * * * stay Average

More information

Confirmatory Factor Analysis on the Twin Data: Try One

Confirmatory Factor Analysis on the Twin Data: Try One Confirmatory Factor Analysis on the Twin Data: Try One /************ twinfac2.sas ********************/ TITLE2 'Confirmatory Factor Analysis'; %include 'twinread.sas'; proc calis corr; /* Analyze the correlation

More information

Introduction to SAS proc calis

Introduction to SAS proc calis Introduction to SAS proc calis /* path1.sas */ %include 'SenicRead.sas'; title2 'Path Analysis Example for 3 Observed Variables'; /************************************************************************

More information

Page 1 of 8. Language Development Study

Page 1 of 8. Language Development Study Page 1 of 8 Language Development Study /* cread3.sas Read Castilla's language development data */ options nodate linesize=79 noovp formdlim=' '; title "Castilla's Language development Study"; proc format;

More information

STA431 Handout 9 Double Measurement Regression on the BMI Data

STA431 Handout 9 Double Measurement Regression on the BMI Data STA431 Handout 9 Double Measurement Regression on the BMI Data /********************** bmi5.sas **************************/ options linesize=79 pagesize = 500 noovp formdlim='-'; title 'BMI and Health:

More information

Factorial ANOVA. Skipping... Page 1 of 18

Factorial ANOVA. Skipping... Page 1 of 18 Factorial ANOVA The potato data: Batches of potatoes randomly assigned to to be stored at either cool or warm temperature, infected with one of three bacterial types. Then wait a set period. The dependent

More information

Repeated Measures Part 4: Blood Flow data

Repeated Measures Part 4: Blood Flow data Repeated Measures Part 4: Blood Flow data /* bloodflow.sas */ options linesize=79 pagesize=100 noovp formdlim='_'; title 'Two within-subjecs factors: Blood flow data (NWK p. 1181)'; proc format; value

More information

Conducting a Path Analysis With SPSS/AMOS

Conducting a Path Analysis With SPSS/AMOS Conducting a Path Analysis With SPSS/AMOS Download the PATH-INGRAM.sav data file from my SPSS data page and then bring it into SPSS. The data are those from the research that led to this publication: Ingram,

More information

A Beginner's Guide to. Randall E. Schumacker. The University of Alabama. Richard G. Lomax. The Ohio State University. Routledge

A Beginner's Guide to. Randall E. Schumacker. The University of Alabama. Richard G. Lomax. The Ohio State University. Routledge A Beginner's Guide to Randall E. Schumacker The University of Alabama Richard G. Lomax The Ohio State University Routledge Taylor & Francis Group New York London About the Authors Preface xv xvii 1 Introduction

More information

CH5: CORR & SIMPLE LINEAR REFRESSION =======================================

CH5: CORR & SIMPLE LINEAR REFRESSION ======================================= STAT 430 SAS Examples SAS5 ===================== ssh xyz@glue.umd.edu, tap sas913 (old sas82), sas https://www.statlab.umd.edu/sasdoc/sashtml/onldoc.htm CH5: CORR & SIMPLE LINEAR REFRESSION =======================================

More information

Bivariate (Simple) Regression Analysis

Bivariate (Simple) Regression Analysis Revised July 2018 Bivariate (Simple) Regression Analysis This set of notes shows how to use Stata to estimate a simple (two-variable) regression equation. It assumes that you have set Stata up on your

More information

ST512. Fall Quarter, Exam 1. Directions: Answer questions as directed. Please show work. For true/false questions, circle either true or false.

ST512. Fall Quarter, Exam 1. Directions: Answer questions as directed. Please show work. For true/false questions, circle either true or false. ST512 Fall Quarter, 2005 Exam 1 Name: Directions: Answer questions as directed. Please show work. For true/false questions, circle either true or false. 1. (42 points) A random sample of n = 30 NBA basketball

More information

CMAT Newsletter: March 2003

CMAT Newsletter: March 2003 CMAT Newsletter: March 2003 Wolfgang M. Hartmann March 2003 1 General Remarks 1.1 Fixed Bugs A number of bugs were fixed: 1. one factor specification for the sem function, 2. global statement in function

More information

Simulating Multivariate Normal Data

Simulating Multivariate Normal Data Simulating Multivariate Normal Data You have a population correlation matrix and wish to simulate a set of data randomly sampled from a population with that structure. I shall present here code and examples

More information

Stat 500 lab notes c Philip M. Dixon, Week 10: Autocorrelated errors

Stat 500 lab notes c Philip M. Dixon, Week 10: Autocorrelated errors Week 10: Autocorrelated errors This week, I have done one possible analysis and provided lots of output for you to consider. Case study: predicting body fat Body fat is an important health measure, but

More information

Within-Cases: Multivariate approach part one

Within-Cases: Multivariate approach part one Within-Cases: Multivariate approach part one /* sleep2.sas */ options linesize=79 noovp formdlim=' '; title "Student's Sleep data: Matched t-tests with proc reg"; data bedtime; infile 'studentsleep.data'

More information

Multiple Group CFA in AMOS (And Modification Indices and Nested Models)

Multiple Group CFA in AMOS (And Modification Indices and Nested Models) Multiple Group CFA in AMOS (And Modification Indices and Nested Models) For this lab we will use the Self-Esteem data. An Excel file of the data is available at _www.biostat.umn.edu/~melanie/ph5482/data/index.html

More information

Stat 5100 Handout #6 SAS: Linear Regression Remedial Measures

Stat 5100 Handout #6 SAS: Linear Regression Remedial Measures Stat 5100 Handout #6 SAS: Linear Regression Remedial Measures Example: Age and plasma level for 25 healthy children in a study are reported. Of interest is how plasma level depends on age. (Text Table

More information

THIS IS NOT REPRESNTATIVE OF CURRENT CLASS MATERIAL. STOR 455 Midterm 1 September 28, 2010

THIS IS NOT REPRESNTATIVE OF CURRENT CLASS MATERIAL. STOR 455 Midterm 1 September 28, 2010 THIS IS NOT REPRESNTATIVE OF CURRENT CLASS MATERIAL STOR 455 Midterm September 8, INSTRUCTIONS: BOTH THE EXAM AND THE BUBBLE SHEET WILL BE COLLECTED. YOU MUST PRINT YOUR NAME AND SIGN THE HONOR PLEDGE

More information

Week 5: Multiple Linear Regression II

Week 5: Multiple Linear Regression II Week 5: Multiple Linear Regression II Marcelo Coca Perraillon University of Colorado Anschutz Medical Campus Health Services Research Methods I HSMP 7607 2017 c 2017 PERRAILLON ARR 1 Outline Adjusted R

More information

Study Guide. Module 1. Key Terms

Study Guide. Module 1. Key Terms Study Guide Module 1 Key Terms general linear model dummy variable multiple regression model ANOVA model ANCOVA model confounding variable squared multiple correlation adjusted squared multiple correlation

More information

Cell means coding and effect coding

Cell means coding and effect coding Cell means coding and effect coding /* mathregr_3.sas */ %include 'readmath.sas'; title2 ''; /* The data step continues */ if ethnic ne 6; /* Otherwise, throw the case out */ /* Indicator dummy variables

More information

THE UNIVERSITY OF BRITISH COLUMBIA FORESTRY 430 and 533. Time: 50 minutes 40 Marks FRST Marks FRST 533 (extra questions)

THE UNIVERSITY OF BRITISH COLUMBIA FORESTRY 430 and 533. Time: 50 minutes 40 Marks FRST Marks FRST 533 (extra questions) THE UNIVERSITY OF BRITISH COLUMBIA FORESTRY 430 and 533 MIDTERM EXAMINATION: October 14, 2005 Instructor: Val LeMay Time: 50 minutes 40 Marks FRST 430 50 Marks FRST 533 (extra questions) This examination

More information

SAS Structural Equation Modeling 1.3 for JMP

SAS Structural Equation Modeling 1.3 for JMP SAS Structural Equation Modeling 1.3 for JMP SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2012. SAS Structural Equation Modeling 1.3 for JMP. Cary,

More information

SEM 1: Confirmatory Factor Analysis

SEM 1: Confirmatory Factor Analysis SEM 1: Confirmatory Factor Analysis Week 2 - Fitting CFA models Sacha Epskamp 10-04-2017 General factor analysis framework: in which: y i = Λη i + ε i y N(0, Σ) η N(0, Ψ) ε N(0, Θ), y i is a p-length vector

More information

SAS/STAT 9.2 User s Guide. The TCALIS Procedure. (Experimental) (Book Excerpt)

SAS/STAT 9.2 User s Guide. The TCALIS Procedure. (Experimental) (Book Excerpt) SAS/STAT 9.2 User s Guide The TCALIS Procedure (Experimental) (Book Excerpt) This document is an individual chapter from SAS/STAT 9.2 User s Guide. The correct bibliographic citation for the complete manual

More information

Centering and Interactions: The Training Data

Centering and Interactions: The Training Data Centering and Interactions: The Training Data A random sample of 150 technical support workers were first given a test of their technical skill and knowledge, and then randomly assigned to one of three

More information

CHAPTER 18 OUTPUT, SAVEDATA, AND PLOT COMMANDS

CHAPTER 18 OUTPUT, SAVEDATA, AND PLOT COMMANDS OUTPUT, SAVEDATA, And PLOT Commands CHAPTER 18 OUTPUT, SAVEDATA, AND PLOT COMMANDS THE OUTPUT COMMAND OUTPUT: In this chapter, the OUTPUT, SAVEDATA, and PLOT commands are discussed. The OUTPUT command

More information

lavaan: an R package for structural equation modeling

lavaan: an R package for structural equation modeling lavaan: an R package for structural equation modeling Yves Rosseel Department of Data Analysis Belgium Modern Modeling Methods Conference May 22, 2012 University of Connecticut Yves Rosseel lavaan: an

More information

STAT:5201 Applied Statistic II

STAT:5201 Applied Statistic II STAT:5201 Applied Statistic II Two-Factor Experiment (one fixed blocking factor, one fixed factor of interest) Randomized complete block design (RCBD) Primary Factor: Day length (short or long) Blocking

More information

Factorial ANOVA with SAS

Factorial ANOVA with SAS Factorial ANOVA with SAS /* potato305.sas */ options linesize=79 noovp formdlim='_' ; title 'Rotten potatoes'; title2 ''; proc format; value tfmt 1 = 'Cool' 2 = 'Warm'; data spud; infile 'potato2.data'

More information

CS 395T Lecture 12: Feature Matching and Bundle Adjustment. Qixing Huang October 10 st 2018

CS 395T Lecture 12: Feature Matching and Bundle Adjustment. Qixing Huang October 10 st 2018 CS 395T Lecture 12: Feature Matching and Bundle Adjustment Qixing Huang October 10 st 2018 Lecture Overview Dense Feature Correspondences Bundle Adjustment in Structure-from-Motion Image Matching Algorithm

More information

Getting Correct Results from PROC REG

Getting Correct Results from PROC REG Getting Correct Results from PROC REG Nate Derby Stakana Analytics Seattle, WA, USA SUCCESS 3/12/15 Nate Derby Getting Correct Results from PROC REG 1 / 29 Outline PROC REG 1 PROC REG 2 Nate Derby Getting

More information

Week 4: Simple Linear Regression III

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

More information

Outline. Topic 16 - Other Remedies. Ridge Regression. Ridge Regression. Ridge Regression. Robust Regression. Regression Trees. Piecewise Linear Model

Outline. Topic 16 - Other Remedies. Ridge Regression. Ridge Regression. Ridge Regression. Robust Regression. Regression Trees. Piecewise Linear Model Topic 16 - Other Remedies Ridge Regression Robust Regression Regression Trees Outline - Fall 2013 Piecewise Linear Model Bootstrapping Topic 16 2 Ridge Regression Modification of least squares that addresses

More information

schooling.log 7/5/2006

schooling.log 7/5/2006 ----------------------------------- log: C:\dnb\schooling.log log type: text opened on: 5 Jul 2006, 09:03:57. /* schooling.log */ > use schooling;. gen age2=age76^2;. /* OLS (inconsistent) */ > reg lwage76

More information

Everything taken from (Hair, Hult et al. 2017) but some formulas taken elswere or created by Erik Mønness.

Everything taken from (Hair, Hult et al. 2017) but some formulas taken elswere or created by Erik Mønness. /Users/astacbf/Desktop/Assessing smartpls (engelsk).docx 1/8 Assessing smartpls Everything taken from (Hair, Hult et al. 017) but some formulas taken elswere or created by Erik Mønness. Run PLS algorithm,

More information

Lab Session 1. Introduction to Eviews

Lab Session 1. Introduction to Eviews Albert-Ludwigs University Freiburg Department of Empirical Economics Time Series Analysis, Summer 2009 Dr. Sevtap Kestel To see the data of m1: 1 Lab Session 1 Introduction to Eviews We introduce the basic

More information

CDAA No. 4 - Part Two - Multiple Regression - Initial Data Screening

CDAA No. 4 - Part Two - Multiple Regression - Initial Data Screening CDAA No. 4 - Part Two - Multiple Regression - Initial Data Screening Variables Entered/Removed b Variables Entered GPA in other high school, test, Math test, GPA, High school math GPA a Variables Removed

More information

WebSEM: Structural Equation Modeling Online

WebSEM: Structural Equation Modeling Online WebSEM: Structural Equation Modeling Online Zhiyong Zhang and Ke-Hai Yuan August 27, 2012 118 Haggar Hall, Department of Psychology, University of Notre Dame 1 Thanks The development of the path diagram

More information

Set up of the data is similar to the Randomized Block Design situation. A. Chang 1. 1) Setting up the data sheet

Set up of the data is similar to the Randomized Block Design situation. A. Chang 1. 1) Setting up the data sheet Repeated Measure Analysis (Univariate Mixed Effect Model Approach) (Treatment as the Fixed Effect and the Subject as the Random Effect) (This univariate approach can be used for randomized block design

More information

Module 25.1: nag lin reg Regression Analysis. Contents

Module 25.1: nag lin reg Regression Analysis. Contents Correlation and Regression Analysis Module Contents Module 25.1: nag lin reg Regression Analysis nag lin reg contains procedures that perform a simple or multiple linear regression analysis. Contents Introduction...

More information

CHAPTER 12 ASDA ANALYSIS EXAMPLES REPLICATION-MPLUS 5.21 GENERAL NOTES ABOUT ANALYSIS EXAMPLES REPLICATION

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

More information

Stat 5100 Handout #19 SAS: Influential Observations and Outliers

Stat 5100 Handout #19 SAS: Influential Observations and Outliers Stat 5100 Handout #19 SAS: Influential Observations and Outliers Example: Data collected on 50 countries relevant to a cross-sectional study of a lifecycle savings hypothesis, which states that the response

More information

ST706: Spring One-Way Random effects example.

ST706: Spring One-Way Random effects example. ST706: Spring 2013. One-Way Random effects example. DATA IS FROM CONTROL ARM OF SKIN CANCER STUDY AT DARTMOUTH. DC0 TO DC5 ARE MEASURES OF DIETARY INTAKE OVER 6 YEARS. For illustration here we treat the

More information

1 Downloading files and accessing SAS. 2 Sorting, scatterplots, correlation and regression

1 Downloading files and accessing SAS. 2 Sorting, scatterplots, correlation and regression Statistical Methods and Computing, 22S:30/105 Instructor: Cowles Lab 2 Feb. 6, 2015 1 Downloading files and accessing SAS. We will be using the billion.dat dataset again today, as well as the OECD dataset

More information

Baruch College STA Senem Acet Coskun

Baruch College STA Senem Acet Coskun Baruch College STA 9750 BOOK BUY A Predictive Mode Senem Acet Coskun Table of Contents Summary 3 Why this topic? 4 Data Sources 6 Variable Definitions 7 Descriptive Statistics 8 Univariate Analysis 9 Two-Sample

More information

**************************************************************************************************************** * Single Wave Analyses.

**************************************************************************************************************** * Single Wave Analyses. ASDA2 ANALYSIS EXAMPLE REPLICATION SPSS C11 * Syntax for Analysis Example Replication C11 * Use data sets previously prepared in SAS, refer to SAS Analysis Example Replication for C11 for details. ****************************************************************************************************************

More information

Fathom Dynamic Data TM Version 2 Specifications

Fathom Dynamic Data TM Version 2 Specifications Data Sources Fathom Dynamic Data TM Version 2 Specifications Use data from one of the many sample documents that come with Fathom. Enter your own data by typing into a case table. Paste data from other

More information

range: [1,20] units: 1 unique values: 20 missing.: 0/20 percentiles: 10% 25% 50% 75% 90%

range: [1,20] units: 1 unique values: 20 missing.: 0/20 percentiles: 10% 25% 50% 75% 90% ------------------ log: \Term 2\Lecture_2s\regression1a.log log type: text opened on: 22 Feb 2008, 03:29:09. cmdlog using " \Term 2\Lecture_2s\regression1a.do" (cmdlog \Term 2\Lecture_2s\regression1a.do

More information

Solution to Bonus Questions

Solution to Bonus Questions Solution to Bonus Questions Q2: (a) The histogram of 1000 sample means and sample variances are plotted below. Both histogram are symmetrically centered around the true lambda value 20. But the sample

More information

PSY 9556B (Feb 5) Latent Growth Modeling

PSY 9556B (Feb 5) Latent Growth Modeling PSY 9556B (Feb 5) Latent Growth Modeling Fixed and random word confusion Simplest LGM knowing how to calculate dfs How many time points needed? Power, sample size Nonlinear growth quadratic Nonlinear growth

More information

Regression on the trees data with R

Regression on the trees data with R > trees Girth Height Volume 1 8.3 70 10.3 2 8.6 65 10.3 3 8.8 63 10.2 4 10.5 72 16.4 5 10.7 81 18.8 6 10.8 83 19.7 7 11.0 66 15.6 8 11.0 75 18.2 9 11.1 80 22.6 10 11.2 75 19.9 11 11.3 79 24.2 12 11.4 76

More information

Beta-Regression with SPSS Michael Smithson School of Psychology, The Australian National University

Beta-Regression with SPSS Michael Smithson School of Psychology, The Australian National University 9/1/2005 Beta-Regression with SPSS 1 Beta-Regression with SPSS Michael Smithson School of Psychology, The Australian National University (email: Michael.Smithson@anu.edu.au) SPSS Nonlinear Regression syntax

More information

Introduction to Stata: An In-class Tutorial

Introduction to Stata: An In-class Tutorial Introduction to Stata: An I. The Basics - Stata is a command-driven statistical software program. In other words, you type in a command, and Stata executes it. You can use the drop-down menus to avoid

More information

E-Campus Inferential Statistics - Part 2

E-Campus Inferential Statistics - Part 2 E-Campus Inferential Statistics - Part 2 Group Members: James Jones Question 4-Isthere a significant difference in the mean prices of the stores? New Textbook Prices New Price Descriptives 95% Confidence

More information

Cut Out The Cut And Paste: SAS Macros For Presenting Statistical Output ABSTRACT INTRODUCTION

Cut Out The Cut And Paste: SAS Macros For Presenting Statistical Output ABSTRACT INTRODUCTION Cut Out The Cut And Paste: SAS Macros For Presenting Statistical Output Myungshin Oh, UCLA Department of Biostatistics Mel Widawski, UCLA School of Nursing ABSTRACT We, as statisticians, often spend more

More information

Box-Cox Transformation for Simple Linear Regression

Box-Cox Transformation for Simple Linear Regression Chapter 192 Box-Cox Transformation for Simple Linear Regression Introduction This procedure finds the appropriate Box-Cox power transformation (1964) for a dataset containing a pair of variables that are

More information

STAT 5200 Handout #25. R-Square & Design Matrix in Mixed Models

STAT 5200 Handout #25. R-Square & Design Matrix in Mixed Models STAT 5200 Handout #25 R-Square & Design Matrix in Mixed Models I. R-Square in Mixed Models (with Example from Handout #20): For mixed models, the concept of R 2 is a little complicated (and neither PROC

More information

can be used when running the LCVSEM macro from other macros to control the notes generated in the log area

can be used when running the LCVSEM macro from other macros to control the notes generated in the log area invoke the LCVSEM macro to conduct structural equation modeling (SEM) analyses setting the macro parameters to appropriate values or using the default values given in the macro declaration SEM models are

More information

Introduction to Mixed Models: Multivariate Regression

Introduction to Mixed Models: Multivariate Regression Introduction to Mixed Models: Multivariate Regression EPSY 905: Multivariate Analysis Spring 2016 Lecture #9 March 30, 2016 EPSY 905: Multivariate Regression via Path Analysis Today s Lecture Multivariate

More information

by John Barnard and Walter T. Federer Cornell University

by John Barnard and Walter T. Federer Cornell University Genstat and SAS Programs for Recovering Interblock, Interrow-column, and Intergradient Information by John Barnard and Walter T. Federer Cornell University BU-1383-M 1 anuary 1997 0. Abstrast Genstat and

More information

Unified Visualizations of Structural Equation Models

Unified Visualizations of Structural Equation Models Chapter 11 Unified Visualizations of Structural Equation Models Abstract Structural Equation Modeling (SEM) has a long history of representing models graphically as path diagrams. This chapter presents

More information

Section 2.2: Covariance, Correlation, and Least Squares

Section 2.2: Covariance, Correlation, and Least Squares Section 2.2: Covariance, Correlation, and Least Squares Jared S. Murray The University of Texas at Austin McCombs School of Business Suggested reading: OpenIntro Statistics, Chapter 7.1, 7.2 1 A Deeper

More information

CSSS 510: Lab 2. Introduction to Maximum Likelihood Estimation

CSSS 510: Lab 2. Introduction to Maximum Likelihood Estimation CSSS 510: Lab 2 Introduction to Maximum Likelihood Estimation 2018-10-12 0. Agenda 1. Housekeeping: simcf, tile 2. Questions about Homework 1 or lecture 3. Simulating heteroskedastic normal data 4. Fitting

More information

I How does the formulation (5) serve the purpose of the composite parameterization

I How does the formulation (5) serve the purpose of the composite parameterization Supplemental Material to Identifying Alzheimer s Disease-Related Brain Regions from Multi-Modality Neuroimaging Data using Sparse Composite Linear Discrimination Analysis I How does the formulation (5)

More information

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

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

More information

SEM 1: Confirmatory Factor Analysis

SEM 1: Confirmatory Factor Analysis SEM 1: Confirmatory Factor Analysis Week 3 - Measurement invariance and ordinal data Sacha Epskamp 17-04-2018 General factor analysis framework: in which: y i = Λη i + ε i y N(0, Σ) η N(0, Ψ) ε N(0, Θ),

More information

Week 4: Simple Linear Regression II

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

More information

SEM 1: Confirmatory Factor Analysis

SEM 1: Confirmatory Factor Analysis SEM 1: Confirmatory Factor Analysis Week 3 - Measurement invariance and ordinal data Sacha Epskamp 18-04-2017 General factor analysis framework: in which: y i = Λη i + ε i y N(0, Σ) η N(0, Ψ) ε N(0, Θ),

More information

Generalized Least Squares (GLS) and Estimated Generalized Least Squares (EGLS)

Generalized Least Squares (GLS) and Estimated Generalized Least Squares (EGLS) Generalized Least Squares (GLS) and Estimated Generalized Least Squares (EGLS) Linear Model in matrix notation for the population Y = Xβ + Var ( ) = In GLS, the error covariance matrix is known In EGLS

More information

CSC 328/428 Summer Session I 2002 Data Analysis for the Experimenter FINAL EXAM

CSC 328/428 Summer Session I 2002 Data Analysis for the Experimenter FINAL EXAM options pagesize=53 linesize=76 pageno=1 nodate; proc format; value $stcktyp "1"="Growth" "2"="Combined" "3"="Income"; data invstmnt; input stcktyp $ perform; label stkctyp="type of Stock" perform="overall

More information

Contrasts and Multiple Comparisons

Contrasts and Multiple Comparisons Contrasts and Multiple Comparisons /* onewaymath.sas */ title2 'Oneway with contrasts and multiple comparisons (Exclude Other/DK)'; %include 'readmath.sas'; if ethnic ne 6; /* Otherwise, throw the case

More information

Chapter 16 The SIMLIN Procedure. Chapter Table of Contents

Chapter 16 The SIMLIN Procedure. Chapter Table of Contents Chapter 16 The SIMLIN Procedure Chapter Table of Contents OVERVIEW...943 GETTING STARTED...943 PredictionandSimulation...945 SYNTAX...946 FunctionalSummary...946 PROCSIMLINStatement...947 BYStatement...948

More information

DESIGN OF EXPERIMENTS and ROBUST DESIGN

DESIGN OF EXPERIMENTS and ROBUST DESIGN DESIGN OF EXPERIMENTS and ROBUST DESIGN Problems in design and production environments often require experiments to find a solution. Design of experiments are a collection of statistical methods that,

More information

Two-Stage Least Squares

Two-Stage Least Squares Chapter 316 Two-Stage Least Squares Introduction This procedure calculates the two-stage least squares (2SLS) estimate. This method is used fit models that include instrumental variables. 2SLS includes

More information

Annexes : Sorties SAS pour l'exercice 3. Code SAS. libname process 'G:\Enseignements\M2ISN-Series temp\sas\';

Annexes : Sorties SAS pour l'exercice 3. Code SAS. libname process 'G:\Enseignements\M2ISN-Series temp\sas\'; Annexes : Sorties SAS pour l'exercice 3 Code SAS libname process 'G:\Enseignements\M2ISN-Series temp\sas\'; /* Etape 1 - Création des données*/ proc iml; phi={1-1.583 0.667-0.083}; theta={1}; y=armasim(phi,

More information

Detecting and Circumventing Collinearity or Ill-Conditioning Problems

Detecting and Circumventing Collinearity or Ill-Conditioning Problems Chapter 8 Detecting and Circumventing Collinearity or Ill-Conditioning Problems Section 8.1 Introduction Multicollinearity/Collinearity/Ill-Conditioning The terms multicollinearity, collinearity, and ill-conditioning

More information

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

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

More information

Instruction on JMP IN of Chapter 19

Instruction on JMP IN of Chapter 19 Instruction on JMP IN of Chapter 19 Example 19.2 (1). Download the dataset xm19-02.jmp from the website for this course and open it. (2). Go to the Analyze menu and select Fit Model. Click on "REVENUE"

More information

Model Diagnostic tests

Model Diagnostic tests Model Diagnostic tests 1. Multicollinearity a) Pairwise correlation test Quick/Group stats/ correlations b) VIF Step 1. Open the EViews workfile named Fish8.wk1. (FROM DATA FILES- TSIME) Step 2. Select

More information

Package mcemglm. November 29, 2015

Package mcemglm. November 29, 2015 Type Package Package mcemglm November 29, 2015 Title Maximum Likelihood Estimation for Generalized Linear Mixed Models Version 1.1 Date 2015-11-28 Author Felipe Acosta Archila Maintainer Maximum likelihood

More information

May 24, Emil Coman 1 Yinghui Duan 2 Daren Anderson 3

May 24, Emil Coman 1 Yinghui Duan 2 Daren Anderson 3 Assessing Health Disparities in Intensive Longitudinal Data: Gender Differences in Granger Causality Between Primary Care Provider and Emergency Room Usage, Assessed with Medicaid Insurance Claims May

More information

Chapter 15: Forecasting

Chapter 15: Forecasting Chapter 15: Forecasting In this chapter: 1. Forecasting chicken consumption using OLS (UE 15.1, Equation 6.8, p. 501) 2. Forecasting chicken consumption using a generalized least squares (GLS) model estimated

More information

CREATING THE ANALYSIS

CREATING THE ANALYSIS Chapter 14 Multiple Regression Chapter Table of Contents CREATING THE ANALYSIS...214 ModelInformation...217 SummaryofFit...217 AnalysisofVariance...217 TypeIIITests...218 ParameterEstimates...218 Residuals-by-PredictedPlot...219

More information

Moving Beyond Linearity

Moving Beyond Linearity Moving Beyond Linearity Basic non-linear models one input feature: polynomial regression step functions splines smoothing splines local regression. more features: generalized additive models. Polynomial

More information

An introduction to SPSS

An introduction to SPSS An introduction to SPSS To open the SPSS software using U of Iowa Virtual Desktop... Go to https://virtualdesktop.uiowa.edu and choose SPSS 24. Contents NOTE: Save data files in a drive that is accessible

More information

Linear regression Number of obs = 6,866 F(16, 326) = Prob > F = R-squared = Root MSE =

Linear regression Number of obs = 6,866 F(16, 326) = Prob > F = R-squared = Root MSE = - /*** To demonstrate use of 2SLS ***/ * Case: In the early 1990's Tanzania implemented a FP program to reduce fertility, which was among the highest in the world * The FP program had two main components:

More information

Chapter 9 Robust Regression Examples

Chapter 9 Robust Regression Examples Chapter 9 Robust Regression Examples Chapter Table of Contents OVERVIEW...177 FlowChartforLMS,LTS,andMVE...179 EXAMPLES USING LMS AND LTS REGRESSION...180 Example 9.1 LMS and LTS with Substantial Leverage

More information

MODEL DEVELOPMENT: VARIABLE SELECTION

MODEL DEVELOPMENT: VARIABLE SELECTION 7 MODEL DEVELOPMENT: VARIABLE SELECTION The discussion of least squares regression thus far has presumed that the model was known with respect to which variables were to be included and the form these

More information

An Econometric Study: The Cost of Mobile Broadband

An Econometric Study: The Cost of Mobile Broadband An Econometric Study: The Cost of Mobile Broadband Zhiwei Peng, Yongdon Shin, Adrian Raducanu IATOM13 ENAC January 16, 2014 Zhiwei Peng, Yongdon Shin, Adrian Raducanu (UCLA) The Cost of Mobile Broadband

More information

The lavaan tutorial. Yves Rosseel Department of Data Analysis Ghent University (Belgium) December 18, 2017

The lavaan tutorial. Yves Rosseel Department of Data Analysis Ghent University (Belgium) December 18, 2017 The lavaan tutorial Yves Rosseel Department of Data Analysis Ghent University (Belgium) December 18, 2017 Abstract If you are new to lavaan, this is the place to start. In this tutorial, we introduce the

More information

NCSS Statistical Software

NCSS Statistical Software Chapter 327 Geometric Regression Introduction Geometric regression is a special case of negative binomial regression in which the dispersion parameter is set to one. It is similar to regular multiple regression

More information

Package SSLASSO. August 28, 2018

Package SSLASSO. August 28, 2018 Package SSLASSO August 28, 2018 Version 1.2-1 Date 2018-08-28 Title The Spike-and-Slab LASSO Author Veronika Rockova [aut,cre], Gemma Moran [aut] Maintainer Gemma Moran Description

More information

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

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

More information

Stata versions 12 & 13 Week 4 Practice Problems

Stata versions 12 & 13 Week 4 Practice Problems Stata versions 12 & 13 Week 4 Practice Problems SOLUTIONS 1 Practice Screen Capture a Create a word document Name it using the convention lastname_lab1docx (eg bigelow_lab1docx) b Using your browser, go

More information

ZunZun.com. User-Selectable Polynomial. Sat Jan 14 09:49: local server time

ZunZun.com. User-Selectable Polynomial. Sat Jan 14 09:49: local server time ZunZun.com User-Selectable Polynomial y = a + bx 1 + cx 2 + dx 3 + fx 4 + gx 5 Sat Jan 14 09:49:08 2012 local server time Coefficients y = a + bx 1 + cx 2 + dx 3 + fx 4 + gx 5 Fitting target of sum of

More information

Package REndo. November 8, 2017

Package REndo. November 8, 2017 Type Package Package REndo November 8, 2017 Title Fitting Linear Models with Endogenous Regressors using Latent Instrumental Variables Version 1.3 Date 2017-11-08 Author Raluca Gui, Markus Meierer, Rene

More information

lavaan: an R package for structural equation modeling and more Version (BETA)

lavaan: an R package for structural equation modeling and more Version (BETA) lavaan: an R package for structural equation modeling and more Version 0.4-9 (BETA) Yves Rosseel Department of Data Analysis Ghent University (Belgium) June 14, 2011 Abstract The lavaan package is developed

More information

Nina Zumel and John Mount Win-Vector LLC

Nina Zumel and John Mount Win-Vector LLC SUPERVISED LEARNING IN R: REGRESSION Evaluating a model graphically Nina Zumel and John Mount Win-Vector LLC "line of perfect prediction" Systematic errors DataCamp Plotting Ground Truth vs. Predictions

More information