A STATA CODE FOR MULTILEVEL MODEL

Size: px
Start display at page:

Download "A STATA CODE FOR MULTILEVEL MODEL"

Transcription

1 Appendix A STATA CODE FOR MULTILEVEL MODEL ********************************************************************** ********************** ********** Two-level Multilevel random-intercepts and random slopes model ******* ********** Rajeev Kumar: Department Biostatistics and Medical Informatics ******** ************************************************************************************ *************************** STATA 11.0 stware was applied to fit the multilevel models, complex multilevel model and bootstrapping and other diagnostics was performed using MlwiN stware. The STATA codes to fit the various multilevel models, graphs, comparison nested models, testing assumptions multilevel models are as follows: Brief explanation STATA command : The syntax for estimating multilevel models in STATA starts from.xtmixed followed by response and a list covariates/independent s followed by double vertical line after that cluster (journal in our case) and random effect s are specified ( random slope). For random intercept model only cluster followed by colon. By default STATA stware RMLE method, to change this method; option command was and specifies mle for maximum likelihood estimation. User can also specify the other options. The syntax empty model in our study is:.xtmixed quality_score Journal:, mle var Use c:\ internationaldata.dta, clear *Command to draw the journal wise box-whisker plot quality score.graph box quality_score, over(journalname).graph save Graph path name\filename.gph *To run the multilevel command without any covariate(null model).xtmixed quality_score Journal:, mle var *Command to store the estimates the null model as nullmodel.estimates store nullmodel *Command to predict the random intercept residuals.predict u0, reffects *reffects calculate the shrunken residuals/best linear unbiased prediction random intercepts. predict u0se, reses *reses calculate the standard errors shrunken residuals.egen pickone==tag(journal).sort u0.gen u0rank=sum(pickone) *to draw the caterpillar graph with 95% confidence band intercept residuals.serrbar u0, u0se u0rank if pickone=1, scale(1.96) yline(0) Rajeev Kumar Multilevel Modeling Page 196

2 *Command generates the five-block years. gen block_year=0 if (year=2000 year=2001).replace block_year=1 if (year=2002 year=2003).replace block_year=2 if (year=2004 year=2005).replace block_year=3 if (year=2006 year=2007).replace block_year=4 if(year=2008 year=2009) *Command forlog(natural) transformation sample size and calculation grand mean and centering.gen logsample_size=ln(sample_size).egen mean_logsample=mean(logsample_size).egen mean_author=mean(author).gen center_logsample=logsample_size mean_logsample.gen center_author=author mean_author ** Command for graphically testing the non-linearity sample size and authors with quality score across the journals.lowess quality_score center_logsample, addplot((lfit quality score center_logsample)(qfit quality_score center_logsample)) by(journal).lowess quality_score center_logsample, addplot((lfit quality score center_author)(qfit quality_score center_author)) by(journal) ****Multilevel commands to run the random intercept model for each level-1 covariates.xtmixed quality_score StatisticianorEpidemiolgist Journal:, mle var.estimates store statistician.xtmixed quality_score center_logsample Journal:, mle var.estimates store logsample_center *Command to create the dummy s for stware.gen sas_st=1 if stware_code==2.gen stata_st=1 if stware_code==3.gen spss_st=1 if stware _code==1.gen other_st=1 if stware_code=9.xtmixed quality_score sas_st stat_st spss_st other_st Journal:, mle var.estimates store stware.xtmixed quality_score center_author Journal:, mle var.estimates store author *Block-year is five year block code as 0,1,2,3,4 and considered as continuous.xtmixed quality_score Block_year Journal:, mle var.estimates store blockyear.xtmixed quality_score firstcountrystatus Journal:, mle var.estimates store firstauthor Rajeev Kumar Multilevel Modeling Page 197

3 *Likelihood ratio test to compare null model with random intercept models.lrtest nullmodel statistician.lrtest nullmodel logsample_center.lrtest nullmodel stware.lrtest nullmodel author.lrtest nullmodel blockyear ***Command for random intercepts model considering covariates with p<0.25 into model (STEP-2) center_author Block_year firstcountrystatus Journal:, mle var.estimates store finalrandomintercept *Command for checking the random slopes model for each the article level covariates one-byone center_author Block_year firstcountrystatus Journal: StatisticianorEpidemiolgist,.estimates store randslopstatistician center_author Block_year firstcountrystatus Journal:center_logsample, covariance(unstructured) mle var.estimates store randslopssize center_author Block_year firstcountrystatus Journal: center_author, covariance(unstructured) mle var.estimates store randslopauthor center_author Block_year firstcountrystatus Journal:Block_year,.estimates store randslopblockyear center_author Block_year firstcountrystatus Journal:firstcountrystatus, covariance(unstructured) mle var.estimates store randslopfirstcountrystatus **LR test to compare the final model step-2 with above models.lrtest finalrandomintercept randslopstatistician.lrtest finalrandomintercept randslopssize.lrtest finalrandomintercept randslopauthor.lrtest finalrandomintercept randslopblockyear.lrtest finalrandomintercept randslopfirstcountrystatus *final random intercepts and random slopes model (Step-3) Rajeev Kumar Multilevel Modeling Page 198

4 center_author Block_year firstcountrystatus Journal:center_logsample, covariance(unstructured) mle var.estimates store finalrandinterceptslop **command to include the journals level covariates in the model obtained from step-3 (step-4) center_author Block_year firstcountrystatus speciality_code Journal:center_logsample, ** Cross-level interaction.gen samplesizexspeciality=center_logsample*speciality_code **command to include the cross level interaction in the step-4 final model center_author Block_year firstcountrystatus speciality_codesamplesizexspeciality Journal:center_logsample, *Final model for international journals study center_author Block_year firstcountrystatus speciality_code Journal:center_logsample,.estimates store finalstudymodel.predict f1 f0, reffects.predict f1 f0, reses.graph box f1 f0 if pickone==1 *Command to find the article level standard residuals. predict residual_level_1 rstandard *Command to draw the scater plot level-1 residuals against center_logsample.scatter residuals_level_1 center_logsample, yline(0) xline(0) Qnorm residual_level_1, yline(o) xline(0) *Command to test the normality intercepts and slopes residuals using Shapiro-Francia and skewness and kurtosis test.sfrancia f1 f0 if pickone==1.sktest f1 f0 if pickone==1 *Command to apply Leven s test for testing homogeneity variance articles level residuals across the journals.robvar residual_level_1, by(journal) **Command to calculate the article level residuals for involvement statistician or non-involvement.xtmixed std_score StatisticanorEpidemilogist Code_indian sas_st stat_st center_author block_code center_logsample speciality_code Journal: center_logsample, covariance(unstructured) residuals(independent, by ( StatisticanorEpidemilogist)) mle var Rajeev Kumar Multilevel Modeling Page 199

5 Excel format to record raw data Appendix B Article per journal Article per block Random article per block Journal Title the article Authors name Journal name Year and volume Block-year Number MLR articles Journal publishing country name Two digit 1 to 50 Twodigit 1 to 10 Threedigit Twodigit 1 to 30 This information recorded after evaluated the MLR articles Specialit y journal Number issue per year Impac t factor as on 2009 No. author' s Data is matche d paired Type logistic (conditional or unconditional) Stware Sampl e size the study year Name the countr y first author Status first author income country Name stwar e C=conditional UC=unconditiona l Total sampl e size Low+middle= 0 and high =1 income group Rajeev Kumar Multilevel Modeling Page 200

6 Type model IF Predicte d model than intercept is given or not Involvemen t Statistician or Epidemiolo gist as coauthor Suffici ent events Sample size minimum event Number s conside red for model Confor mity gradien t tested to test the conformi ty gradient Checking Interactio n Colline arity tested Valida tion done Metho d valida tion P- value ORS, CI P=predi cation, NP=Oth ers t fulfilled 1=Fulfill ed 2=NA Name method if Name valida tion if Goodn ess fit done for goodnes s fit Selection independen t for selecting the Coding independ ent Model procedur e name procedur e sample size descriptio n given or not to convert continuous into categorical Missing treatment to treat missing value Name method for testing goodness for selecting the s Name model procedure 0 =No treatment 1=yes 2= NA Imputatio n method or name treatment applied if Rajeev Kumar Multilevel Modeling Page 201

7 Appendix C: Table showing the journal-wise and criterion wise proportion manuscripts that met the recommended criteria Jour nal Num ber Journal Name Suffici ent case (10:1) Conformit y linear gradient Interaction s or modifier effect Testing collineari ty validati on P-value OR and 95% CI Goodnes s--fit or classifica tion summary Selection plausible s Coding variabl e Model Proced ure 1 Academic Emergency Medicine American Journal t l Anesthesia & Analgesia Annals Surgery Annals Thoracic surgery Archives Internal Medicine British Journal cancer British Journal Ophthalmology Cerebrovascular Diseases Chest Clinical Infectious Diseases CMAJ Diabetes Care Environ Health Perspective Epidemiology Infection European Journal Public H Fertility lth and sterility Heart Hypertension Intensive Care Medicine Lancet NEJM Neurology Obstetric Gynecology Pediatrics Sexually Transmitted Disease Spine Stroke The American Journal P Transplantation hi t Total Rajeev Kumar Multilevel Modeling Page 202

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

Print Journals List. The American Biology Teacher Online: Oct 1938 (v. 1, n.1) May 2011 (v. 73, n. 5)

Print Journals List. The American Biology Teacher Online: Oct 1938 (v. 1, n.1) May 2011 (v. 73, n. 5) Print Journals List AACN: Advanced Critical Care (formerly AACN Clinical Issues) On Shelf: Jan/Mar 2008 (v. 19, n. 1) Jan/Mar 2011 (v. 22, n. 1) AAOHN: American Association of Occupational Health Nursing

More information

Week 10: Heteroskedasticity

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

More information

AJN: American Journal of Nursing On Shelf: Jan 2011 (v. 111, n. 1) Jan 2016 (v. 116, n. 1) Online: Oct 1900 (v. 1, n. 1) present

AJN: American Journal of Nursing On Shelf: Jan 2011 (v. 111, n. 1) Jan 2016 (v. 116, n. 1) Online: Oct 1900 (v. 1, n. 1) present Print Journals List AAOHN: American Association of Occupational Health Nursing (now Workplace Health and Safety) On Shelf: Jan 2011 (v. 59, Dec 2011 (v. 59, n. 12) Online: Jan 2003 (v. 51, Dec 2010 (v.

More information

Topics in Biostatistics Categorical Data Analysis and Logistic Regression, part 2. B. Rosner, 5/09/17

Topics in Biostatistics Categorical Data Analysis and Logistic Regression, part 2. B. Rosner, 5/09/17 Topics in Biostatistics Categorical Data Analysis and Logistic Regression, part 2 B. Rosner, 5/09/17 1 Outline 1. Testing for effect modification in logistic regression analyses 2. Conditional logistic

More information

Getting Started with HLM 5. For Windows

Getting Started with HLM 5. For Windows For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 About this Document... 3 1.2 Introduction to HLM... 3 1.3 Accessing HLM... 3 1.4 Getting Help with HLM... 3 Section 2: Accessing

More information

Module 7: Multilevel Models for Binary Responses. Practical. Introduction to the Bangladesh Demographic and Health Survey 2004 Dataset.

Module 7: Multilevel Models for Binary Responses. Practical. Introduction to the Bangladesh Demographic and Health Survey 2004 Dataset. Module 7: Multilevel Models for Binary Responses Most of the sections within this module have online quizzes for you to test your understanding. To find the quizzes: Pre-requisites Modules 1-6 Contents

More information

Unit 2 Regression and Correlation 2 of 2 - Practice Problems SOLUTIONS Stata Users

Unit 2 Regression and Correlation 2 of 2 - Practice Problems SOLUTIONS Stata Users Unit 2 Regression and Correlation 2 of 2 - Practice Problems SOLUTIONS Stata Users Data Set for this Assignment: Download from the course website: Stata Users: framingham_1000.dta Source: Levy (1999) National

More information

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

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

More information

CHAPTER 6 ASDA ANALYSIS EXAMPLES REPLICATION SAS V9.2

CHAPTER 6 ASDA ANALYSIS EXAMPLES REPLICATION SAS V9.2 CHAPTER 6 ASDA ANALYSIS EXAMPLES REPLICATION SAS V9.2 GENERAL NOTES ABOUT ANALYSIS EXAMPLES REPLICATION These examples are intended to provide guidance on how to use the commands/procedures for analysis

More information

DAY 2 Advanced comparison of methods of measurements

DAY 2 Advanced comparison of methods of measurements EVALUATION AND COMPARISON OF METHODS OF MEASUREMENTS DAY Advanced comparison of methods of measurements Niels Trolle Andersen and Mogens Erlandsen mogens@biostat.au.dk Department of Biostatistics DAY xtmixed:

More information

RESIDUAL FILES IN HLM OVERVIEW

RESIDUAL FILES IN HLM OVERVIEW HLML09_20120119 RESIDUAL FILES IN HLM Ralph B. Taylor All materials copyright (c) 1998-2012 by Ralph B. Taylor OVERVIEW Residual files in multilevel models where people are grouped into some type of cluster

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

AP Statistics Scope & Sequence

AP Statistics Scope & Sequence AP Statistics Scope & Sequence Grading Period Unit Title Learning Targets Throughout the School Year First Grading Period *Apply mathematics to problems in everyday life *Use a problem-solving model that

More information

Statistical Competencies for Clinical & Translational Science: Evolution in Action

Statistical Competencies for Clinical & Translational Science: Evolution in Action Statistical Competencies for Clinical & Translational Science: Evolution in Action Felicity Enders, PhD Association of Clinical and Translational Statisticians Annual Meeting Boston, MA, August 2, 2014

More information

APPROVED BY: CURRICULUM MASTER S DEGREE MEDICAL DOCTOR THE COMPLETE COURSE OF EDUCATION LASTS FOR 6 YEARS

APPROVED BY: CURRICULUM MASTER S DEGREE MEDICAL DOCTOR THE COMPLETE COURSE OF EDUCATION LASTS FOR 6 YEARS I II III IV V VI Academic Year 2017/18 for all courses APPROVED BY: CURRICULUM MASTER S DEGREE MEDICAL DOCTOR THE COMPLETE COURSE OF EDUCATION LASTS FOR 6 YEARS EXAMS DURING SEMESTER HOURS DISTRIBUTION

More information

Biostatistics 208 Data Exploration

Biostatistics 208 Data Exploration Biostatistics 208 Data Exploration Dave Glidden Professor of Biostatistics Univ. of California, San Francisco January 8, 2008 http://www.biostat.ucsf.edu/biostat208 Organization Office hours by appointment

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

Table. XTMIXED Procedure in STATA with Output Systolic Blood Pressure, use "k:mydirectory,

Table. XTMIXED Procedure in STATA with Output Systolic Blood Pressure, use k:mydirectory, Table XTMIXED Procedure in STATA with Output Systolic Blood Pressure, 2001. use "k:mydirectory,. xtmixed sbp nage20 nage30 nage40 nage50 nage70 nage80 nage90 winter male dept2 edu_bachelor median_household_income

More information

PROPENSITY SCORE MATCHING A PRACTICAL TUTORIAL

PROPENSITY SCORE MATCHING A PRACTICAL TUTORIAL PROPENSITY SCORE MATCHING A PRACTICAL TUTORIAL Cody Chiuzan, PhD Biostatistics, Epidemiology and Research Design (BERD) Lecture March 19, 2018 1 Outline Experimental vs Non-Experimental Study WHEN and

More information

Appendix A Mixed-Effects Models 1. LONGITUDINAL HIERARCHICAL LINEAR MODELS

Appendix A Mixed-Effects Models 1. LONGITUDINAL HIERARCHICAL LINEAR MODELS Appendix A Mixed-Effects Models 1. LONGITUDINAL HIERARCHICAL LINEAR MODELS Hierarchical Linear Models (HLM) provide a flexible and powerful approach when studying response effects that vary by groups.

More information

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

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

More information

Modeling Contextual Data in. Sharon L. Christ Departments of HDFS and Statistics Purdue University

Modeling Contextual Data in. Sharon L. Christ Departments of HDFS and Statistics Purdue University Modeling Contextual Data in the Add Health Sharon L. Christ Departments of HDFS and Statistics Purdue University Talk Outline 1. Review of Add Health Sample Design 2. Modeling Add Health Data a. Multilevel

More information

Telecommunications Churn Analysis Using Cox Regression

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

More information

Hierarchical Linear Modeling: A Primer 1 (Measures Within People) R. C. Gardner Department of Psychology

Hierarchical Linear Modeling: A Primer 1 (Measures Within People) R. C. Gardner Department of Psychology Hierarchical Linear Modeling: A Primer 1 (Measures Within People) R. C. Gardner Department of Psychology As noted previously, Hierarchical Linear Modeling (HLM) can be considered a particular instance

More information

Leveraging Prognostic Baseline Variables in RCT. Precision in Randomized Trials

Leveraging Prognostic Baseline Variables in RCT. Precision in Randomized Trials Leveraging Prognostic Baseline Variables to Gain Precision in Randomized Trials Michael Rosenblum Associate Professor of Biostatistics Johns Hopkins Bloomberg School of Public Health (JHBSPH) Joint work

More information

Latent Growth Curve Analysis. Daniel Boduszek Department of Behavioural and Social Sciences University of Huddersfield, UK

Latent Growth Curve Analysis. Daniel Boduszek Department of Behavioural and Social Sciences University of Huddersfield, UK Latent Growth Curve Analysis Daniel Boduszek Department of Behavioural and Social Sciences University of Huddersfield, UK d.boduszek@hud.ac.uk Outline Introduction to Latent Growth Analysis Amos procedure

More information

Chapter 2 Part 1B. Measures of Location. September 4, 2008

Chapter 2 Part 1B. Measures of Location. September 4, 2008 Chapter 2 Part 1B Measures of Location September 4, 2008 Class will meet in the Auditorium except for Tuesday, October 21 when we meet in 102a. Skill set you should have by the time we complete Chapter

More information

Heterogeneity Random and fixed effects

Heterogeneity Random and fixed effects Heterogeneity Random and fixed effects Georgia Salanti University of Ioannina School of Medicine Ioannina Greece gsalanti@cc.uoi.gr georgia.salanti@gmail.com Outline What is heterogeneity? Identifying

More information

. *increase the memory or there will problems. set memory 40m (40960k)

. *increase the memory or there will problems. set memory 40m (40960k) Exploratory Data Analysis on the Correlation Structure In longitudinal data analysis (and multi-level data analysis) we model two key components of the data: 1. Mean structure. Correlation structure (after

More information

Business Quantitative Analysis [QU1] Examination Blueprint

Business Quantitative Analysis [QU1] Examination Blueprint Business Quantitative Analysis [QU1] Examination Blueprint 2014-2015 Purpose The Business Quantitative Analysis [QU1] examination has been constructed using an examination blueprint. The blueprint, also

More information

Evolve or die: the urgent need to streamline randomized trials

Evolve or die: the urgent need to streamline randomized trials Evolve or die: the urgent need to streamline randomized trials Rory Collins British Heart Foundation Professor of Medicine & Epidemiology Clinical Trial Service Unit & Epidemiological Studies Unit (CTSU),

More information

results. We hope this allows others to better interpret and replicate our findings.

results. We hope this allows others to better interpret and replicate our findings. Supplementary Material This appendix is intended to provide a more detailed description of our data, analysis, and results. We hope this allows others to better interpret and replicate our findings. 1.

More information

Multilevel Modeling and Cross-Cultural Research

Multilevel Modeling and Cross-Cultural Research 11 Multilevel Modeling and Cross-Cultural Research john b. nezlek Cross-cultural psychologists, and other scholars who are interested in the joint effects of cultural and individual-level constructs, often

More information

Soci Statistics for Sociologists

Soci Statistics for Sociologists University of North Carolina Chapel Hill Soci708-001 Statistics for Sociologists Fall 2009 Professor François Nielsen Stata Commands for Module 11 Multiple Regression For further information on any command

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

New NIH Expectations: Are You Ready? David T. Redden, PhD Co-Director, CCTS BERD Chair, Department of Biostatistics

New NIH Expectations: Are You Ready? David T. Redden, PhD Co-Director, CCTS BERD Chair, Department of Biostatistics New NIH Expectations: Are You Ready? David T. Redden, PhD Co-Director, CCTS BERD Chair, Department of Biostatistics NIH Proposed Action Training emphasizing good experimental design. Checklist for analytic

More information

STATISTICS PART Instructor: Dr. Samir Safi Name:

STATISTICS PART Instructor: Dr. Samir Safi Name: STATISTICS PART Instructor: Dr. Samir Safi Name: ID Number: Question #1: (20 Points) For each of the situations described below, state the sample(s) type the statistical technique that you believe is the

More information

Example Analysis with STATA

Example Analysis with STATA Example Analysis with STATA Exploratory Data Analysis Means and Variance by Time and Group Correlation Individual Series Derived Variable Analysis Fitting a Line to Each Subject Summarizing Slopes by Group

More information

Methods for Multilevel Modeling and Design Effects. Sharon L. Christ Departments of HDFS and Statistics Purdue University

Methods for Multilevel Modeling and Design Effects. Sharon L. Christ Departments of HDFS and Statistics Purdue University Methods for Multilevel Modeling and Design Effects Sharon L. Christ Departments of HDFS and Statistics Purdue University Talk Outline 1. Review of Add Health Sample Design 2. Modeling Add Health Data a.

More information

Example Analysis with STATA

Example Analysis with STATA Example Analysis with STATA Exploratory Data Analysis Means and Variance by Time and Group Correlation Individual Series Derived Variable Analysis Fitting a Line to Each Subject Summarizing Slopes by Group

More information

BIOSTATISTICS AND MEDICAL INFORMATICS (B M I)

BIOSTATISTICS AND MEDICAL INFORMATICS (B M I) Biostatistics and Medical Informatics (B M I) 1 BIOSTATISTICS AND MEDICAL INFORMATICS (B M I) B M I/POP HLTH 451 INTRODUCTION TO SAS PROGRAMMING FOR 2 credits. Use of the SAS programming language for the

More information

Using Excel s Analysis ToolPak Add-In

Using Excel s Analysis ToolPak Add-In Using Excel s Analysis ToolPak Add-In Bijay Lal Pradhan, PhD Introduction I have a strong opinions that we can perform different quantitative analysis, including statistical analysis, in Excel. It is powerful,

More information

The SPSS Sample Problem To demonstrate these concepts, we will work the sample problem for logistic regression in SPSS Professional Statistics 7.5, pa

The SPSS Sample Problem To demonstrate these concepts, we will work the sample problem for logistic regression in SPSS Professional Statistics 7.5, pa The SPSS Sample Problem To demonstrate these concepts, we will work the sample problem for logistic regression in SPSS Professional Statistics 7.5, pages 37-64. The description of the problem can be found

More information

Movie Success Prediction PROJECT REPORT. Rakesh Parappa U CS660

Movie Success Prediction PROJECT REPORT. Rakesh Parappa U CS660 Movie Success Prediction PROJECT REPORT Rakesh Parappa U01382090 CS660 Abstract The report entails analyzing different variables like movie budget, actor s Facebook likes, director s Facebook likes and

More information

) ln (GDP t /Hours t ) ln (GDP deflator t ) capacity utilization t ln (Hours t

) ln (GDP t /Hours t ) ln (GDP deflator t ) capacity utilization t ln (Hours t Tutorial on Estimation and Analysis of a VAR November 11, 2004 Christiano This is a tutorial that takes you through the estimation and analysis of the vector autoregression (VAR) used in Altig, Christiano,

More information

Lecture 2a: Model building I

Lecture 2a: Model building I Epidemiology/Biostats VHM 812/802 Course Winter 2015, Atlantic Veterinary College, PEI Javier Sanchez Lecture 2a: Model building I Index Page Predictors (X variables)...2 Categorical predictors...2 Indicator

More information

COMMITTEE FOR MEDICINAL PRODUCTS FOR HUMAN USE (CHMP) DRAFT GUIDELINE ON REPORTING THE RESULTS OF POPULATION PHARMACOKINETIC ANALYSES

COMMITTEE FOR MEDICINAL PRODUCTS FOR HUMAN USE (CHMP) DRAFT GUIDELINE ON REPORTING THE RESULTS OF POPULATION PHARMACOKINETIC ANALYSES European Medicines Agency London, 28 June 2006 Doc. Ref. EMEA/CHMP/EWP/185990/2006 COMMITTEE FOR MEDICINAL PRODUCTS FOR HUMAN USE (CHMP) DRAFT GUIDELINE ON REPORTING THE RESULTS OF POPULATION PHARMACOKINETIC

More information

I am an experienced SAS programmer but I have not used many SAS/STAT procedures

I am an experienced SAS programmer but I have not used many SAS/STAT procedures Which Proc Should I Learn First? A STAT Instructor s Top 5 Modeling Procedures Catherine Truxillo, Ph.D. Manager, Analytical Education SAS Copyright 2010, SAS Institute Inc. All rights reserved. The Target

More information

This chapter will present the research result based on the analysis performed on the

This chapter will present the research result based on the analysis performed on the CHAPTER 4 : RESEARCH RESULT 4.0 INTRODUCTION This chapter will present the research result based on the analysis performed on the data. Some demographic information is presented, following a data cleaning

More information

CREDIT RISK MODELLING Using SAS

CREDIT RISK MODELLING Using SAS Basic Modelling Concepts Advance Credit Risk Model Development Scorecard Model Development Credit Risk Regulatory Guidelines 70 HOURS Practical Learning Live Online Classroom Weekends DexLab Certified

More information

3rd Global Congress On Medical & Clinical Case Reports Theme: Medical & Clinical Exploration By Global Experts About the Conference: Aim

3rd Global Congress On Medical & Clinical Case Reports Theme: Medical & Clinical Exploration By Global Experts About the Conference: Aim 3rd Global Congress On Medical & Clinical Case Reports Theme: Medical & Clinical Exploration By Global Experts About the Conference: Gavin Conferences invites participants from all over the world to attend

More information

Stats Happening May 2016

Stats Happening May 2016 Stats Happening May 2016 1) CSCU Summer Schedule 2) Data Carpentry Workshop at Cornell 3) Summer 2016 CSCU Workshops 4) The ASA s statement on p- values 5) How does R Treat Missing Values? 6) Nonparametric

More information

Organisational Learning Policy

Organisational Learning Policy Policy Authors Name & Title: Dr Mark Jackson, Director of Research & Informatics Scope: Trust Wide Classification: Non-Clinical Replaces: v1.4 To be read in conjunction with the following documents: Risk

More information

VERSION 7.4 Mplus LANGUAGE ADDENDUM

VERSION 7.4 Mplus LANGUAGE ADDENDUM VERSION 7.4 Mplus LANGUAGE ADDENDUM In this addendum, changes introduced in Version 7.4 are described. They include corrections to minor problems that have been found since the release of Version 7.31

More information

Statistics: Data Analysis and Presentation. Fr Clinic II

Statistics: Data Analysis and Presentation. Fr Clinic II Statistics: Data Analysis and Presentation Fr Clinic II Overview Tables and Graphs Populations and Samples Mean, Median, and Standard Deviation Standard Error & 95% Confidence Interval (CI) Error Bars

More information

Supporting Information Identifying translational science through embeddings of controlled vocabularies

Supporting Information Identifying translational science through embeddings of controlled vocabularies Supporting Information Identifying translational science through embeddings of controlled vocabularies Qing Ke Center for Complex Network Research, Northeastern University, Boston, MA 5, USA (Dated: September

More information

Propensity score matching with clustered data in Stata

Propensity score matching with clustered data in Stata Propensity score matching with clustered data in Stata Pompeu Fabra University bruno.arpino@upf.edu https://sites.google.com/site/brunoarpino 11 th Spanish Stata Conference 2018 Barcelona, 24 de octubre

More information

Chapter 3. Database and Research Methodology

Chapter 3. Database and Research Methodology Chapter 3 Database and Research Methodology In research, the research plan needs to be cautiously designed to yield results that are as objective as realistic. It is the main part of a grant application

More information

A SAS Macro to Analyze Data From a Matched or Finely Stratified Case-Control Design

A SAS Macro to Analyze Data From a Matched or Finely Stratified Case-Control Design A SAS Macro to Analyze Data From a Matched or Finely Stratified Case-Control Design Robert A. Vierkant, Terry M. Therneau, Jon L. Kosanke, James M. Naessens Mayo Clinic, Rochester, MN ABSTRACT A matched

More information

TECHNICAL GUIDANCE MANUAL FOR HYDROGEOLOGIC INVESTIGATIONS AND GROUND WATER MONITORING CHAPTER 13 STATISTICS FOR GROUND WATER QUALITY COMPARISON

TECHNICAL GUIDANCE MANUAL FOR HYDROGEOLOGIC INVESTIGATIONS AND GROUND WATER MONITORING CHAPTER 13 STATISTICS FOR GROUND WATER QUALITY COMPARISON TECHNICAL GUIDANCE MANUAL FOR HYDROGEOLOGIC INVESTIGATIONS AND GROUND WATER MONITORING CHAPTER 13 STATISTICS FOR GROUND WATER QUALITY COMPARISON February 1995 TABLE OF CONTENTS BASIC STATISTICAL ASSUMPTIONS...13-1

More information

CHAPTER 8 T Tests. A number of t tests are available, including: The One-Sample T Test The Paired-Samples Test The Independent-Samples T Test

CHAPTER 8 T Tests. A number of t tests are available, including: The One-Sample T Test The Paired-Samples Test The Independent-Samples T Test CHAPTER 8 T Tests A number of t tests are available, including: The One-Sample T Test The Paired-Samples Test The Independent-Samples T Test 8.1. One-Sample T Test The One-Sample T Test procedure: Tests

More information

Multilevel/ Mixed Effects Models: A Brief Overview

Multilevel/ Mixed Effects Models: A Brief Overview Multilevel/ Mixed Effects Models: A Brief Overview Richard Williams, University of Notre Dame, https://www3.nd.edu/~rwilliam/ Last revised March 27, 2018 These notes borrow very heavily, often/usually

More information

CHAPTER 10 REGRESSION AND CORRELATION

CHAPTER 10 REGRESSION AND CORRELATION CHAPTER 10 REGRESSION AND CORRELATION SIMPLE LINEAR REGRESSION: TWO VARIABLES (SECTIONS 10.1 10.3 OF UNDERSTANDABLE STATISTICS) Chapter 10 of Understandable Statistics introduces linear regression. The

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

Biostatistics 208. Lecture 1: Overview & Linear Regression Intro.

Biostatistics 208. Lecture 1: Overview & Linear Regression Intro. Biostatistics 208 Lecture 1: Overview & Linear Regression Intro. Steve Shiboski Division of Biostatistics, UCSF January 8, 2019 1 Organization Office hours by appointment (Mission Hall 2540) E-mail to

More information

Introduction to QTL mapping

Introduction to QTL mapping Introduction to QL mapping in experimental crosses Karl W Broman Department of Biostatistics he Johns Hopkins niversity http://biosun.biostat.jhsph.edu/ kbroman Outline Experiments and data Models ANOVA

More information

Japan s share of research output in basic medical science. Mahbubur Rahman, Junichi Sakamoto and Tsuguya Fukui1

Japan s share of research output in basic medical science. Mahbubur Rahman, Junichi Sakamoto and Tsuguya Fukui1 ORIGINAL ARTICLE Japan s share of research output in basic medical science Mahbubur Rahman, Junichi Sakamoto and Tsuguya Fukui1 Department of Epidemiological and Clinical Research Information Management,

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

Choosíng and Using Statístícs

Choosíng and Using Statístícs CALVIN DYTHA Choosíng and Using Statístícs A Biologist's Guide * Í*[*JI.VE WILEY-BLACKWELL ^ílti * f* - i» This edition first puhlished 2011, 1999, 2003 by Blackwell Science, 2011 by Calvin Dytham Blackvrell

More information

Design of a piezometer network for estimation of the sample variogram of the hydraulic gradient: The role of the instrument

Design of a piezometer network for estimation of the sample variogram of the hydraulic gradient: The role of the instrument WATER RESOURCES RESEARCH, VOL. 33, NO. 11, PAGES 2489-2494 NOVEMBER 1997 Design of a piezometer network for estimation of the sample variogram of the hydraulic gradient: The role of the instrument P.M.

More information

Archives of Scientific Psychology Reporting Questionnaire for Manuscripts Describing Primary Data Collections

Archives of Scientific Psychology Reporting Questionnaire for Manuscripts Describing Primary Data Collections (Based on APA Journal Article Reporting Standards JARS Questionnaire) Archives of Scientific Psychology Reporting Questionnaire for Manuscripts Describing Primary Data Collections JARS: ALL: These questions

More information

GUIDELINES FOR REPORTING STATISTICAL RESULTS

GUIDELINES FOR REPORTING STATISTICAL RESULTS Guidelines for reporting statistical information 1 GUIDELINES FOR REPORTING STATISTICAL RESULTS Introduction When reporting statistical results it is crucial that they are presented in a neat, concise

More information

Timing Production Runs

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

More information

Title: The use of multilevel modelling in economic evaluation alongside multinational trials

Title: The use of multilevel modelling in economic evaluation alongside multinational trials Organised Session Title: The use of multilevel modelling in economic evaluation alongside multinational trials Organiser Mr. Andrea Manca Training Fellow in Health Services Research Centre for Health Economics

More information

Using Mapmaker/QTL for QTL mapping

Using Mapmaker/QTL for QTL mapping Using Mapmaker/QTL for QTL mapping M. Maheswaran Tamil Nadu Agriculture University, Coimbatore Mapmaker/QTL overview A number of methods have been developed to map genes controlling quantitatively measured

More information

Statistical Modelling for Social Scientists. Manchester University. January 20, 21 and 24, Modelling categorical variables using logit models

Statistical Modelling for Social Scientists. Manchester University. January 20, 21 and 24, Modelling categorical variables using logit models Statistical Modelling for Social Scientists Manchester University January 20, 21 and 24, 2011 Graeme Hutcheson, University of Manchester Modelling categorical variables using logit models Software commands

More information

Lancashire Procurement Cluster November 2017

Lancashire Procurement Cluster November 2017 Lancashire Cluster November 2017 The Lancashire Cluster is the new shared collaborative procurement and supply chain service for: Blackpool Teaching Hospitals NHS Foundation Trust; East Lancashire NHS

More information

3rd World Congress on Gynecology, Obstetrics & Reproductive Health

3rd World Congress on Gynecology, Obstetrics & Reproductive Health 3rd World Congress on Gynecology, Obstetrics & Reproductive Health About the Conference: Gavin Conferences invites participants from all over the world to attend 3rd World Congress on Gynecology, Obstetrics

More information

Archives of Scientific Psychology Reporting Questionnaire for Manuscripts Describing Primary Data Collections

Archives of Scientific Psychology Reporting Questionnaire for Manuscripts Describing Primary Data Collections (Based on APA Journal Article Reporting Standards JARS Questionnaire) 1 Archives of Scientific Psychology Reporting Questionnaire for Manuscripts Describing Primary Data Collections JARS: ALL: These questions

More information

STATISTICALLY SIGNIFICANT EXCEEDANCE- UNDERSTANDING FALSE POSITIVE ERROR

STATISTICALLY SIGNIFICANT EXCEEDANCE- UNDERSTANDING FALSE POSITIVE ERROR 2017 World of Coal Ash (WOCA) Conference in Lexington, KY - May 9-11, 2017 http://www.flyash.info/ STATISTICALLY SIGNIFICANT EXCEEDANCE- UNDERSTANDING FALSE POSITIVE ERROR Arun Kammari 1 1 Haley & Aldrich,

More information

Missing Data Handling in Non-Inferiority & Equivalence Trials

Missing Data Handling in Non-Inferiority & Equivalence Trials Missing Data Handling in Non-Inferiority & Equivalence Trials A systematic review Brooke A Rabe Graduate Interdisciplinary Program in Statistics The University of Arizona, Tucson, USA PSI s Pharmaceutical

More information

New Year, New NIH Expectations: Are You Ready?

New Year, New NIH Expectations: Are You Ready? New Year, New NIH Expectations: Are You Ready? Jennifer A. Croker, PhD Admin. Director, CCTS Research Commons David T. Redden, PhD Co-Director, CCTS BERD Chair, Department of Biostatistics December 2,

More information

3rd International Conference on Surgery and Medicine Theme: Emerging Technologies & Advanced Practices in Surgery

3rd International Conference on Surgery and Medicine Theme: Emerging Technologies & Advanced Practices in Surgery 3rd International Conference on Surgery and Medicine Theme: Emerging Technologies & Advanced Practices in Surgery Gavin Conferences invites participants from all over the world to attend 3rd International

More information

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

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

More information

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

Statistical Modelling for Business and Management. J.E. Cairnes School of Business & Economics National University of Ireland Galway.

Statistical Modelling for Business and Management. J.E. Cairnes School of Business & Economics National University of Ireland Galway. Statistical Modelling for Business and Management J.E. Cairnes School of Business & Economics National University of Ireland Galway June 28 30, 2010 Graeme Hutcheson, University of Manchester Luiz Moutinho,

More information

Tutorial #7: LC Segmentation with Ratings-based Conjoint Data

Tutorial #7: LC Segmentation with Ratings-based Conjoint Data Tutorial #7: LC Segmentation with Ratings-based Conjoint Data This tutorial shows how to use the Latent GOLD Choice program when the scale type of the dependent variable corresponds to a Rating as opposed

More information

Module 6 Case Studies in Longitudinal Data Analysis

Module 6 Case Studies in Longitudinal Data Analysis Module 6 Case Studies in Longitudinal Data Analysis Benjamin French, PhD Radiation Effects Research Foundation SISCR 2018 July 24, 2018 Learning objectives This module will focus on the design of longitudinal

More information

Evaluation & Decision Guides

Evaluation & Decision Guides SURGERY STRATEGIC CLINICAL NETWORK EVIDENCE DECISION SUPPORT PROGRAM Evaluation & Decision Guides 2014 Revision (v3) New ideas & Improvements Department of Surgery Evidence Decision Support Program Resource

More information

Module 20 Case Studies in Longitudinal Data Analysis

Module 20 Case Studies in Longitudinal Data Analysis Module 20 Case Studies in Longitudinal Data Analysis Benjamin French, PhD Radiation Effects Research Foundation University of Pennsylvania SISCR 2016 July 29, 2016 Learning objectives This module will

More information

BIOSTATISTICAL METHODS

BIOSTATISTICAL METHODS BIOSTATISTICAL METHODS FOR TRANSLATIONAL & CLINICAL RESEARCH Combination Chemotherapy: DESIGNING CLINICAL RESEARCH Use of a combination of two therapeutics, especially drug-drug combination (called combination

More information

Advanced Quantitative Methods for Health Care Professionals PUBH 742 Spring 2014

Advanced Quantitative Methods for Health Care Professionals PUBH 742 Spring 2014 1 Advanced Quantitative Methods for Health Care Professionals PUBH 742 Spring 2014 Instructor: Joanne M. Garrett, PhD e-mail: joanne_garrett@med.unc.edu Class Notes: Copies of the class lecture slides

More information

Monitoring surgical performance using risk-adjusted cumulative sum charts

Monitoring surgical performance using risk-adjusted cumulative sum charts Biostatistics (2), 1, 4,pp. 441 452 Printed in Great Britain Monitoring surgical performance using risk-adjusted cumulative sum charts STEFAN H. STEINER, RICHARD J. COOK Department of Statistics and Actuarial

More information

Getting Started With PROC LOGISTIC

Getting Started With PROC LOGISTIC Getting Started With PROC LOGISTIC Andrew H. Karp Sierra Information Services, Inc. 19229 Sonoma Hwy. PMB 264 Sonoma, California 95476 707 996 7380 SierraInfo@aol.com www.sierrainformation.com Getting

More information

Simple haplotype analyses in R

Simple haplotype analyses in R Simple haplotype analyses in R Benjamin French, PhD Department of Biostatistics and Epidemiology University of Pennsylvania bcfrench@upenn.edu user! 2011 University of Warwick 18 August 2011 Goals To integrate

More information

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

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

More information

PubHlth 640 Intermediate Biostatistics Unit 2 Regression and Correlation

PubHlth 640 Intermediate Biostatistics Unit 2 Regression and Correlation PubHlth 640 Intermediate Biostatistics Unit 2 Regression and Correlation Multiple Linear Regression Software: Stata v 10.1 Human p53 and Breast Cancer Risk Source: Matthews et al. Parity Induced Protection

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

Working with Stata Inference on proportions

Working with Stata Inference on proportions Working with Stata Inference on proportions Nicola Orsini Biostatistics Team Department of Public Health Sciences Karolinska Institutet Outline Inference on one population proportion Principle of maximum

More information