DIFFERENT ESTIMATION STRATEGIES FOR THE COMMON FACTOR MODEL

Size: px
Start display at page:

Download "DIFFERENT ESTIMATION STRATEGIES FOR THE COMMON FACTOR MODEL"

Transcription

1 Measurement, Scaling, and Dimensional Analysis Summer 2017 Bill Jacoby DIFFERENT ESTIMATION STRATEGIES FOR THE COMMON FACTOR MODEL As discussed in class, the technical objective in a factor analysis is to obtain a pattern matrix that reproduces the adjusted correlation matrix as closely as possible, using the scalar products between the variables shadow vectors within the common factor space. There are several different strategies and estimation procedures that can be used to bring the scalar products as close as possible to the correlations. In our initial factor analysis of the 1992 economic perceptions data, we used principal axis factoring, with iterated estimation of communalities. This produces a least-squares solution that is, the scalar products are a least-squares fit to the corresponding correlations. There are two other strategies that commonly appear in the research literature: (1) a maximum likelihood solution, which produces the factor pattern matrix that has the highest probability of having generated the adjusted correlation matrix; and (2) principal components analysis, in which the empirical correlation matrix is used (i.e., ones on the main diagonal) and the first m components are used as estimates of the unobserved factors. This handout shows the log of a Stata session in which these alternative estimation strategies are applied to the 1992 economic perceptions data.. Change delimiter to semicolon and set MORE condition off.. #delimit ; delimiter now ;. set more off; > Retrieve dataset on > 1992 public opinion > about economic conditions.. use econ; > Perform factor analysis, > specifying maximum > likelihood estimation, > and two common factors. factor bet1yr inccol unem1yr > infl1yr nec1yr necmos nec4yr > jobworr, ml factors(2); (obs=1665) Iteration 0: log likelihood = Iteration 1: log likelihood = Iteration 2: log likelihood = Iteration 3: log likelihood = Iteration 4: log likelihood = Iteration 5: log likelihood =

2 Page 2 Method: maximum likelihood Retained factors = 2 Rotation: (unrotated) Number of params = 15 Schwarz's BIC = Log likelihood = (Akaike's) AIC = Factor Eigenvalue Difference Proportion Cumulative Factor Factor LR test: 2 factors vs. saturated: chi2(13) = Prob>chi2 = Factor loadings (pattern matrix) and unique variances bet1yr inccol unem1yr infl1yr nec1yr necmos nec4yr jobworr > The next command displays the > residual correlation matrix > obtained using the ML factors. estat residuals; Raw residuals of correlations (observed-fitted) Variable bet1yr inccol unem1yr infl1yr nec1yr necmos bet1yr inccol unem1yr infl1yr nec1yr necmos nec4yr jobworr Variable nec4yr jobworr nec4yr jobworr > Perform an orthogonal, > varimax rotation > (See Figure 1 for plot of > rotated common factor space)

3 Page 3. rotate, varimax; Method: maximum likelihood Retained factors = 2 Rotation: orthogonal varimax (Kaiser off) Number of params = 15 Schwarz's BIC = Log likelihood = (Akaike's) AIC = Factor Variance Difference Proportion Cumulative Factor Factor LR test: 2 factors vs. saturated: chi2(13) = Prob>chi2 = Rotated factor loadings (pattern matrix) and unique variances bet1yr inccol unem1yr infl1yr nec1yr necmos nec4yr jobworr Factor rotation matrix Factor1 Factor2 Factor Factor > The next command performs > an oblique, promax rotation. rotate, promax; Method: maximum likelihood Retained factors = 2 Rotation: oblique promax (Kaiser off) Number of params = 15 Schwarz's BIC = Log likelihood = (Akaike's) AIC = Factor Variance Proportion Rotated factors are correlated Factor Factor LR test: 2 factors vs. saturated: chi2(13) = Prob>chi2 =

4 Page 4 Rotated factor loadings (pattern matrix) and unique variances bet1yr inccol unem1yr infl1yr nec1yr necmos nec4yr jobworr Factor rotation matrix Factor1 Factor2 Factor Factor > The next two commands display the > correlation matrix for the factors > and the factor structure matrix, giving > correlations between variables and > factors. estat common; Correlation matrix of the promax(3) rotated common factors -- Factors Factor1 Factor2 -- Factor1 1 Factor estat structure; Structure matrix: correlations between variables and promax(3) rotated common factors -- Variable Factor1 Factor2 -- bet1yr inccol unem1yr infl1yr nec1yr necmos nec4yr jobworr

5 Page 5 > Perform principal components > analysis, and use first two > components as estimates > (See Figure 2 for scree plot > to determine the number of > factors). factor bet1yr inccol unem1yr > infl1yr nec1yr necmos nec4yr > jobworr, pcf factors(2); (obs=1665) Method: principal-component factors Retained factors = 2 Rotation: (unrotated) Number of params = 15 Factor Eigenvalue Difference Proportion Cumulative Factor Factor Factor Factor Factor Factor Factor Factor Factor loadings (pattern matrix) and unique variances bet1yr inccol unem1yr infl1yr nec1yr necmos nec4yr jobworr > The next command displays the > residual correlation matrix > obtained using the two > principal components. estat residuals;

6 Page 6 Raw residuals of correlations (observed-fitted) Variable bet1yr inccol unem1yr infl1yr nec1yr necmos bet1yr inccol unem1yr infl1yr nec1yr necmos nec4yr jobworr Variable nec4yr jobworr nec4yr jobworr > Performs an orthogonal, > varimax rotation (see Figure 3). rotate, varimax; Method: principal-component factors Retained factors = 2 Rotation: orthogonal varimax (Kaiser off) Number of params = 15 Factor Variance Difference Proportion Cumulative Factor Factor Rotated factor loadings (pattern matrix) and unique variances bet1yr inccol unem1yr infl1yr nec1yr necmos nec4yr jobworr Factor rotation matrix Factor1 Factor2 Factor Factor

7 Page 7 > The next command performs > an oblique, promax rotation. rotate, promax; Method: principal-component factors Retained factors = 2 Rotation: oblique promax (Kaiser off) Number of params = 15 Factor Variance Proportion Rotated factors are correlated Factor Factor Rotated factor loadings (pattern matrix) and unique variances bet1yr inccol unem1yr infl1yr nec1yr necmos nec4yr jobworr Factor rotation matrix Factor1 Factor2 Factor Factor > The next two commands display the > correlation matrix for the factors > and the factor structure matrix, giving > correlations between variables and > factors. estat common; Correlation matrix of the promax(3) rotated common factors -- Factors Factor1 Factor2 -- Factor1 1 Factor

8 Page 8. estat structure; Structure matrix: correlations between variables and promax(3) rotated common factors -- Variable Factor1 Factor2 -- bet1yr inccol unem1yr infl1yr nec1yr necmos nec4yr jobworr > Close the log and > end the STATA session. log close; Figure 1: Common factor space, with factors estimated via maximum likelihood and rotated to varimax orientation inccol Varimax rotated factor bet1yr 0.2 jobworr infl1yr unem1yr necmos nec4yr nec1yr Varimax rotated factor 1

9 Page 9 Figure 2: Scree plot for principal components analysis of 1992 economic perceptions data Eigenvalue Principal component Figure 3: Common factor space, with factors estimated via principal components and rotated to varimax orientation inccol bet1yr Varimax rotated factor jobworr infl1yr 0.2 unem1yr nec1yr necmos nec4yr Varimax rotated factor 1

FACTOR ANALYSIS OF ECONOMIC PERCEPTION ITEMS

FACTOR ANALYSIS OF ECONOMIC PERCEPTION ITEMS Measurement, Scaling, and Dimensional Analysis Bill Jacoby Summer 2017 FACTOR ANALYSIS OF ECONOMIC PERCEPTION ITEMS This handout shows the log for a STATA session that performs a factor analysis on citizens

More information

Factor Analysis and Structural Equation Modeling: Exploratory and Confirmatory Factor Analysis

Factor Analysis and Structural Equation Modeling: Exploratory and Confirmatory Factor Analysis Factor Analysis and Structural Equation Modeling: Exploratory and Confirmatory Factor Analysis Hun Myoung Park International University of Japan 1. Glance at an Example Suppose you have a mental model

More information

EFA in a CFA Framework

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

More information

MdAIR Spring Institute. April 28, 2006

MdAIR Spring Institute. April 28, 2006 Introduction to Factor Analysis MdAIR Spring Institute Denise Nadasen April 28, 2006 Today s Objective To understand the general application To learn some of the language To review various decision points

More information

Using Principal Components Analysis and Exploratory Factor Analysis for Refining Survey Modules

Using Principal Components Analysis and Exploratory Factor Analysis for Refining Survey Modules Using Principal Components Analysis and Exploratory Factor Analysis for Refining Survey Modules Joshua G. Mausolf jmausolf@uchicago.edu Advanced Methods in Survey Research May 25th, 2016 The problem You

More information

Principal Component and Factor Analysis

Principal Component and Factor Analysis Principal Component and Factor Analysis 8 Keywords Akaike Information Criterion (AIC) Anti-image Bartlett method Bayes Information Criterion (BIC) Communality Components Confirmatory factor analysis Correlation

More information

CONTRIBUTORY AND INFLUENCING FACTORS ON THE LABOUR WELFARE PRACTICES IN SELECT COMPANIES IN TIRUNELVELI DISTRICT AN ANALYSIS

CONTRIBUTORY AND INFLUENCING FACTORS ON THE LABOUR WELFARE PRACTICES IN SELECT COMPANIES IN TIRUNELVELI DISTRICT AN ANALYSIS CONTRIBUTORY AND INFLUENCING FACTORS ON THE LABOUR WELFARE PRACTICES IN SELECT COMPANIES IN TIRUNELVELI DISTRICT AN ANALYSIS DR.J.TAMILSELVI Assistant Professor, Department of Business Administration Annamalai

More information

Phd Program in Transportation. Transport Demand Modeling. Session 4

Phd Program in Transportation. Transport Demand Modeling. Session 4 Phd Program in Transportation Transport Demand Modeling João de Abreu e Silva Session 4 Factor Analysis Phd in Transportation / Transport Demand Modelling 1/38 Factor Analysis Definition and Purpose Exploratory

More information

Informed Decision-Making in Exploratory Factor Analysis

Informed Decision-Making in Exploratory Factor Analysis Informed Decision-Making in Exploratory Factor Analysis Melissa Cater Louisiana State University AgCenter Harrisonburg, LA mcater@agcenter.lsu.edu Krisanna Machtmes Louisiana State University Baton Rouge,

More information

An Overview of the Statistical Techniques in Q Methodology: Is There a Better Way of Doing Q Analysis? 1

An Overview of the Statistical Techniques in Q Methodology: Is There a Better Way of Doing Q Analysis? 1 Operant Subjectivity: The International Journal of Q Methodology 38/3-4 (2016): 29-36, DOI: 10.15133/j.os.2016.007 Operant Subjectivity The International Journal of Q Methodology An Overview of the Statistical

More information

Number of obs = R-squared = Root MSE = Adj R-squared =

Number of obs = R-squared = Root MSE = Adj R-squared = Appendix for the details of statistical test results Statistical Package used:stata/se 11.1 1. ANOVA result with dependent variable: current level of happiness, independent variables: sexs, ages, and survey

More information

Content Appendicises

Content Appendicises Abstract In this paper a communication survey within a company is evaluated using exploratory as well as confirmatory factor analysis. Data sets from two surveys, one performed in 2008 and one in 2009,

More information

Mastering Modern Psychological Testing Theory & Methods Cecil R. Reynolds Ronald B. Livingston First Edition

Mastering Modern Psychological Testing Theory & Methods Cecil R. Reynolds Ronald B. Livingston First Edition Mastering Modern Psychological Testing Theory & Methods Cecil R. Reynolds Ronald B. Livingston First Edition Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies

More information

12 Exploratory Factor Analysis (EFA): Brief Overview with Illustrations

12 Exploratory Factor Analysis (EFA): Brief Overview with Illustrations 1 12 Exploratory Factor Analysis (EFA): Brief Overview with Illustrations Topics 1. Logic of EFA 2. Formative vs Reflective Models, and Principal Component Analysis (PCA) vs Exploratory Factor Analysis

More information

ASSESSMENT APPROACH TO

ASSESSMENT APPROACH TO DECISION-MAKING COMPETENCES: ASSESSMENT APPROACH TO A NEW MODEL IV Doctoral Conference on Technology Assessment 26 June 2014 Maria João Maia Supervisors: Prof. António Brandão Moniz Prof. Michel Decker

More information

A Beginner s Guide to Factor Analysis: Focusing on Exploratory Factor Analysis

A Beginner s Guide to Factor Analysis: Focusing on Exploratory Factor Analysis Tutorials in Quantitative Methods for Psychology 2013, Vol. 9(2), p. 79-94. A Beginner s Guide to Factor Analysis: Focusing on Exploratory Factor Analysis An Gie Yong and Sean Pearce University of Ottawa

More information

CHAPTER 4 DATA ANALYSIS, PRESENTATION AND INTERPRETATION

CHAPTER 4 DATA ANALYSIS, PRESENTATION AND INTERPRETATION CHAPTER 4 DATA ANALYSIS, PRESENTATION AND INTERPRETATION 4.1 OVERVIEW The responses given by 385 faculty members and 30 directors working in NBA accredited institution business schools in Northern India

More information

Sad (s2) anxious (ax2) self-confidence (sc2) compliance (co2)

Sad (s2) anxious (ax2) self-confidence (sc2) compliance (co2) PC Example A community-based treatment center for adolescents with behavior disorders collects daily data for all residents, including the variables listed below. The question asked was, "How many different

More information

COMPARING MODEL ESTIMATES: THE LINEAR PROBABILITY MODEL AND LOGISTIC REGRESSION

COMPARING MODEL ESTIMATES: THE LINEAR PROBABILITY MODEL AND LOGISTIC REGRESSION PLS 802 Spring 2018 Professor Jacoby COMPARING MODEL ESTIMATES: THE LINEAR PROBABILITY MODEL AND LOGISTIC REGRESSION This handout shows the log of a STATA session that compares alternative estimates of

More information

WISC V Construct Validity: Hierarchical EFA with a Large Clinical Sample

WISC V Construct Validity: Hierarchical EFA with a Large Clinical Sample WISC V Construct Validity: Hierarchical EFA with a Large Clinical Sample The Wechsler Intelligence Scale for Children-Fifth Edition (WISC V; Wechsler, 2014) was published with a theoretical five-factor

More information

Using Factor Analysis to Generate Clusters of Agile Practices

Using Factor Analysis to Generate Clusters of Agile Practices Using Factor Analysis to Generate Clusters of Agile Practices (A Guide for Agile Process Improvement) Noura Abbas University of Southampton School of Electronics and Computer Science Southampton, UK, SO17

More information

2nd INTERNATIONAL CONFERENCE ON BUILT ENVIRONMENT IN DEVELOPING COUNTRIES (ICBEDC 2008)

2nd INTERNATIONAL CONFERENCE ON BUILT ENVIRONMENT IN DEVELOPING COUNTRIES (ICBEDC 2008) USING FACTOR ANALYSIS TO ASSESS THE KEY FACTORS INFLUENCING THE SUCCESS COMPLETION OF A PUBLIC SCHOOL PROJECT IN MALAYSIA Siti Rashidah Mohd Nasir 1 and Muhd Zaimi Abd.Majid 2 Faculty of Civil Engineering,

More information

Variables Corn Wheat Flour Whiskey Groceries Dry Goods

Variables Corn Wheat Flour Whiskey Groceries Dry Goods Towns Columbia Middletown Harrisburg Newport Lewistown Hollidaysburg Johnstown Blairsville Pittsburgh Dunnsburg Williamsport Northumberland Berwick Easton New Hope Bristol Philadelphia Paoli Parkesburg

More information

PRINCIPAL COMPONENT ANALYSIS IN TOURISM MARKETING

PRINCIPAL COMPONENT ANALYSIS IN TOURISM MARKETING PRINCIPAL COMPONENT ANALYSIS IN TOURISM MARKETING Abstract. The analysis methods of the interdependences are meant to give a meaning to a set of variables or to group variables in a certain way. This work

More information

Bhina Patria Introduction

Bhina Patria  Introduction Factor Analysis on the Characteristics of Occupation Bhina Patria inparametric@yahoo.com http://www.inparametric.com Introduction Factor analysis was first used in 1904 by Charles Spearman, a Psychologist

More information

Practical Considerations for Using Exploratory Factor Analysis in Educational Research

Practical Considerations for Using Exploratory Factor Analysis in Educational Research A peer-reviewed electronic journal. Copyright is retained by the first or sole author, who grants right of first publication to the Practical Assessment, Research & Evaluation. Permission is granted to

More information

Job and Work Attitude Determinants: An Application of Multivariate Analysis

Job and Work Attitude Determinants: An Application of Multivariate Analysis Job and Work Attitude Determinants: An Application of Multivariate Analysis Peter Josephat (Corresponding author) Dept. of Statistics, University of Dodoma P. O. Box 338, Dodoma, Tanzania E-mail: mtakwimu@yahoo.com

More information

Segmentation, Targeting and Positioning in the Diaper Market

Segmentation, Targeting and Positioning in the Diaper Market Segmentation, Targeting and Positioning in the Diaper Market mothers of infants were surveyed. Each was given a randomly selected brand of diaper (,, ou Huggies) and asked to rate the diaper on 9 attributes

More information

The SAS System 1. RM-ANOVA analysis of sheep data assuming circularity 2

The SAS System 1. RM-ANOVA analysis of sheep data assuming circularity 2 The SAS System 1 Obs no2 sheep time y 1 1 1 time1 2.197 2 1 1 time2 2.442 3 1 1 time3 2.542 4 1 1 time4 2.241 5 1 1 time5 1.960 6 1 1 time6 1.988 7 1 2 time1 1.932 8 1 2 time2 2.526 9 1 2 time3 2.526 10

More information

Multivariate Methods for Evaluating Building Energy Efficiency

Multivariate Methods for Evaluating Building Energy Efficiency Multivariate Methods for Evaluating Building Energy Efficiency Thomas Olofsson, Staffan Andersson and Jan-Ulric Sjögren, Umeå University ABSTRACT For an owner or operator of a building, benchmarking can

More information

AN ANALYSIS OF FUNCTIONAL / PSYCHOLOGICAL BARRIERS AND QUALITY OF E-BANKING / INTERNET BANKING

AN ANALYSIS OF FUNCTIONAL / PSYCHOLOGICAL BARRIERS AND QUALITY OF E-BANKING / INTERNET BANKING CHAPTER 5 AN ANALYSIS OF FUNCTIONAL / PSYCHOLOGICAL BARRIERS AND QUALITY OF E-BANKING / INTERNET BANKING 5.1 Introduction India is one of the leading countries in the world where e-banking / internet banking

More information

Exploratory Factor Analysis

Exploratory Factor Analysis Dublin Institute of Technology ARROW@DIT Books/Book Chapters School of Management 2012 Exploratory Factor Analysis Daire Hooper Dublin Institute of Technology, daire.hooper@dit.ie Follow this and additional

More information

Survey Methods & Design in Psychology Lecture 5 (2007) Factor Analysis 1 Lecturer: James Neill. Readings. Overview

Survey Methods & Design in Psychology Lecture 5 (2007) Factor Analysis 1 Lecturer: James Neill. Readings. Overview Survey Methods & Design in Psychology Lecture 5 (2007) Factor Analysis 1 Lecturer: James Neill Readings Bryman, A. & Cramer, D. (1997). Concepts and their measurement (Ch. 4). Fabrigar, L. R....[et al.].

More information

PROMOTION OF RENEWABLE SOURCES OF ENERGY FROM RURAL AREAS

PROMOTION OF RENEWABLE SOURCES OF ENERGY FROM RURAL AREAS 118 th EAAE Seminar Rural development: governance, policy design and delivery Ljubljana, 25-27 August 2010 PROMOTION OF RENEWABLE SOURCES OF ENERGY FROM RURAL AREAS Štefan Bojnec 1 and Drago Papler 2 1

More information

Example 8: Path Analysis for Mediation (complete syntax and output available for SAS, Mplus, and STATA electronically)

Example 8: Path Analysis for Mediation (complete syntax and output available for SAS, Mplus, and STATA electronically) SPLH 861 Example 8 page 1 Example 8: Path Analysis for Mediation (complete syntax and output available for SAS, Mplus, and STATA electronically) Internal Motivation to Respond without Sexism (M1) Figure

More information

FACTOR ANALYSIS OF EFFECTS OF CAREER ON QUALITY OF WORK LIFE AMONG WOMEN EMPLOYEES WORKING IN PRIVATE SECTOR BANKS IN COIMBATORE DISTRICT

FACTOR ANALYSIS OF EFFECTS OF CAREER ON QUALITY OF WORK LIFE AMONG WOMEN EMPLOYEES WORKING IN PRIVATE SECTOR BANKS IN COIMBATORE DISTRICT FACTOR ANALYSIS OF EFFECTS OF CAREER ON QUALITY OF WORK LIFE AMONG WOMEN EMPLOYEES WORKING IN PRIVATE SECTOR BANKS IN COIMBATORE DISTRICT *Saravanan S. & Elamathi K. Department of Commerce with Information

More information

CHAPTER 5 RESULTS AND ANALYSIS

CHAPTER 5 RESULTS AND ANALYSIS CHAPTER 5 RESULTS AND ANALYSIS This chapter exhibits an extensive data analysis and the results of the statistical testing. Data analysis is done using factor analysis, regression analysis, reliability

More information

NMDS Application & Examples

NMDS Application & Examples Objectives: NMDS Application & Examples - Showcase NMDS analysis in PC-ORD and the literature NMS Suggested Procedure (McCune and Grace 2002) These minimum suggested procedures for determining appropriate

More information

A Study of Psychographic Variables Proposed for Segmentation for Personal Care Products through Factor Analysis

A Study of Psychographic Variables Proposed for Segmentation for Personal Care Products through Factor Analysis A Study of Psychographic Variables Proposed for Segmentation for Personal Care Products through Factor Analysis Dr. (Mrs.) Kiran Mor Professor, Humanities & Social Sciences, NIT Kurukshetra Sulekha Research

More information

CHAPTER 4 EXAMPLES: EXPLORATORY FACTOR ANALYSIS

CHAPTER 4 EXAMPLES: EXPLORATORY FACTOR ANALYSIS Examples: Exploratory Factor Analysis CHAPTER 4 EXAMPLES: EXPLORATORY FACTOR ANALYSIS Exploratory factor analysis (EFA) is used to determine the number of continuous latent variables that are needed to

More information

USING EXPLORATORY FACTOR ANALYSIS IN INFORMATION SYSTEM (IS) RESEARCH

USING EXPLORATORY FACTOR ANALYSIS IN INFORMATION SYSTEM (IS) RESEARCH USING EXPLORATORY FACTOR ANALYSIS IN INFORMATION SYSTEM (IS) RESEARCH Maria Argyropoulou, Brunel Business School Brunel University UK Maria.Argyropoulou@brunel.ac.uk Dimitrios N.Koufopoulos Brunel Business

More information

PERFORMANCE EVALUATION AND INDICES OF CYBER CAFÉ BUSINESS: A FACTOR ANALYTIC APPROACH. Oluwadare Samuel Adebayo

PERFORMANCE EVALUATION AND INDICES OF CYBER CAFÉ BUSINESS: A FACTOR ANALYTIC APPROACH. Oluwadare Samuel Adebayo PERFORMANCE EVALUATION AND INDICE OF CYBER CAFÉ BUINE: A FACTOR ANALYTIC APPROACH Oluwadare amuel Adebayo Department of Computer cience, Federal University of Technology, P.M.B. 704, Akure oluwadaresam@yahoo.com

More information

Transportation Research Forum

Transportation Research Forum Transportation Research Forum Estimation of Satisfied Customers in Public Transport Systems: A New Methodological Approach Author(s): Maria Morfoulaki, Yannis Tyrinopoulos, and Georgia Aifadopoulou Source:

More information

Using Factor Analysis to Study the Critical Success Factors of Agile Software Development

Using Factor Analysis to Study the Critical Success Factors of Agile Software Development Using Factor Analysis to Study the Critical Success Factors of Agile Software Development Abdullah Aldahmash*, Andrew Gravell, Yvonne Howard School of Electronics and Computer Science, University of Southampton,

More information

Nested or Hierarchical Structure School 1 School 2 School 3 School 4 Neighborhood1 xxx xx. students nested within schools within neighborhoods

Nested or Hierarchical Structure School 1 School 2 School 3 School 4 Neighborhood1 xxx xx. students nested within schools within neighborhoods Multilevel Cross-Classified and Multi-Membership Models Don Hedeker Division of Epidemiology & Biostatistics Institute for Health Research and Policy School of Public Health University of Illinois at Chicago

More information

Factor Analysis for the Study of Determinants of Public Transit Ridership

Factor Analysis for the Study of Determinants of Public Transit Ridership Journal of Public Transportation Factor Analysis for the Study of Determinants of Public Transit Ridership Sharfuddin l Syed, Government of North West Te"itories, Canada Ata M Khan, Carleton University

More information

INNOVATIVE METHOD IN DETERMINING FACTORS THAT INFLUENCE PROJECT SUCCESS

INNOVATIVE METHOD IN DETERMINING FACTORS THAT INFLUENCE PROJECT SUCCESS INNOVATIVE METHOD IN DETERMINING FACTORS THAT INFLUENCE PROJECT SUCCESS Siti Rashidah Mohd Nasir 1, Muhd Zaimi Abd.Majid 2 and Ismail Mohamad 3 12 Faculty of Civil Engineering, Universiti Teknologi Malaysia,

More information

Chapter Five- Driving Innovation Factors by Using Factor Analysis

Chapter Five- Driving Innovation Factors by Using Factor Analysis Chapter Five- Driving Innovation Factors by Using Factor Analysis 5.1 Introduction In the previous chapter, the results of preliminary stages of analysis including normality, reliability, and demographic

More information

SOCY7706: Longitudinal Data Analysis Instructor: Natasha Sarkisian Two Wave Panel Data Analysis

SOCY7706: Longitudinal Data Analysis Instructor: Natasha Sarkisian Two Wave Panel Data Analysis SOCY7706: Longitudinal Data Analysis Instructor: Natasha Sarkisian Two Wave Panel Data Analysis In any longitudinal analysis, we can distinguish between analyzing trends vs individual change that is, model

More information

Electronic retail (e-tail) image components and their association with variety seeking and avid shoppers

Electronic retail (e-tail) image components and their association with variety seeking and avid shoppers Southern Cross University epublications@scu Southern Cross Business School 2002 Electronic retail (e-tail) image components and their association with variety seeking and avid shoppers Stephen J. Kelly

More information

REASONS BEHIND CONSUMERS SWITCHING BEHAVIOR TOWARDS MOBILE NETWORK OPERATORS: A STUDY CONDUCTED IN WESTERN PART OF RURAL WEST BENGAL

REASONS BEHIND CONSUMERS SWITCHING BEHAVIOR TOWARDS MOBILE NETWORK OPERATORS: A STUDY CONDUCTED IN WESTERN PART OF RURAL WEST BENGAL REASONS BEHIND CONSUMERS SWITCHING BEHAVIOR TOWARDS MOBILE NETWORK OPERATORS: A STUDY CONDUCTED IN WESTERN PART OF RURAL WEST BENGAL Debarun Chakraborty, Assistant Professor, Department of Management &

More information

A Study on the Customer Awareness of E- Banking Services in Madurai City

A Study on the Customer Awareness of E- Banking Services in Madurai City A Study on the Customer Awareness of E- Banking Services in Madurai City 1 R. Nagaraj, 2 Dr. P. Jegatheeswari Research Scholar, Associate Professor Department of Management Studies 1 Madurai Kamaraj University,

More information

Factors Affecting Implementation of Enterprise Risk Management: An Exploratory Study among Saudi Organizations

Factors Affecting Implementation of Enterprise Risk Management: An Exploratory Study among Saudi Organizations Factors Affecting Implementation of Enterprise Risk Management: An Exploratory Study among Saudi Organizations Yousef Aleisa Abstract Enterprise risk management (ERM) has received significant attention

More information

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

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

More information

Engine remaining useful life prediction based on trajectory similarity

Engine remaining useful life prediction based on trajectory similarity Engine remaining useful life prediction based on trajectory similarity Xin Liu 1, Yunxian Jia 2, Jie Zhou 3, Tianbin Liu 4 1, 2, 3 Department of Equipment Command and Management. Ordnance Engineering College,

More information

CUSTOMER PREFERENCE TOWARDS TECHNOLOGY ENABLED BANKING SELF SERVICES WITH SPECIAL REFERENCE TO COIMBATORE CITY

CUSTOMER PREFERENCE TOWARDS TECHNOLOGY ENABLED BANKING SELF SERVICES WITH SPECIAL REFERENCE TO COIMBATORE CITY CUSTOMER PREFERENCE TOWARDS TECHNOLOGY ENABLED BANKING SELF SERVICES WITH SPECIAL REFERENCE TO COIMBATORE CITY K.Gokila Research Scholar, School of Commerce, Rathnavel Subramaniam College of Arts and Science,

More information

Assessing the performance of food co ops in the US

Assessing the performance of food co ops in the US Assessing the performance of food co ops in the US Didier Yélognissè Alia PhD Student Department of Agricultural University of Kentucky Ani Kacthova Associate Professor and Farm Income Enhancement Chair

More information

FOLLOW-UP NOTE ON MARKET STATE MODELS

FOLLOW-UP NOTE ON MARKET STATE MODELS FOLLOW-UP NOTE ON MARKET STATE MODELS In an earlier note I outlined some of the available techniques used for modeling market states. The following is an illustration of how these techniques can be applied

More information

A Study on Customer Perception on Online Purchase and Digital Marketing in Coimbatore

A Study on Customer Perception on Online Purchase and Digital Marketing in Coimbatore Volume 02 - Issue 10 October 2017 PP. 57-61 A Study on Customer Perception on Online Purchase and Digital Marketing in Coimbatore Dr. A. Valarmathi Professor, Vivekananda Institute of Management Studies,

More information

The Accounting Methods of the Local Government Department Output by Factor Analysis

The Accounting Methods of the Local Government Department Output by Factor Analysis Applied Economics and inance Vol., No. ; May 04 ISSN 33-794 E-ISSN 33-7308 Published by Redfame Publishing URL: http://aef.redfame.com The Accounting Methods of the Local Government Department Output by

More information

innovation by using test techniques

innovation by using test techniques 08 Improving the 0h understanding of innovation by using test techniques Vincent Fructuoso van der Veen The views expressed in this paper are those of the author(s) and do not necessarily reflect the policies

More information

Unit 5 Logistic Regression Homework #7 Practice Problems. SOLUTIONS Stata version

Unit 5 Logistic Regression Homework #7 Practice Problems. SOLUTIONS Stata version Unit 5 Logistic Regression Homework #7 Practice Problems SOLUTIONS Stata version Before You Begin Download STATA data set illeetvilaine.dta from the course website page, ASSIGNMENTS (Homeworks and Exams)

More information

Principal Component Analysis of Influence of Organizational Justice on Employee Engagement

Principal Component Analysis of Influence of Organizational Justice on Employee Engagement Principal Component Analysis of Influence of Organizational Justice on Employee Engagement Ravichandran. D Department of Business and Management Studies, Trincomalee Campus, Eastern University Sri Lanka.

More information

International Journal of Advance Research in Computer Science and Management Studies Volume 4, Issue 5, May 2016 pg II.

International Journal of Advance Research in Computer Science and Management Studies Volume 4, Issue 5, May 2016 pg II. ISSN: 2321-7782 (Online) Impact Factor: 6.047 Volume 4, Issue 5, May 2016 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study

More information

CHAPTER - 4 RESEARCH METHODOLOGY

CHAPTER - 4 RESEARCH METHODOLOGY CHAPTER - 4 RESEARCH METHODOLOGY 4.1 Introduction 4.1.1 Consumer attitude 4.1.2 Purchase decision 4.1.3 Decision machining process 4.2 Statement of Research Problem 4.3 Rationale of the Study 4.4 Objectives

More information

Center for Demography and Ecology

Center for Demography and Ecology Center for Demography and Ecology University of Wisconsin-Madison A Comparative Evaluation of Selected Statistical Software for Computing Multinomial Models Nancy McDermott CDE Working Paper No. 95-01

More information

Empirical Analysis of the Factors Affecting Online Buying Behaviour

Empirical Analysis of the Factors Affecting Online Buying Behaviour DOI : 10.18843/ijms/v5i3(6)/08 DOIURL :http://dx.doi.org/10.18843/ijms/v5i3(6)/08 Empirical Analysis of the Factors Affecting Online Buying Behaviour Dr. Swati Sachdeva Khosla, Research Associate, UIAMS,

More information

Supply Chain Coordination Competency and Firm Performance: An Empirical Study

Supply Chain Coordination Competency and Firm Performance: An Empirical Study Supply Chain Coordination Competency and Firm Performance: An Empirical Study 64 Rajendra Kumar Shukla 1*, Dixit Garg 2, Ashish Agarwal 3 1 Department of Manufacturing Technology, J.S.S.Academy of Technical

More information

Stata Program Notes Biostatistics: A Guide to Design, Analysis, and Discovery Second Edition Chapter 12: Analysis of Variance

Stata Program Notes Biostatistics: A Guide to Design, Analysis, and Discovery Second Edition Chapter 12: Analysis of Variance Stata Program Notes Biostatistics: A Guide to Design, Analysis, and Discovery Second Edition Chapter 12: Analysis of Variance Program Note 12.1 - One-Way ANOVA and Multiple Comparisons The Stata command

More information

Factors Affecting Buying Behavior of an Apartment an Empirical Investigation in Amman, Jordan

Factors Affecting Buying Behavior of an Apartment an Empirical Investigation in Amman, Jordan Research Journal of Applied Sciences, Engineering and Technology 3(3): 234-239, 2011 ISSN: 2040-7467 Maxwell Scientific Organization, 2011 Received: February 20, 2011 Accepted: March 12, 2011 Published:

More information

Author please check for any updations

Author please check for any updations The Relationship Between Service Quality and Customer Satisfaction: An Empirical Study of the Indian Banking Industry Sunayna Khurana* In today s intense competitive business world, the customer is educated

More information

Sustainability of Commercial Banks: Role of Brand Image over. Brand Equity

Sustainability of Commercial Banks: Role of Brand Image over. Brand Equity Sustainability of Commercial Banks: Role of Brand Image over Brand Equity Md. Abul Kalam Azad (Corresponding Author) Assistant Professor, International Islamic University Chittagongg Address: House-23,

More information

Foley Retreat Research Methods Workshop: Introduction to Hierarchical Modeling

Foley Retreat Research Methods Workshop: Introduction to Hierarchical Modeling Foley Retreat Research Methods Workshop: Introduction to Hierarchical Modeling Amber Barnato MD MPH MS University of Pittsburgh Scott Halpern MD PhD University of Pennsylvania Learning objectives 1. List

More information

Analyzing Ordinal Data With Linear Models

Analyzing Ordinal Data With Linear Models Analyzing Ordinal Data With Linear Models Consequences of Ignoring Ordinality In statistical analysis numbers represent properties of the observed units. Measurement level: Which features of numbers correspond

More information

Dr. Virendra Chavda. Abstract:

Dr. Virendra Chavda. Abstract: ISSN No. 0974-035X An Indexed Refereed Journal of Higher Education Towards Excellence UGC-ACADEMIC STAFF COLLEGE, GUJARAT UNIVERSITY, AHMEDABAD, INDIA A STUDY ON ATTRIBUTES INFLUENCING SELECTION OF SHOPPING

More information

A Comparison of Segmentation Based on Relevant Attributes and Segmentation Based on Determinant Attributes

A Comparison of Segmentation Based on Relevant Attributes and Segmentation Based on Determinant Attributes 30-10-2015 A Comparison of Segmentation Based on Relevant Attributes and Segmentation Based on Determinant Attributes Kayleigh Meister WAGENINGEN UR A Comparison of Segmentation Based on Relevant Attributes

More information

Impact of the Competition from International Food Service Retail Outlets on the Quality Attributes of Indian Food Service Retail Outlets

Impact of the Competition from International Food Service Retail Outlets on the Quality Attributes of Indian Food Service Retail Outlets EUROPEAN ACADEMIC RESEARCH Vol. V, Issue 9/ December 2017 ISSN 2286-4822 www.euacademic.org Impact Factor: 3.4546 (UIF) DRJI Value: 5.9 (B+) Impact of the Competition from International Food Service Retail

More information

The study obtains the following results: Homework #2 Basics of Logistic Regression Page 1. . version 13.1

The study obtains the following results: Homework #2 Basics of Logistic Regression Page 1. . version 13.1 Soc 73994, Homework #2: Basics of Logistic Regression Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised January 14, 2018 All answers should be typed and mailed to

More information

PREFACE. The data files referred to in this text are all available on the student web site as part of this module.

PREFACE. The data files referred to in this text are all available on the student web site as part of this module. M J XAVIER This data analysis module was developed by Professor M.J. Xavier in conjunction with the textbook authors for the basis of class discussion rather than to illustrate either effective or ineffective

More information

BST 226 Statistical Methods for Bioinformatics David M. Rocke. February 19, 2014 BST 226 Statistical Methods for Bioinformatics 1

BST 226 Statistical Methods for Bioinformatics David M. Rocke. February 19, 2014 BST 226 Statistical Methods for Bioinformatics 1 BST 226 Statistical Methods for Bioinformatics David M. Rocke February 19, 2014 BST 226 Statistical Methods for Bioinformatics 1 Cystic Fibrosis Data Set The 'cystfibr' data frame has 25 rows and 10 columns.

More information

Psychology 454: Latent Variable Modeling

Psychology 454: Latent Variable Modeling Psychology 454: Latent Variable Modeling lavaan and LISREL further comments Department of Psychology Northwestern University Evanston, Illinois USA February, 2011 1 / 19 Outline 1 lavaan analysis of Bollen

More information

References. Clarke, J. & Cable, V., The Asian Electronics Industry Looks to the Future. The IDS Bulletin, 13(2), pp

References. Clarke, J. & Cable, V., The Asian Electronics Industry Looks to the Future. The IDS Bulletin, 13(2), pp References Balakrishnan Ramesh Babu, Anand Kuber Parande & Chiya Ahmed Basha, 2007. Electrical and electronic waste: a global environmental problem. Waste Management & Research, 25(4), pp.307 318. Available

More information

An Empirical Analysis Of Factors Affecting The Adoption Of E-Payment System From Firm s Perspective In UAE

An Empirical Analysis Of Factors Affecting The Adoption Of E-Payment System From Firm s Perspective In UAE An Empirical Analysis Of Factors Affecting The Adoption Of E-Payment System From Firm s Perspective In UAE Pooja Trivedi Lecturer Beenu Mago Lecturer Abstract Due to exponential use of e-commerce by consumers,

More information

Saranda Kajtazi*, Nail Reshidi University of Prishtina Hasan Prishtina, Kosovo

Saranda Kajtazi*, Nail Reshidi University of Prishtina Hasan Prishtina, Kosovo Online ISSN 2424-6166. ekonomika 2018 Vol. 97(1) DOI: https://doi.org/10.15388/ekon.2018.1.11782 CONSUMER-SIDE DECISION FACTORS ON THEIR SELECTION OF BOTTLED WATER BRANDS: STATISTICAL METHOD STUDY IN A

More information

Strategy development and implementation process and factors influencing the result: Case study of Latvian organizations

Strategy development and implementation process and factors influencing the result: Case study of Latvian organizations Available online at www.sciencedirect.com ScienceDirect Procedia - Social and Behavioral Sciences 213 ( 2015 ) 931 937 20th International Scientific Conference Economics and Management - 2015 (ICEM-2015)

More information

TECHNICAL MANUAL TalentSmart, Inc.

TECHNICAL MANUAL TalentSmart, Inc. 2013 TalentSmart, Inc. www.talentsmart.com TABLE OF CONTENTS I. INTRODUCTION Assessment Authors............................................................................. 3 Development of 360º Refined.....................................................................

More information

CHAPTER INTRODUCTION:

CHAPTER INTRODUCTION: CHAPTER 6 THE IMPACT OF IRRIGATION THROUGH GROUND WATER AVAILABILITY: AN APPLICATION OF FACTOR ANALYSIS ON GROUND WATER DATA FROM CENTRAL WATER COMMISSION INDIA 6.1 INTRODUCTION: Factor analysis is by

More information

Customers Retail Bank Selection Criteria in South Africa

Customers Retail Bank Selection Criteria in South Africa ISSN -1905 (Paper) ISSN -839 (Online) Vol.6, No.3, 014 Customers Retail Bank Selection Criteria in South Africa Allexander Muzenda Department of Research and Publications, Regenesys Business School; South

More information

Research. Outsourcing. Lu Sun. Yanxin Xingang Wang. Roger Su. Abstract. of Training. the new analysiss

Research. Outsourcing. Lu Sun. Yanxin Xingang Wang. Roger Su. Abstract. of Training. the new analysiss ISSN 9-899X 0, Vol., No. The Key Elementss on Selection of Training Outsourcing Lu Sun Harbin University of Commerce,China E-mail: sunl@harbcu.edu.cn Yanxin Zhang Harbin University of Commerce,China E-mail:

More information

Statistical equation modeling analysis for industrial projects, designing for critical factors and latent variables: quality, cost, time, and success

Statistical equation modeling analysis for industrial projects, designing for critical factors and latent variables: quality, cost, time, and success Int J Adv Manuf Technol (2017) 88:767 779 DOI 10.1007/s00170-016-8675-4 ORIGINAL ARTICLE Statistical equation modeling analysis for industrial projects, designing for critical factors and latent variables:

More information

CHAPTER 5 FACTOR ANALYSIS AND MULTIPLE REGRESSION MODEL

CHAPTER 5 FACTOR ANALYSIS AND MULTIPLE REGRESSION MODEL 108 CHAPTER 5 FACTOR ANALYSIS AND MULTIPLE REGRESSION MODEL 5.1 GENERAL Two statistical tools, factor analysis and multiple regression, were used to analyse the data from the questionnaire. Factor analysis

More information

International Journal of Advance Research in Computer Science and Management Studies

International Journal of Advance Research in Computer Science and Management Studies Volume 3, Issue 12, December 2015 ISSN: 2321 7782 (Online) International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online

More information

Factors Affecting the Recruitment and Selection Process of Private Commercial Banks in Bangladesh

Factors Affecting the Recruitment and Selection Process of Private Commercial Banks in Bangladesh The Journal of Global Commerce, Vol. 2, Number 4, Fall 2010 Factors Affecting the Recruitment and Selection Process of Private Commercial Banks in Bangladesh Abstract Dr. Nazrul Islam Professor, Department

More information

The Multivariate Dustbin

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

More information

IJMSS Vol.03 Issue-02, (February, 2015) ISSN: Impact Factor- 3.25

IJMSS Vol.03 Issue-02, (February, 2015) ISSN: Impact Factor- 3.25 A STUDY OF FACTORS CONSIDERED BY STUDENTS IN PUNE CITY WHILE SELECTING MOBILE SERVICE PROVIDER(MSP) Asst. Prof. DevikaShinde, BBA Dept. ( Main Author) Smt. KashibaiNavale college of commerce, Pune, Mr.

More information

C-14 FINDING THE RIGHT SYNERGY FROM GLMS AND MACHINE LEARNING. CAS Annual Meeting November 7-10

C-14 FINDING THE RIGHT SYNERGY FROM GLMS AND MACHINE LEARNING. CAS Annual Meeting November 7-10 1 C-14 FINDING THE RIGHT SYNERGY FROM GLMS AND MACHINE LEARNING CAS Annual Meeting November 7-10 GLM Process 2 Data Prep Model Form Validation Reduction Simplification Interactions GLM Process 3 Opportunities

More information

Can Prior Experience Provide a Means to Predict Success of Future Aquifer Storage and Recovery Systems?

Can Prior Experience Provide a Means to Predict Success of Future Aquifer Storage and Recovery Systems? American Journal of Environmental Engineering 218, 8(5): 181-2 DOI: 1.5923/j.ajee.21885.3 Can Prior Experience Provide a Means to Predict Success of Future Aquifer Storage and Recovery Systems? Frederick

More information

AN ANALYSIS OF CUSTOMERS SATISFACTION AND FACTORS INFLUENCING THE INTERNET BANKING

AN ANALYSIS OF CUSTOMERS SATISFACTION AND FACTORS INFLUENCING THE INTERNET BANKING CHAPTER V AN ANALYSIS OF CUSTOMERS SATISFACTION AND FACTORS INFLUENCING THE INTERNET BANKING 5.1 INTRODUCTION Banking industry is also one of the predominant industries adopting technologies which are

More information

SERVICE QUALITY ATTRIBUTES AFFECTING THE SATISFACTION OF RAILWAY PASSENGERS OF SELECTIVE ROUTE IN SOUTHWESTERN PART OF BANGLADESH

SERVICE QUALITY ATTRIBUTES AFFECTING THE SATISFACTION OF RAILWAY PASSENGERS OF SELECTIVE ROUTE IN SOUTHWESTERN PART OF BANGLADESH SERVICE QUALITY ATTRIBUTES AFFECTING THE SATISFACTION OF RAILWAY PASSENGERS OF SELECTIVE ROUTE IN SOUTHWESTERN PART OF BANGLADESH Khan Rubayet RAHAMAN Urban and Rural Planning Discipline, Khulna University

More information

The Effect of Product Differentiation on Local Brand Positioning: A Case Study of Venus Brand Shampoos in the Algerian Market

The Effect of Product Differentiation on Local Brand Positioning: A Case Study of Venus Brand Shampoos in the Algerian Market The Effect of Product Differentiation on Local Brand Positioning: A Case Study of Venus Brand Shampoos in the Algerian Market Hadjer Della * L hadj Meddah Araibi DECOPILS Laboratory, Hassiba Benbouali

More information