Chapter 6 Measures of Bivariate Association 1

Size: px
Start display at page:

Download "Chapter 6 Measures of Bivariate Association 1"

Transcription

1 Chapter 6 Measures of Bivariate Association 1 A bivariate relationship involves relationship between two variables. Examples: Relationship between GPA and SAT score Relationship between height and weight Usually we are interested in either a test of statistical significance about the relationship, or a measure of association which indicates the strength of relationship. 2 Chapter 6 Measures of Bivariate Association 1

2 The type of statistic used to measure relationship between two variables depends on the type of variables. The most commonly used statistics are as follows: Predictor Variables(X) Criterion Quantitative Ordinal Nominal Variables Variables (Y) Quantitative Variables Pearson Correlation or Spearman Correlation Spearman Correlation ANOVA Ordinal Spearman Correlation Kruskal Wllias Test Nominal c 2 test 3 Note:Certain assumptions need to hold in each case for the statistic to be valid. Examples: Chi-Square test of independence o Tests independence of two nominal variables. Variable1: Place of residence East,West, Midwest Variable2: Political Party Democrat, Republican, Other Hypothesis: People in Midwest are more likely to belong to the Republican party 4 Chapter 6 Measures of Bivariate Association 2

3 Democrat Republican Other East * * * West * * * Midwest * * * A Sample of registered voters from each region in taken and their political party affiliation is recorded. Spearman Correlation Coefficient Ranking of 100 largest universities -- Intellectual Environment -- Football Program Pearson Correlation -- Income -- Age 5 The symbol for Pearson Correlation is r and is computed as r = ( x i - x)( y i - y ) 2 2 Ø ( y - y ) ( x i º - x) i øß Where x i and y i are observations on two variables. Properties of r: 1) -1 r 1 2) r is unit-less 6 Chapter 6 Measures of Bivariate Association 3

4 When to use r? Both variables must be quantitative Both variables must assume a large number of values Both variables must come from a normally distributed population 7 Interpreting r r can be interpreted only if there is an approximate (or exact) linear relationship between the two variables involved. Sign of r r > 0 r < 0 x and y increase or decrease together x and y increase or decrease in opposite directions. 8 Chapter 6 Measures of Bivariate Association 4

5 Size of r: The closer the absolute value of r to 1, the stronger the linear relationship is (if there is a linear relationship). An r close to zero indicates lack of linear relationship. Rule of Thumb: ± 1 = perfect linear relation ±.8 = strong correlation ±.5 = moderate correlation.2 = weak correlation 0 = no correlation 9 To determine whether there is a linear relationship, it is best to look at the scatter plot of variables: PROC PLOT DATA= data-set-name; PLOT criterion variable* predictor variable;; RUN; Y X 10 Chapter 6 Measures of Bivariate Association 5

6 Summary to determine interpretability of 1) Determine whether each variable is normally distributed, using PROC UNIVARIATE 2) Inspect the scatter plot of variables to see if the relationship is linear, using PROC PLOT 1) If normal and linear, the r is interpretable. LINK: Example1.SAS 11 /* 1.School: Contains the name of each school 2.School_Type: Coded 'LibArts' for liberal arts and 'Univ' for university 3.SAT: Median combined Math and Verbal SAT score of students 4.Acceptance: % of applicants accepted 5.$/Student: Money spent per student in dollars 6.Top 10%: % of students in the top 10% of their h.s. graduating class 7.%PhD: % of faculty at the institution that have PhD degrees 8.Grad%: % of students at institution who eventually graduate */ Options NODATE; DATA EDUCATION; INFILE 'c:/classes/sta5206/notes/chapter6/sas_files/colleges.dat'; INPUT (NAME) (TYPE) (SAT) (ACCEPT) (SPENT) (Top_HS) (PHD) (GRADS) (2.); PROC UNIVARIATE NORMAL; PROC PLOT HPCT=50 VPCT=75; plot SAT*ACCEPT; plot SAT*Top_HS; plot ACCEPT*TOP_HS; Run; 12 Chapter 6 Measures of Bivariate Association 6

7 Tests for Normality Test --Statistic p Value Shapiro-Wilk W Pr < W Kolmogorov-Smirnov D Pr > D > Cramer-von Mises W-Sq Pr > W-Sq > Anderson-Darling A-Sq Pr > A-Sq > Tests for Normality Test --Statistic p Value Shapiro-Wilk W Pr < W Kolmogorov-Smirnov D Pr > D > Cramer-von Mises W-Sq Pr > W-Sq Anderson-Darling A-Sq Pr > A-Sq Tests for Normality Test --Statistic p Value Shapiro-Wilk W Pr < W < Kolmogorov-Smirnov D Pr > D < Cramer-von Mises W-Sq Pr > W-Sq < Anderson-Darling A-Sq Pr > A-Sq < Tests for Normality Test --Statistic p Value Shapiro-Wilk W Pr < W Kolmogorov-Smirnov D Pr > D > Cramer-von Mises W-Sq Pr > W-Sq > Anderson-Darling A-Sq Pr > A-Sq > Chapter 6 Measures of Bivariate Association 7

8 Tests for Normality Test --Statistic p Value Shapiro-Wilk W Pr < W < Kolmogorov-Smirnov D Pr > D < Cramer-von Mises W-Sq Pr > W-Sq < Anderson-Darling A-Sq Pr > A-Sq < Tests for Normality Test --Statistic p Value Shapiro-Wilk W Pr < W Kolmogorov-Smirnov D Pr > D Cramer-von Mises W-Sq Pr > W-Sq Anderson-Darling A-Sq Pr > A-Sq The SAS System 13 Plot of SAT*ACCEPT. A=1, B=2, etc. Plot of SAT*Top_HS. A=1, B=2, etc. SAT SAT 1400 ˆ A 1400 ˆ A B AA A A A A A A A A A A AAA A B A A 1300 ˆ AA A A 1300 ˆ AA A A A A B AA A A AAA A A A A A B A AA A A A A A A A A A A A B A A A A A A A A B B A A A A 1200 ˆ A AAA 1200 ˆ A A A A A A A A A A A A A A 1100 ˆ 1100 ˆ Šˆƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒƒˆ Šˆƒƒƒƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒƒƒƒƒˆƒ ACCEPT Top_HS 16 Chapter 6 Measures of Bivariate Association 8

9 The SAS System 14 Plot of ACCEPT*Top_HS. A=1, B=2, etc. ACCEPT 70 ˆ A A 60 ˆ A A A A A AA A ˆ A 50 A A A A A A A ˆ 40 A A A A A A A A A AA A A 30 ˆ A A A A A A A CA AA A A 20 ˆ A AAA 10 ˆ Šƒˆƒƒƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒƒƒƒˆƒ Top_HS 17 Note: r is not interpretable if the relation between x and y is nonlinear. r 0 Perfect relation r.8 nonlinear relation 18 Chapter 6 Measures of Bivariate Association 9

10 Computing Pearson Correlations PROC CORR DATA=data-set-name Options; VAR variable_1 variable_2 ; RUN; This will produce some standard summary statistics, correlation between variables, and a p-value testing Ho: There is significant correlation between x&y Ha: There is NOT a significant correlation between x&y LINK: Example. SAS 19 /* 1.School: Contains the name of each school 2.School_Type: Coded 'LibArts' for liberal arts and 'Univ' for university 3.SAT: Median combined Math and Verbal SAT score of students 4.Acceptance: % of applicants accepted 5.$/Student: Money spent per student in dollars 6.Top 10%: % of students in the top 10% of their h.s. graduating class 7.%PhD: % of faculty at the institution that have PhD degrees 8.Grad%: % of students at institution who eventually graduate */ Options NODATE; DATA EDUCATION; INFILE 'c:/classes/sta5206/notes/chapter6/sas_files/colleges.dat'; INPUT (NAME) (TYPE) (SAT) (ACCEPT) (SPENT) (Top_HS) (PHD) (GRADS) (2.); PROC CORR; VAR SAT ACCEPT; Run; PROC CORR; VAR SAT ACCEPT TOP_HS; RUN; PROC CORR; VAR SAT; WITH ACCEPT TOP_HS; RUN; 20 Chapter 6 Measures of Bivariate Association 10

11 The SAS System 1 The CORR Procedure 2 Variables: SAT ACCEPT Simple Statistics Variable N Mean Std Dev Sum Minimum Maximum SAT ACCEPT Pearson Correlation Coefficients, N = 50 Prob > r under H0: Rho=0 SAT ACCEPT SAT <.0001 ACCEPT < The SAS System 2 The CORR Procedure 3 Variables: SAT ACCEPT Top_HS Simple Statistics Variable N Mean Std Dev Sum Minimum Maximum SAT ACCEPT Top_HS Pearson Correlation Coefficients, N = 50 Prob > r under H0: Rho=0 SAT ACCEPT Top_HS SAT < ACCEPT <.0001 <.0001 Top_HS < Chapter 6 Measures of Bivariate Association 11

12 The SAS System 3 The CORR Procedure 2 With Variables: ACCEPT Top_HS 1 Variables: SAT Simple Statistics Variable N Mean Std Dev Sum Minimum Maximum ACCEPT Top_HS SAT Pearson Correlation Coefficients, N = 50 Prob > r under H0: Rho=0 SAT ACCEPT <.0001 Top_HS VAR V1 V2 V3; Produces correlations between all pairs VAR V1 V2; With V3 V4 V5 V6 ; Produces correlations between V1 and V2 with V3, V4, V5, V6 (total of8 correlations) The following options may be useful COV: prints covariance between variables NOMISS: Drops all cases with missing values SPEARMAN: Prints spearman correlations 24 Chapter 6 Measures of Bivariate Association 12

13 Spearman Correlations It s often used when at least one variable is ordinal and the other variable is ordinalor quantitative. It s denoted by r s When both variables are quantitative and at least one shows departure from normality, it is better to use r s rather than r. It s a distribution free test. i.e. Does not assume distribution for variables. 25 r s is the ordinary correlation between the ranked values of two variables. In PROC CORR use the option Spearman to produce r s. LINK: Example3.SAS 26 Chapter 6 Measures of Bivariate Association 13

14 /* 1.School: Contains the name of each school 2.School_Type: Coded 'LibArts' for liberal arts and 'Univ' for university 3.SAT: Median combined Math and Verbal SAT score of students 4.Acceptance: % of applicants accepted 5.$/Student: Money spent per student in dollars 6.Top 10%: % of students in the top 10% of their h.s. graduating class 7.%PhD: % of faculty at the institution that have PhD degrees 8.Grad%: % of students at institution who eventually graduate */ Options NODATE; DATA EDUCATION; INFILE 'c:/classes/sta5206/notes/chapter6/sas_files/colleges.dat'; INPUT (NAME) (TYPE) (SAT) (ACCEPT) (SPENT) (Top_HS) (PHD) (GRADS) (2.); PROC CORR SPEARMAN; Run; VAR SPENT PHD; PROC CORR; Run; VAR SPENT PHD; 27 The SAS System 1 The CORR Procedure 2 Variables: SPENT PHD Simple Statistics Variable N Mean Std Dev Median Minimum Maximum SPENT PHD Spearman Correlation Coefficients, N = 50 Prob > r under H0: Rho=0 SPENT PHD SPENT PHD Chapter 6 Measures of Bivariate Association 14

15 The SAS System 2 The CORR Procedure 2 Variables: SPENT PHD Simple Statistics Variable N Mean Std Dev Sum Minimum Maximum SPENT PHD Pearson Correlation Coefficients, N = 50 Prob > r under H0: Rho=0 SPENT PHD SPENT PHD The Chi-square Test of Independence Used to determine whether there is dependence between two classification variables (i.e. Both variables should be assessed on nominal scale) Subjects contributing data should represent a random sample from the population Each subject should fall in the intersection of only one set of variables. 30 Chapter 6 Measures of Bivariate Association 15

16 Data are often summarized in classification tables: Two-way classification table Column Variables CAT 1 CAT 2 CAT c Row Variables CAT 1 Cell (1,1) Cell (1,2) CAT (1,c) CAT 2 Cell (2,1) Cell (2,2) Cell (2,c) CAT r Cell (r,1) Cell (r.2) Cell (r,c) 31 Example: 478 students in grades 4-6 from 3 school districts in Michigan were given a questionnaire to determine which of the following is important to the student: Good Grades Athletic Ability Popularity Among other things, the questionnaire also asks for gender, grade level, race, and other demographic information LINK: Example4.SAS 32 Chapter 6 Measures of Bivariate Association 16

17 data pop_kids; infile 'c:/classes/sta5206/notes/chapter6/sas_files/popkids. dat'; input Gender$ Grade Age Race$ Urban_Rural$ School$ Goals$ Grades Sports Looks Money; proc print; *proc freq; * table Gender*Goals; run; * table Race*Goals; 33 The SAS System 00:13 Wednesday, October 4, Urban_ Obs Gender Grade Age Race Rural School Goals Grades Sports Looks Money 1 boy 5 11 White Rural Elm Sports boy 5 10 White Rural Elm Popular girl 5 11 White Rural Elm Popular girl 5 11 White Rural Elm Popular girl 5 10 White Rural Elm Popular girl 5 11 White Rural Elm Popular girl 5 10 White Rural Elm Popular girl 5 10 White Rural Elm Grades girl 5 10 White Rural Elm Sports girl 5 10 White Rural Elm Sports girl 5 11 White Rural Elm Sports girl 4 10 White Rural Elm Grades boy 4 9 White Rural Elm Popular boy 4 9 White Rural Elm Popular boy 4 9 Other Rural Elm Popular girl 4 9 White Rural Elm Grades girl 4 9 White Rural Elm Sports girl 4 9 White Rural Elm Popular girl 4 9 White Rural Elm Grades girl 4 9 White Rural Elm Sports girl 4 9 White Rural Elm Popular girl 4 9 White Suburban Brentwoo Grades girl 4 9 White Suburban Brentwoo Popular Chapter 6 Measures of Bivariate Association 17

18 Using this data the following classification tables were obtained: GOALS GENDER Grades Popular Sports Boy Girl The Chi-square test can be used to test whether there is a dependence between variable Goals and Gender. Inspecting each column of the table there seems to be differences. The question is whether these differences are statistically significant. 36 Chapter 6 Measures of Bivariate Association 18

19 USING SAS: PROC FREQ DATA data-set-name ; TABLES row-variable-name* column-variable-name options; WEIGHT number-variable-name; RUN; Example: LINK: Example5.SAS 37 data pop_kids; input Gender$ Goals$ Frequency; cards; Boy Grades 117 Boy Popular 50 Boy Sports 60 Girl Grades 130 Girl Popular 91 Girl Sports 30 ; proc freq; tables Gender*Goals /chisq expected exact; Weight frequency; run; 38 Chapter 6 Measures of Bivariate Association 19

20 The SAS System 00:13 Wednesday, October 4, The FREQ Procedure Table of Gender by Goals Gender Goals Frequency Expected Should be larger than 5 Percent Row Pct Col Pct Grades Popular Sports Total ƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒˆ # of boys Boy ƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒˆ Girl # of girls ƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒˆ Total Expected frequency should be larger than 5 39 Statistics for Table of Gender by Goals Statistic DF Value Prob ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ Chi-Square <.0001 Likelihood Ratio Chi-Square <.0001 Mantel-Haenszel Chi-Square Phi Coefficient Contingency Coefficient Cramer's V Fisher's Exact Test ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ Table Probability (P) 1.625E-07 Pr <= P 2.088E-05 Sample Size = 478 Small p-value indicates dependence Fisher s exact test is used when the sample size is small 40 Chapter 6 Measures of Bivariate Association 20

21 Raw data can also be used on input. LINK: Example6.SAS 41 Chapter 6 Measures of Bivariate Association 21

NEUROBLASTOMA DATA -- TWO GROUPS -- QUANTITATIVE MEASURES 38 15:37 Saturday, January 25, 2003

NEUROBLASTOMA DATA -- TWO GROUPS -- QUANTITATIVE MEASURES 38 15:37 Saturday, January 25, 2003 NEUROBLASTOMA DATA -- TWO GROUPS -- QUANTITATIVE MEASURES 38 15:37 Saturday, January 25, 2003 Obs GROUP I DOPA LNDOPA 1 neurblst 1 48.000 1.68124 2 neurblst 1 133.000 2.12385 3 neurblst 1 34.000 1.53148

More information

Basic Biostatistics. Chapter 1. Content

Basic Biostatistics. Chapter 1. Content Chapter 1 Basic Biostatistics Jamalludin Ab Rahman MD MPH Department of Community Medicine Kulliyyah of Medicine Content 2 Basic premises variables, level of measurements, probability distribution Descriptive

More information

Chapter 14: More Powerful Statistical Methods

Chapter 14: More Powerful Statistical Methods Chapter 14: More Powerful Statistical Methods Most questions will be on correlation and regression analysis, but I would like you to know just basically what cluster analysis, factor analysis, and conjoint

More information

Analysis and Interpretation of Data Part 1

Analysis and Interpretation of Data Part 1 Analysis and Interpretation of Data Part 1 DATA ANALYSIS: PRELIMINARY STEPS 1. Editing Field Edit Completeness Legibility Comprehensibility Consistency Uniformity Central Office Edit 2. Coding Specifying

More information

Statistics as a Tool. A set of tools for collecting, organizing, presenting and analyzing numerical facts or observations.

Statistics as a Tool. A set of tools for collecting, organizing, presenting and analyzing numerical facts or observations. Statistics as a Tool A set of tools for collecting, organizing, presenting and analyzing numerical facts or observations. Descriptive Statistics Numerical facts or observations that are organized describe

More information

Correlational Research. Correlational Research. Stephen E. Brock, Ph.D., NCSP EDS 250. Descriptive Research 1. Correlational Research: Scatter Plots

Correlational Research. Correlational Research. Stephen E. Brock, Ph.D., NCSP EDS 250. Descriptive Research 1. Correlational Research: Scatter Plots Correlational Research Stephen E. Brock, Ph.D., NCSP California State University, Sacramento 1 Correlational Research A quantitative methodology used to determine whether, and to what degree, a relationship

More information

Lecture (chapter 12): Bivariate association for nominal- and ordinal-level variables

Lecture (chapter 12): Bivariate association for nominal- and ordinal-level variables Lecture (chapter 12): Bivariate association for nominal- and ordinal-level variables Ernesto F. L. Amaral April 2 4, 2018 Advanced Methods of Social Research (SOCI 420) Source: Healey, Joseph F. 2015.

More information

Sociology 4 Winter PART ONE -- Based on Baker, Doing Social Research, pp , and lecture. Circle the one best answer for each.

Sociology 4 Winter PART ONE -- Based on Baker, Doing Social Research, pp , and lecture. Circle the one best answer for each. Sociology 4 Winter 2006 Assignment #2 NAME Discussion Section Time PART ONE -- Based on Baker, Doing Social Research, pp. 102-131, and lecture. Circle the one best answer for each. 1. A definition which

More information

On the purpose of testing:

On the purpose of testing: Why Evaluation & Assessment is Important Feedback to students Feedback to teachers Information to parents Information for selection and certification Information for accountability Incentives to increase

More information

Midterm Exam ANSWERS Categorical Data Analysis, CHL5407H

Midterm Exam ANSWERS Categorical Data Analysis, CHL5407H Midterm Exam ANSWERS Categorical Data Analysis, CHL5407H 1. Data from a survey of women s attitudes towards mammography are provided in Table 1. Women were classified by their experience with mammography

More information

Overview of Non-Parametric Statistics

Overview of Non-Parametric Statistics Overview of Non-Parametric Statistics LISA Short Course Series Mark Seiss, Dept. of Statistics April 7, 2009 Presentation Outline 1. Homework 2. Review of Parametric Statistics 3. Overview Non-Parametric

More information

Unit 7 Comparisons and Relationships

Unit 7 Comparisons and Relationships Unit 7 Comparisons and Relationships Objectives: To understand the distinction between making a comparison and describing a relationship To select appropriate graphical displays for making comparisons

More information

11/18/2013. Correlational Research. Correlational Designs. Why Use a Correlational Design? CORRELATIONAL RESEARCH STUDIES

11/18/2013. Correlational Research. Correlational Designs. Why Use a Correlational Design? CORRELATIONAL RESEARCH STUDIES Correlational Research Correlational Designs Correlational research is used to describe the relationship between two or more naturally occurring variables. Is age related to political conservativism? Are

More information

CHAPTER ONE CORRELATION

CHAPTER ONE CORRELATION CHAPTER ONE CORRELATION 1.0 Introduction The first chapter focuses on the nature of statistical data of correlation. The aim of the series of exercises is to ensure the students are able to use SPSS to

More information

SOME NOTES ON STATISTICAL INTERPRETATION

SOME NOTES ON STATISTICAL INTERPRETATION 1 SOME NOTES ON STATISTICAL INTERPRETATION Below I provide some basic notes on statistical interpretation. These are intended to serve as a resource for the Soci 380 data analysis. The information provided

More information

STAT Factor Analysis in SAS

STAT Factor Analysis in SAS STAT 5600 Factor Analysis in SAS The data for this example come from the decathlon results in the 1988 Olympics. The decathlon is a two-day competition, with the 100 m race, long jump, shot put, high jump,

More information

Day 11: Measures of Association and ANOVA

Day 11: Measures of Association and ANOVA Day 11: Measures of Association and ANOVA Daniel J. Mallinson School of Public Affairs Penn State Harrisburg mallinson@psu.edu PADM-HADM 503 Mallinson Day 11 November 2, 2017 1 / 45 Road map Measures of

More information

Business Research Methods. Introduction to Data Analysis

Business Research Methods. Introduction to Data Analysis Business Research Methods Introduction to Data Analysis Data Analysis Process STAGES OF DATA ANALYSIS EDITING CODING DATA ENTRY ERROR CHECKING AND VERIFICATION DATA ANALYSIS Introduction Preparation of

More information

Statistical Methods and Reasoning for the Clinical Sciences

Statistical Methods and Reasoning for the Clinical Sciences Statistical Methods and Reasoning for the Clinical Sciences Evidence-Based Practice Eiki B. Satake, PhD Contents Preface Introduction to Evidence-Based Statistics: Philosophical Foundation and Preliminaries

More information

CHAPTER 2. MEASURING AND DESCRIBING VARIABLES

CHAPTER 2. MEASURING AND DESCRIBING VARIABLES 4 Chapter 2 CHAPTER 2. MEASURING AND DESCRIBING VARIABLES 1. A. Age: name/interval; military dictatorship: value/nominal; strongly oppose: value/ ordinal; election year: name/interval; 62 percent: value/interval;

More information

11/24/2017. Do not imply a cause-and-effect relationship

11/24/2017. Do not imply a cause-and-effect relationship Correlational research is used to describe the relationship between two or more naturally occurring variables. Is age related to political conservativism? Are highly extraverted people less afraid of rejection

More information

List of Figures. List of Tables. Preface to the Second Edition. Preface to the First Edition

List of Figures. List of Tables. Preface to the Second Edition. Preface to the First Edition List of Figures List of Tables Preface to the Second Edition Preface to the First Edition xv xxv xxix xxxi 1 What Is R? 1 1.1 Introduction to R................................ 1 1.2 Downloading and Installing

More information

Effect of Source and Level of Protein on Weight Gain of Rats

Effect of Source and Level of Protein on Weight Gain of Rats Effect of Source and Level of Protein on of Rats 1 * two factor analysis of variance with interaction; 2 option ls=120 ps=75 nocenter nodate; 3 4 title Effect of Source of Protein and Level of Protein

More information

Chapter 9. Factorial ANOVA with Two Between-Group Factors 10/22/ Factorial ANOVA with Two Between-Group Factors

Chapter 9. Factorial ANOVA with Two Between-Group Factors 10/22/ Factorial ANOVA with Two Between-Group Factors Chapter 9 Factorial ANOVA with Two Between-Group Factors 10/22/2001 1 Factorial ANOVA with Two Between-Group Factors Recall that in one-way ANOVA we study the relation between one criterion variable and

More information

POLS 5377 Scope & Method of Political Science. Correlation within SPSS. Key Questions: How to compute and interpret the following measures in SPSS

POLS 5377 Scope & Method of Political Science. Correlation within SPSS. Key Questions: How to compute and interpret the following measures in SPSS POLS 5377 Scope & Method of Political Science Week 15 Measure of Association - 2 Correlation within SPSS 2 Key Questions: How to compute and interpret the following measures in SPSS Ordinal Variable Gamma

More information

Selecting the Right Data Analysis Technique

Selecting the Right Data Analysis Technique Selecting the Right Data Analysis Technique Levels of Measurement Nominal Ordinal Interval Ratio Discrete Continuous Continuous Variable Borgatta and Bohrnstedt state that "the most of central constructs

More information

Figure: Presentation slides:

Figure:  Presentation slides: Joni Lakin David Shannon Margaret Ross Abbot Packard Auburn University Auburn University Auburn University University of West Georgia Figure: http://www.auburn.edu/~jml0035/eera_chart.pdf Presentation

More information

Choosing the Correct Statistical Test

Choosing the Correct Statistical Test Choosing the Correct Statistical Test T racie O. Afifi, PhD Departments of Community Health Sciences & Psychiatry University of Manitoba Department of Community Health Sciences COLLEGE OF MEDICINE, FACULTY

More information

Lecture (chapter 1): Introduction

Lecture (chapter 1): Introduction Lecture (chapter 1): Introduction Ernesto F. L. Amaral January 17, 2018 Advanced Methods of Social Research (SOCI 420) Source: Healey, Joseph F. 2015. Statistics: A Tool for Social Research. Stamford:

More information

Ashwini S Erande MPH, Shaista Malik MD University of California Irvine, Orange, California

Ashwini S Erande MPH, Shaista Malik MD University of California Irvine, Orange, California The Association of Morbid Obesity with Mortality and Coronary Revascularization among Patients with Acute Myocardial Infarction using ARRAYS, PROC FREQ and PROC LOGISTIC ABSTRACT Ashwini S Erande MPH,

More information

HZAU MULTIVARIATE HOMEWORK #2 MULTIPLE AND STEPWISE LINEAR REGRESSION

HZAU MULTIVARIATE HOMEWORK #2 MULTIPLE AND STEPWISE LINEAR REGRESSION HZAU MULTIVARIATE HOMEWORK #2 MULTIPLE AND STEPWISE LINEAR REGRESSION Using the malt quality dataset on the class s Web page: 1. Determine the simple linear correlation of extract with the remaining variables.

More information

Psych 5741/5751: Data Analysis University of Boulder Gary McClelland & Charles Judd. Exam #2, Spring 1992

Psych 5741/5751: Data Analysis University of Boulder Gary McClelland & Charles Judd. Exam #2, Spring 1992 Exam #2, Spring 1992 Question 1 A group of researchers from a neurobehavioral institute are interested in the relationships that have been found between the amount of cerebral blood flow (CB FLOW) to the

More information

REVIEW ARTICLE. A Review of Inferential Statistical Methods Commonly Used in Medicine

REVIEW ARTICLE. A Review of Inferential Statistical Methods Commonly Used in Medicine A Review of Inferential Statistical Methods Commonly Used in Medicine JCD REVIEW ARTICLE A Review of Inferential Statistical Methods Commonly Used in Medicine Kingshuk Bhattacharjee a a Assistant Manager,

More information

Applications. DSC 410/510 Multivariate Statistical Methods. Discriminating Two Groups. What is Discriminant Analysis

Applications. DSC 410/510 Multivariate Statistical Methods. Discriminating Two Groups. What is Discriminant Analysis DSC 4/5 Multivariate Statistical Methods Applications DSC 4/5 Multivariate Statistical Methods Discriminant Analysis Identify the group to which an object or case (e.g. person, firm, product) belongs:

More information

Chapter Eight: Multivariate Analysis

Chapter Eight: Multivariate Analysis Chapter Eight: Multivariate Analysis Up until now, we have covered univariate ( one variable ) analysis and bivariate ( two variables ) analysis. We can also measure the simultaneous effects of two or

More information

Applied Medical. Statistics Using SAS. Geoff Der. Brian S. Everitt. CRC Press. Taylor Si Francis Croup. Taylor & Francis Croup, an informa business

Applied Medical. Statistics Using SAS. Geoff Der. Brian S. Everitt. CRC Press. Taylor Si Francis Croup. Taylor & Francis Croup, an informa business Applied Medical Statistics Using SAS Geoff Der Brian S. Everitt CRC Press Taylor Si Francis Croup Boca Raton London New York CRC Press is an imprint of the Taylor & Francis Croup, an informa business A

More information

1. Objective: analyzing CD4 counts data using GEE marginal model and random effects model. Demonstrate the analysis using SAS and STATA.

1. Objective: analyzing CD4 counts data using GEE marginal model and random effects model. Demonstrate the analysis using SAS and STATA. LDA lab Feb, 6 th, 2002 1 1. Objective: analyzing CD4 counts data using GEE marginal model and random effects model. Demonstrate the analysis using SAS and STATA. 2. Scientific question: estimate the average

More information

Business Statistics Probability

Business Statistics Probability Business Statistics The following was provided by Dr. Suzanne Delaney, and is a comprehensive review of Business Statistics. The workshop instructor will provide relevant examples during the Skills Assessment

More information

Statistics Guide. Prepared by: Amanda J. Rockinson- Szapkiw, Ed.D.

Statistics Guide. Prepared by: Amanda J. Rockinson- Szapkiw, Ed.D. This guide contains a summary of the statistical terms and procedures. This guide can be used as a reference for course work and the dissertation process. However, it is recommended that you refer to statistical

More information

10. Introduction to Multivariate Relationships

10. Introduction to Multivariate Relationships 10. Introduction to Multivariate Relationships Bivariate analyses are informative, but we usually need to take into account many variables. Many explanatory variables have an influence on any particular

More information

Linear Regression in SAS

Linear Regression in SAS 1 Suppose we wish to examine factors that predict patient s hemoglobin levels. Simulated data for six patients is used throughout this tutorial. data hgb_data; input id age race $ bmi hgb; cards; 21 25

More information

Today: Binomial response variable with an explanatory variable on an ordinal (rank) scale.

Today: Binomial response variable with an explanatory variable on an ordinal (rank) scale. Model Based Statistics in Biology. Part V. The Generalized Linear Model. Single Explanatory Variable on an Ordinal Scale ReCap. Part I (Chapters 1,2,3,4), Part II (Ch 5, 6, 7) ReCap Part III (Ch 9, 10,

More information

Hungry Mice. NP: Mice in this group ate as much as they pleased of a non-purified, standard diet for laboratory mice.

Hungry Mice. NP: Mice in this group ate as much as they pleased of a non-purified, standard diet for laboratory mice. Hungry Mice When laboratory mice (and maybe other animals) are fed a nutritionally adequate but near-starvation diet, they may live longer on average than mice that eat a normal amount of food. In this

More information

bivariate analysis: The statistical analysis of the relationship between two variables.

bivariate analysis: The statistical analysis of the relationship between two variables. bivariate analysis: The statistical analysis of the relationship between two variables. cell frequency: The number of cases in a cell of a cross-tabulation (contingency table). chi-square (χ 2 ) test for

More information

Results & Statistics: Description and Correlation. I. Scales of Measurement A Review

Results & Statistics: Description and Correlation. I. Scales of Measurement A Review Results & Statistics: Description and Correlation The description and presentation of results involves a number of topics. These include scales of measurement, descriptive statistics used to summarize

More information

Choosing a Significance Test. Student Resource Sheet

Choosing a Significance Test. Student Resource Sheet Choosing a Significance Test Student Resource Sheet Choosing Your Test Choosing an appropriate type of significance test is a very important consideration in analyzing data. If an inappropriate test is

More information

3 CONCEPTUAL FOUNDATIONS OF STATISTICS

3 CONCEPTUAL FOUNDATIONS OF STATISTICS 3 CONCEPTUAL FOUNDATIONS OF STATISTICS In this chapter, we examine the conceptual foundations of statistics. The goal is to give you an appreciation and conceptual understanding of some basic statistical

More information

Announcement. Homework #2 due next Friday at 5pm. Midterm is in 2 weeks. It will cover everything through the end of next week (week 5).

Announcement. Homework #2 due next Friday at 5pm. Midterm is in 2 weeks. It will cover everything through the end of next week (week 5). Announcement Homework #2 due next Friday at 5pm. Midterm is in 2 weeks. It will cover everything through the end of next week (week 5). Political Science 15 Lecture 8: Descriptive Statistics (Part 1) Data

More information

Chapter Eight: Multivariate Analysis

Chapter Eight: Multivariate Analysis Chapter Eight: Multivariate Analysis Up until now, we have covered univariate ( one variable ) analysis and bivariate ( two variables ) analysis. We can also measure the simultaneous effects of two or

More information

Lessons in biostatistics

Lessons in biostatistics Lessons in biostatistics The test of independence Mary L. McHugh Department of Nursing, School of Health and Human Services, National University, Aero Court, San Diego, California, USA Corresponding author:

More information

Prepared by: Assoc. Prof. Dr Bahaman Abu Samah Department of Professional Development and Continuing Education Faculty of Educational Studies

Prepared by: Assoc. Prof. Dr Bahaman Abu Samah Department of Professional Development and Continuing Education Faculty of Educational Studies Prepared by: Assoc. Prof. Dr Bahaman Abu Samah Department of Professional Development and Continuing Education Faculty of Educational Studies Universiti Putra Malaysia Serdang At the end of this session,

More information

Lab #7: Confidence Intervals-Hypothesis Testing (2)-T Test

Lab #7: Confidence Intervals-Hypothesis Testing (2)-T Test A. Objectives: Lab #7: Confidence Intervals-Hypothesis Testing (2)-T Test 1. Subsetting based on variable 2. Explore Normality 3. Explore Hypothesis testing using T-Tests Confidence intervals and initial

More information

Still important ideas

Still important ideas Readings: OpenStax - Chapters 1 11 + 13 & Appendix D & E (online) Plous - Chapters 2, 3, and 4 Chapter 2: Cognitive Dissonance, Chapter 3: Memory and Hindsight Bias, Chapter 4: Context Dependence Still

More information

STA 3024 Spring 2013 EXAM 3 Test Form Code A UF ID #

STA 3024 Spring 2013 EXAM 3 Test Form Code A UF ID # STA 3024 Spring 2013 Name EXAM 3 Test Form Code A UF ID # Instructions: This exam contains 34 Multiple Choice questions. Each question is worth 3 points, for a total of 102 points (there are TWO bonus

More information

Content. Basic Statistics and Data Analysis for Health Researchers from Foreign Countries. Research question. Example Newly diagnosed Type 2 Diabetes

Content. Basic Statistics and Data Analysis for Health Researchers from Foreign Countries. Research question. Example Newly diagnosed Type 2 Diabetes Content Quantifying association between continuous variables. Basic Statistics and Data Analysis for Health Researchers from Foreign Countries Volkert Siersma siersma@sund.ku.dk The Research Unit for General

More information

Describe what is meant by a placebo Contrast the double-blind procedure with the single-blind procedure Review the structure for organizing a memo

Describe what is meant by a placebo Contrast the double-blind procedure with the single-blind procedure Review the structure for organizing a memo Please note the page numbers listed for the Lind book may vary by a page or two depending on which version of the textbook you have. Readings: Lind 1 11 (with emphasis on chapters 10, 11) Please note chapter

More information

NORTH SOUTH UNIVERSITY TUTORIAL 2

NORTH SOUTH UNIVERSITY TUTORIAL 2 NORTH SOUTH UNIVERSITY TUTORIAL 2 AHMED HOSSAIN,PhD Data Management and Analysis AHMED HOSSAIN,PhD - Data Management and Analysis 1 Correlation Analysis INTRODUCTION In correlation analysis, we estimate

More information

Types of Statistics. Censored data. Files for today (June 27) Lecture and Homework INTRODUCTION TO BIOSTATISTICS. Today s Outline

Types of Statistics. Censored data. Files for today (June 27) Lecture and Homework INTRODUCTION TO BIOSTATISTICS. Today s Outline INTRODUCTION TO BIOSTATISTICS FOR GRADUATE AND MEDICAL STUDENTS Files for today (June 27) Lecture and Homework Descriptive Statistics and Graphically Visualizing Data Lecture #2 (1 file) PPT presentation

More information

SUMMER 2011 RE-EXAM PSYF11STAT - STATISTIK

SUMMER 2011 RE-EXAM PSYF11STAT - STATISTIK SUMMER 011 RE-EXAM PSYF11STAT - STATISTIK Full Name: Årskortnummer: Date: This exam is made up of three parts: Part 1 includes 30 multiple choice questions; Part includes 10 matching questions; and Part

More information

STATISTICAL METHODS FOR DIAGNOSTIC TESTING: AN ILLUSTRATION USING A NEW METHOD FOR CANCER DETECTION XIN SUN. PhD, Kansas State University, 2012

STATISTICAL METHODS FOR DIAGNOSTIC TESTING: AN ILLUSTRATION USING A NEW METHOD FOR CANCER DETECTION XIN SUN. PhD, Kansas State University, 2012 STATISTICAL METHODS FOR DIAGNOSTIC TESTING: AN ILLUSTRATION USING A NEW METHOD FOR CANCER DETECTION by XIN SUN PhD, Kansas State University, 2012 A THESIS Submitted in partial fulfillment of the requirements

More information

Regression. Lelys Bravo de Guenni. April 24th, 2015

Regression. Lelys Bravo de Guenni. April 24th, 2015 Regression Lelys Bravo de Guenni April 24th, 2015 Outline Regression Simple Linear Regression Prediction of an individual value Estimate Percentile Ranks Regression Simple Linear Regression The idea behind

More information

DATA GATHERING. Define : Is a process of collecting data from sample, so as for testing & analyzing before reporting research findings.

DATA GATHERING. Define : Is a process of collecting data from sample, so as for testing & analyzing before reporting research findings. DATA GATHERING Define : Is a process of collecting data from sample, so as for testing & analyzing before reporting research findings. 2012 John Wiley & Sons Ltd. Measurement Measurement: the assignment

More information

Class 7 Everything is Related

Class 7 Everything is Related Class 7 Everything is Related Correlational Designs l 1 Topics Types of Correlational Designs Understanding Correlation Reporting Correlational Statistics Quantitative Designs l 2 Types of Correlational

More information

Summary & Conclusion. Lecture 10 Survey Research & Design in Psychology James Neill, 2016 Creative Commons Attribution 4.0

Summary & Conclusion. Lecture 10 Survey Research & Design in Psychology James Neill, 2016 Creative Commons Attribution 4.0 Summary & Conclusion Lecture 10 Survey Research & Design in Psychology James Neill, 2016 Creative Commons Attribution 4.0 Overview 1. Survey research and design 1. Survey research 2. Survey design 2. Univariate

More information

Example of Interpreting and Applying a Multiple Regression Model

Example of Interpreting and Applying a Multiple Regression Model Example of Interpreting and Applying a Multiple Regression We'll use the same data set as for the bivariate correlation example -- the criterion is 1 st year graduate grade point average and the predictors

More information

Introduction to Quantitative Methods (SR8511) Project Report

Introduction to Quantitative Methods (SR8511) Project Report Introduction to Quantitative Methods (SR8511) Project Report Exploring the variables related to and possibly affecting the consumption of alcohol by adults Student Registration number: 554561 Word counts

More information

Chapter 7: Descriptive Statistics

Chapter 7: Descriptive Statistics Chapter Overview Chapter 7 provides an introduction to basic strategies for describing groups statistically. Statistical concepts around normal distributions are discussed. The statistical procedures of

More information

Omnibus Poll April 11-12, 2013

Omnibus Poll April 11-12, 2013 1. Feminist or anti-feminist Do you consider yourself a feminist, an anti-feminist, or neither? Gender Age Party ID Voter Registration Total Male Female 18-29 30-44 45-64 65+ Democrat Independent Republican

More information

Study Guide #2: MULTIPLE REGRESSION in education

Study Guide #2: MULTIPLE REGRESSION in education Study Guide #2: MULTIPLE REGRESSION in education What is Multiple Regression? When using Multiple Regression in education, researchers use the term independent variables to identify those variables that

More information

STATISTICS AND RESEARCH DESIGN

STATISTICS AND RESEARCH DESIGN Statistics 1 STATISTICS AND RESEARCH DESIGN These are subjects that are frequently confused. Both subjects often evoke student anxiety and avoidance. To further complicate matters, both areas appear have

More information

Student name: SOCI 420 Advanced Methods of Social Research Fall 2017

Student name: SOCI 420 Advanced Methods of Social Research Fall 2017 SOCI 420 Advanced Methods of Social Research Fall 2017 EXAM 1 RUBRIC Instructor: Ernesto F. L. Amaral, Assistant Professor, Department of Sociology Date: October 12, 2017 (Thursday) Section 903: 9:35 10:50am

More information

2. Scientific question: Determine whether there is a difference between boys and girls with respect to the distance and its change over time.

2. Scientific question: Determine whether there is a difference between boys and girls with respect to the distance and its change over time. LDA lab Feb, 11 th, 2002 1 1. Objective:analyzing dental data using ordinary least square (OLS) and Generalized Least Square(GLS) in STATA. 2. Scientific question: Determine whether there is a difference

More information

Student name: SOCI 420 Advanced Methods of Social Research Fall 2017

Student name: SOCI 420 Advanced Methods of Social Research Fall 2017 SOCI 420 Advanced Methods of Social Research Fall 2017 EXAM 1 RUBRIC Instructor: Ernesto F. L. Amaral, Assistant Professor, Department of Sociology Date: October 12, 2017 (Thursday) Section 904: 2:20 3:35pm

More information

How to describe bivariate data

How to describe bivariate data Statistics Corner How to describe bivariate data Alessandro Bertani 1, Gioacchino Di Paola 2, Emanuele Russo 1, Fabio Tuzzolino 2 1 Department for the Treatment and Study of Cardiothoracic Diseases and

More information

Daniel Boduszek University of Huddersfield

Daniel Boduszek University of Huddersfield Daniel Boduszek University of Huddersfield d.boduszek@hud.ac.uk Introduction to Correlation SPSS procedure for Pearson r Interpretation of SPSS output Presenting results Partial Correlation Correlation

More information

Still important ideas

Still important ideas Readings: OpenStax - Chapters 1 13 & Appendix D & E (online) Plous Chapters 17 & 18 - Chapter 17: Social Influences - Chapter 18: Group Judgments and Decisions Still important ideas Contrast the measurement

More information

CHAPTER - 6 STATISTICAL ANALYSIS. This chapter discusses inferential statistics, which use sample data to

CHAPTER - 6 STATISTICAL ANALYSIS. This chapter discusses inferential statistics, which use sample data to CHAPTER - 6 STATISTICAL ANALYSIS 6.1 Introduction This chapter discusses inferential statistics, which use sample data to make decisions or inferences about population. Populations are group of interest

More information

Reveal Relationships in Categorical Data

Reveal Relationships in Categorical Data SPSS Categories 15.0 Specifications Reveal Relationships in Categorical Data Unleash the full potential of your data through perceptual mapping, optimal scaling, preference scaling, and dimension reduction

More information

Neighborhood Questionnaire Grade 11 /Year 12. Fast Track Project Technical Report Anne Corrigan April 24, 2003

Neighborhood Questionnaire Grade 11 /Year 12. Fast Track Project Technical Report Anne Corrigan April 24, 2003 Neighborhood Questionnaire Grade 11 /Year 12 Fast Track Project Technical Report Anne Corrigan April 24, 2003 Table of Contents I. Scale Description II. Report Sample III. Scaling IV. Differences Between

More information

Research Manual STATISTICAL ANALYSIS SECTION. By: Curtis Lauterbach 3/7/13

Research Manual STATISTICAL ANALYSIS SECTION. By: Curtis Lauterbach 3/7/13 Research Manual STATISTICAL ANALYSIS SECTION By: Curtis Lauterbach 3/7/13 TABLE OF CONTENTS INTRODUCTION 1 STATISTICAL ANALYSIS 1 Overview 1 Dependent Variable 1 Independent Variable 1 Interval 1 Ratio

More information

1. You want to find out what factors predict achievement in English. Develop a model that

1. You want to find out what factors predict achievement in English. Develop a model that Questions and answers for Chapter 10 1. You want to find out what factors predict achievement in English. Develop a model that you think can explain this. As usual many alternative predictors are possible

More information

isc ove ring i Statistics sing SPSS

isc ove ring i Statistics sing SPSS isc ove ring i Statistics sing SPSS S E C O N D! E D I T I O N (and sex, drugs and rock V roll) A N D Y F I E L D Publications London o Thousand Oaks New Delhi CONTENTS Preface How To Use This Book Acknowledgements

More information

1. Below is the output of a 2 (gender) x 3(music type) completely between subjects factorial ANOVA on stress ratings

1. Below is the output of a 2 (gender) x 3(music type) completely between subjects factorial ANOVA on stress ratings SPSS 3 Practice Interpretation questions A researcher is interested in the effects of music on stress levels, and how stress levels might be related to anxiety and life satisfaction. 1. Below is the output

More information

A review of statistical methods in the analysis of data arising from observer reliability studies (Part 11) *

A review of statistical methods in the analysis of data arising from observer reliability studies (Part 11) * A review of statistical methods in the analysis of data arising from observer reliability studies (Part 11) * by J. RICHARD LANDIS** and GARY G. KOCH** 4 Methods proposed for nominal and ordinal data Many

More information

Quantitative Methods in Computing Education Research (A brief overview tips and techniques)

Quantitative Methods in Computing Education Research (A brief overview tips and techniques) Quantitative Methods in Computing Education Research (A brief overview tips and techniques) Dr Judy Sheard Senior Lecturer Co-Director, Computing Education Research Group Monash University judy.sheard@monash.edu

More information

Using SAS to Conduct Pilot Studies: An Instructors Guide

Using SAS to Conduct Pilot Studies: An Instructors Guide Using SAS to Conduct Pilot Studies: An Instructors Guide Sean W. Mulvenon, University of Arkansas, Fayetteville, AR Ronna C. Turner, University of Arkansas, Fayetteville, AR ABSTRACT An important component

More information

From Bivariate Through Multivariate Techniques

From Bivariate Through Multivariate Techniques A p p l i e d S T A T I S T I C S From Bivariate Through Multivariate Techniques R e b e c c a M. W a r n e r University of New Hampshire DAI HOC THAI NGUYEN TRUNG TAM HOC LIEU *)SAGE Publications '55'

More information

MMI 409 Spring 2009 Final Examination Gordon Bleil. 1. Is there a difference in depression as a function of group and drug?

MMI 409 Spring 2009 Final Examination Gordon Bleil. 1. Is there a difference in depression as a function of group and drug? MMI 409 Spring 2009 Final Examination Gordon Bleil Table of Contents Research Scenario and General Assumptions Questions for Dataset (Questions are hyperlinked to detailed answers) 1. Is there a difference

More information

Daniel Boduszek University of Huddersfield

Daniel Boduszek University of Huddersfield Daniel Boduszek University of Huddersfield d.boduszek@hud.ac.uk Introduction to Multinominal Logistic Regression SPSS procedure of MLR Example based on prison data Interpretation of SPSS output Presenting

More information

Further Mathematics 2018 CORE: Data analysis Chapter 3 Investigating associations between two variables

Further Mathematics 2018 CORE: Data analysis Chapter 3 Investigating associations between two variables Chapter 3: Investigating associations between two variables Further Mathematics 2018 CORE: Data analysis Chapter 3 Investigating associations between two variables Extract from Study Design Key knowledge

More information

Survey research (Lecture 1) Summary & Conclusion. Lecture 10 Survey Research & Design in Psychology James Neill, 2015 Creative Commons Attribution 4.

Survey research (Lecture 1) Summary & Conclusion. Lecture 10 Survey Research & Design in Psychology James Neill, 2015 Creative Commons Attribution 4. Summary & Conclusion Lecture 10 Survey Research & Design in Psychology James Neill, 2015 Creative Commons Attribution 4.0 Overview 1. Survey research 2. Survey design 3. Descriptives & graphing 4. Correlation

More information

Survey research (Lecture 1)

Survey research (Lecture 1) Summary & Conclusion Lecture 10 Survey Research & Design in Psychology James Neill, 2015 Creative Commons Attribution 4.0 Overview 1. Survey research 2. Survey design 3. Descriptives & graphing 4. Correlation

More information

QPM Lab 9: Contingency Tables and Bivariate Displays in R

QPM Lab 9: Contingency Tables and Bivariate Displays in R QPM Lab 9: Contingency Tables and Bivariate Displays in R Department of Political Science Washington University, St. Louis November 3-4, 2016 QPM Lab 9: Contingency Tables and Bivariate Displays in R 1

More information

RELATIONSHIP OF CLINICAL FACTORS WITH ADIPONECTIN AND LEPTIN IN CHILDREN WITH NEWLY DIAGNOSED TYPE 1 DIABETES. Yuan Gu

RELATIONSHIP OF CLINICAL FACTORS WITH ADIPONECTIN AND LEPTIN IN CHILDREN WITH NEWLY DIAGNOSED TYPE 1 DIABETES. Yuan Gu RELATIONSHIP OF CLINICAL FACTORS WITH ADIPONECTIN AND LEPTIN IN CHILDREN WITH NEWLY DIAGNOSED TYPE 1 DIABETES by Yuan Gu BE, Nanjing Institute of Technology, China, 2006 ME, University of Shanghai for

More information

POL 242Y Final Test (Take Home) Name

POL 242Y Final Test (Take Home) Name POL 242Y Final Test (Take Home) Name_ Due August 6, 2008 The take-home final test should be returned in the classroom (FE 36) by the end of the class on August 6. Students who fail to submit the final

More information

The Effect Sizes r and d in Hypnosis Research

The Effect Sizes r and d in Hypnosis Research Marty Sapp The Effect Sizes r and d in Hypnosis Research Marty Sapp, Ed.D. The effect sizes r and d and their confidence intervals can improve hypnosis research. This paper describes how to devise scientific

More information

Empirical Knowledge: based on observations. Answer questions why, whom, how, and when.

Empirical Knowledge: based on observations. Answer questions why, whom, how, and when. INTRO TO RESEARCH METHODS: Empirical Knowledge: based on observations. Answer questions why, whom, how, and when. Experimental research: treatments are given for the purpose of research. Experimental group

More information

Chapter 1: Explaining Behavior

Chapter 1: Explaining Behavior Chapter 1: Explaining Behavior GOAL OF SCIENCE is to generate explanations for various puzzling natural phenomenon. - Generate general laws of behavior (psychology) RESEARCH: principle method for acquiring

More information

STATISTICS INFORMED DECISIONS USING DATA

STATISTICS INFORMED DECISIONS USING DATA STATISTICS INFORMED DECISIONS USING DATA Fifth Edition Chapter 4 Describing the Relation between Two Variables 4.1 Scatter Diagrams and Correlation Learning Objectives 1. Draw and interpret scatter diagrams

More information