Linear correlation. Contents. 1 Linear correlation. 1.1 Introduction. Anthony Tanbakuchi Department of Mathematics Pima Community College

Size: px
Start display at page:

Download "Linear correlation. Contents. 1 Linear correlation. 1.1 Introduction. Anthony Tanbakuchi Department of Mathematics Pima Community College"

Transcription

1 Introductor Statistics Lectures Linear correlation Testing two variables for a linear relationship Anthon Tanbakuchi Department of Mathematics Pima Communit College Redistribution of this material is prohibited without written permission of the author 2009 (Compile date: Tue Ma 19 14:51: ) Contents 1 Linear correlation Introduction Linear Correlation... 3 Use Computation A complete eample.. 10 Cautions Confidence Interval Belt Graphs Summar Further eamples Linear correlation 1.1 Introduction Motivation Is there a relationship correlation between our height and... (1) our mother s height? (2) our forearm height? (3) our work hours per week? (4) our commute distance? 1

2 2 of Introduction height height height_mother forearm height height work_hours credits Motivation Eample 1. How much of a individual s height is eplained b their mother s height? Use our class data to determine if there is a linear relationship between a mother s height and their child s height (our height) and how much variation in the child s height can be eplained b the mother s height. R: h e i g h t = c l a s s. data $ h e i g h t R: h e i g h t mother = c l a s s. data $ h e i g h t mother The first few data points are: Use a scatter plot to see if a relationship eists R: p l o t ( h e i g h t mother, height, main = Height i n i n c h e s ) Anthon Tanbakuchi

3 Linear correlation 3 of 17 height height mother Height in inches height height_mother Question 1. Does it look like there is a linear relation ship? Draw a best fit line in the data Paired data. Definition 1.1 A set of ( i, i ) data where each pair is related. (Dependent samples.) e: mother height, child height. 1.2 Linear Correlation Correlation. Definition 1.2 eists when two variables have a relationship with one another. Anthon Tanbakuchi

4 4 of Linear Correlation linear correlation non linear correlation Anthon Tanbakuchi

5 Linear correlation 5 of perfect positive strong positive positive no correlation Anthon Tanbakuchi

6 6 of Linear Correlation perfect negative strong negative negative no correlation USE Often used to help answer: 1. Is there a linear relationship between X and Y? 2. Can X be used to predict Y? 3. How much of the variation in X can be predicted with Y? COMPUTATION Definition 1.3 Linear correlation coefficient. The linear correlation coefficient for a population is denoted with ρ. We can estimate ρ via a sample and calculate Pearson s linear correlation coefficient r: (i )( i ȳ) r = (1) (n 1)s s n is the number of pairs of data points (length of or ). Anthon Tanbakuchi

7 Linear correlation 7 of 17 Measures the strength of the linear relationship between and. Larger values of r indicate stronger linear relationship. 1 Positive r indicates positive slope, negative r indicates negative slope. Eamples of r r = 1 r = r = 0.86 r = Larger r does not indicate a steeper slope. We will find the slope later using regression. Anthon Tanbakuchi

8 8 of Linear Correlation r = 1 r = r = 0.88 r = Properties of r (ρ for populations) 1. 1 r r is scale invariant. 3. r is invariant if and are interchanged. 4. r onl measures the strength of linear relationships. Definition 1.4 Coefficient of determination (eplained variation). r 2 is the proportion of linear variation in that is eplained b. 0 r 2 1 The closer r 2 is to 1 the stronger the linear relationship and likewise the more variation in that can be eplained b. Eample of r 2 Anthon Tanbakuchi

9 Linear correlation 9 of 17 r = 0.88 r^2 = Hpothesis test for linear correlation. Definition 1.5 requirements (1) simple paired (, ) random samples, (2) Pairs of (, ) have a bivariate normal distribution 2, (3) correlation is linear. null hpothesis ρ = 0 (no linear correlation) alternative hpothesis ρ 0 ( a linear correlation eists 3 ) Alwas make a scatter plot first to see if the relationship is linear. Linear correlation coefficient r and hpothesis test: cor.test(, ) Calculates r from the sample and conducts the hpothesis test for R Command H 0 ρ = 0. vector of ordered data. vector of ordered data. Test statistic for linear correlation coefficient t = r 0 1 r 2 n 2 where df = n 2. Note: n is number of pairs. Procedure for finding r 1. Define two ordered vectors ( and ) with the data. 2. Make a scatterplot to determine if a linear relationship eists. 3. If a linear relationship eists, run the hpothesis test cor.test() and do all 7 steps. It will give ou a point estimate of ρ (which is r) and allow ou to determine if it is significant (via the p-value). 2 Effectivel, a normal distribution for and. 3 Alternative hpothesis involving < or > also possible and work just as before. (2) Anthon Tanbakuchi

10 10 of Linear Correlation A COMPLETE EXAMPLE Eample of calculating r and testing significance Back to our original eample: Eample 2. How much of a individual s height is eplained b their mother s height? Use our class data to determine if there is a linear relationship between a mother s height and their child s height (our height) and how much variation in the child s height can be eplained b the mother s height. R: h e i g h t [ 1 ] R: h e i g h t mother [ 1 ] First check if relationship looks linear R: p l o t ( h e i g h t mother, height, main = Height i n i n c h e s ) Height in inches height height_mother Question 2. Does is look line a linear relationship? (Strong or weak?) Question 3. What sign do we epect for r? Question 4. What is our null hpothesis? Run hpothesis test... H 0 : ρ = 0, H a : ρ 0, α = Anthon Tanbakuchi

11 Linear correlation 11 of 17 R: r e s = cor. t e s t ( h e i g h t mother, h e i g h t ) R: r e s Pearson ' s product moment c o r r e l a t i o n data : h e i g h t mother and h e i g h t t = , df = 16, p value = a l t e r n a t i v e h p o t h e s i s : t r u e c o r r e l a t i o n i s not equal to 0 95 p e r c e n t c o n f i d e n c e i n t e r v a l : sample e s t i m a t e s : cor Question 5. What is the formal decision? Question 6. What is r? Question 7. What is the percent of variation of an individual s height is eplained b their mother s height? Question 8. What is the formal conclusion? Importance of testing significance of r Is there linear correlation? height work_hours The linear correlation coefficient for the above data is Question 9. Wh is it important to test the hpothesis H 0 : ρ = 0 and H a : ρ 0 since r is not zero? Anthon Tanbakuchi

12 12 of Linear Correlation R: cor. t e s t ( work hours, h e i g h t ) Pearson ' s product moment c o r r e l a t i o n data : work hours and h e i g h t t = , df = 16, p value = a l t e r n a t i v e h p o t h e s i s : t r u e c o r r e l a t i o n i s not equal to 0 95 p e r c e n t c o n f i d e n c e i n t e r v a l : sample e s t i m a t e s : cor Since we fail to reject H 0 : ρ = 0, r is not significant. Sampling error can account for its deviation from the null value of zero. Conclusion: no significant liner correlation. CAUTIONS Cautions when calculating and interpreting correlation If the relationship is nonlinear, r is not meaningful! Correlation does not impl causalit! Calculating correlation based on averages ma falsel inflate r. If no significant linear correlation eists, a relationship ma still eist (namel, a nonlinear one). When relationship is not linear Anthon Tanbakuchi

13 Linear correlation 13 of 17 Anscombe's 4 Regression data sets r = 0.82 r = r = r = Note that r is the same for all plots, but not appropriate for all! 4 CONFIDENCE INTERVAL BELT GRAPHS Anthon Tanbakuchi

14 14 of Linear Correlation % Confidence Belts For Correlation Linear Coefficient 0.8 n = 5 Population Correlation Coefficient, ρ n = 10 n = 20 n = 30 n = 50 n = 100 n = 250 n = 1000 n = infinit n = 1000 n = 250 n = 100 n = 50 n = 30 n = 20 n = n = Sample Correlation Coefficient, r (NOTE: values for n < 25 are onl rough approimations) Anthon Tanbakuchi

15 Linear correlation 15 of 17 95% Confidence Belts For Correlation Linear Coefficient Population Correlation Coefficient, ρ n = 5 n = 10 n = 20 n = 30 n = 50 n = 100 n = 250 n = 1000 n = infinit n = 1000 n = 250 n = 100 n = 50 n = 30 n = 20 n = n = Sample Correlation Coefficient, r (NOTE: values for n < 25 are onl rough approimations) Anthon Tanbakuchi

16 16 of Linear Correlation 99% Confidence Belts For Correlation Linear Coefficient Population Correlation Coefficient, ρ n = 5 n = 10 n = 20 n = 30 n = 50 n = 100 n = 250 n = 1000 n = infinit n = 1000 n = 250 n = 100 n = 50 n = 30 n = 20 n = n = Sample Correlation Coefficient, r (NOTE: values for n < 25 are onl rough approimations) Anthon Tanbakuchi

17 Linear correlation 17 of Summar Linear correlation coefficient r r measures the strength of linear correlation r r is scale invariant. 3. r is invariant if and are interchanged. 4. r onl measures the strength of linear relationships. r 2 proportion of linear variation in that is eplained b. Finding r check for linear relationship, then find r and make sure it is significant. Hpothesis test to find r and test significance: requirements (1) simple paired (, ) random samples, (2) Pairs of (, ) have a bivariate normal distribution, (3) correlation is linear. null hpothesis ρ = 0 (no linear correlation) alternative hpothesis ρ 0 ( a linear correlation eists. test in R : cor.test(, ) vector of ordered data. vector of ordered data. You must make a scatter plot first! 1.4 Further eamples Now test to see if there is a significant linear correlation between a person s height and their forearm length. (Use the class data set, hint: height=class.data$height forearm=class.data$forearm ) Question 10. Does the relationship look linear? Question 11. What is r (Check: r = 0.753) Question 12. Is r significant? (Check: p-value= ) Question 13. What is the 95% confidence interval for r (Check:(0.441, 0.902)) Question 14. What percent of an individual s height is eplained b their forearm length? Question 15. Which is better for predicting an individual s height: their forearm length or mother s height? Anthon Tanbakuchi

Chapter 4 Describing the Relation between Two Variables

Chapter 4 Describing the Relation between Two Variables Chapter 4 Describing the Relation between Two Variables 4.1 Scatter Diagrams and Correlation The is the variable whose value can be explained by the value of the or. A is a graph that shows the relationship

More information

Chapter 13 Student Lecture Notes Department of Quantitative Methods & Information Systems. Business Statistics

Chapter 13 Student Lecture Notes Department of Quantitative Methods & Information Systems. Business Statistics Chapter 13 Student Lecture Notes 13-1 Department of Quantitative Methods & Information Sstems Business Statistics Chapter 14 Introduction to Linear Regression and Correlation Analsis QMIS 0 Dr. Mohammad

More information

Chapter 11. Correlation and Regression

Chapter 11. Correlation and Regression Chapter 11 Correlation and Regression Correlation A relationship between two variables. The data can be represented b ordered pairs (, ) is the independent (or eplanator) variable is the dependent (or

More information

Business Statistics. Lecture 10: Correlation and Linear Regression

Business Statistics. Lecture 10: Correlation and Linear Regression Business Statistics Lecture 10: Correlation and Linear Regression Scatterplot A scatterplot shows the relationship between two quantitative variables measured on the same individuals. It displays the Form

More information

Inference about the Slope and Intercept

Inference about the Slope and Intercept Inference about the Slope and Intercept Recall, we have established that the least square estimates and 0 are linear combinations of the Y i s. Further, we have showed that the are unbiased and have the

More information

How to mathematically model a linear relationship and make predictions.

How to mathematically model a linear relationship and make predictions. Introductory Statistics Lectures Linear regression How to mathematically model a linear relationship and make predictions. Department of Mathematics Pima Community College Redistribution of this material

More information

AMS 7 Correlation and Regression Lecture 8

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

More information

STATISTICAL DATA ANALYSIS IN EXCEL

STATISTICAL DATA ANALYSIS IN EXCEL Microarra Center STATISTICAL DATA ANALYSIS IN EXCEL Lecture 5 Linear Regression dr. Petr Nazarov 14-1-213 petr.nazarov@crp-sante.lu Statistical data analsis in Ecel. 5. Linear regression OUTLINE Lecture

More information

Topic - 12 Linear Regression and Correlation

Topic - 12 Linear Regression and Correlation Topic 1 Linear Regression and Correlation Correlation & Regression Univariate & Bivariate tatistics U: frequenc distribution, mean, mode, range, standard deviation B: correlation two variables Correlation

More information

Unit 6 - Introduction to linear regression

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

More information

10.2 Graphing Exponential Functions

10.2 Graphing Exponential Functions Name Class Date 10. Graphing Eponential Functions Essential Question: How do ou graph an eponential function of the form f () = ab? Resource Locker Eplore Eploring Graphs of Eponential Functions Eponential

More information

Linear Correlation and Regression Analysis

Linear Correlation and Regression Analysis Linear Correlation and Regression Analysis Set Up the Calculator 2 nd CATALOG D arrow down DiagnosticOn ENTER ENTER SCATTER DIAGRAM Positive Linear Correlation Positive Correlation Variables will tend

More information

Overview. Overview. Overview. Specific Examples. General Examples. Bivariate Regression & Correlation

Overview. Overview. Overview. Specific Examples. General Examples. Bivariate Regression & Correlation Bivariate Regression & Correlation Overview The Scatter Diagram Two Examples: Education & Prestige Correlation Coefficient Bivariate Linear Regression Line SPSS Output Interpretation Covariance ou already

More information

Lecture (chapter 13): Association between variables measured at the interval-ratio level

Lecture (chapter 13): Association between variables measured at the interval-ratio level Lecture (chapter 13): Association between variables measured at the interval-ratio level Ernesto F. L. Amaral April 9 11, 2018 Advanced Methods of Social Research (SOCI 420) Source: Healey, Joseph F. 2015.

More information

Chapter 15. Correlation and Regression

Chapter 15. Correlation and Regression Correlation and Regression 15.1 a. Scatter plot 100 90 80 70 60 50 40 30 20 10 0 0 20 40 60 80 100 120 b. The major ais has slope s / s and goes through the point (, ). Here = 70, s = 20, = 80, s = 10,

More information

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

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

More information

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

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

More information

THE PEARSON CORRELATION COEFFICIENT

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

More information

Answer Key. 9.1 Scatter Plots and Linear Correlation. Chapter 9 Regression and Correlation. CK-12 Advanced Probability and Statistics Concepts 1

Answer Key. 9.1 Scatter Plots and Linear Correlation. Chapter 9 Regression and Correlation. CK-12 Advanced Probability and Statistics Concepts 1 9.1 Scatter Plots and Linear Correlation Answers 1. A high school psychologist wants to conduct a survey to answer the question: Is there a relationship between a student s athletic ability and his/her

More information

Algebra 1 Skills Needed to be Successful in Algebra 2

Algebra 1 Skills Needed to be Successful in Algebra 2 Algebra 1 Skills Needed to be Successful in Algebra A. Simplifing Polnomial Epressions Objectives: The student will be able to: Appl the appropriate arithmetic operations and algebraic properties needed

More information

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

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

More information

3.7 InveRSe FUnCTIOnS

3.7 InveRSe FUnCTIOnS CHAPTER functions learning ObjeCTIveS In this section, ou will: Verif inverse functions. Determine the domain and range of an inverse function, and restrict the domain of a function to make it one-to-one.

More information

Correlation and Regression (Excel 2007)

Correlation and Regression (Excel 2007) Correlation and Regression (Excel 2007) (See Also Scatterplots, Regression Lines, and Time Series Charts With Excel 2007 for instructions on making a scatterplot of the data and an alternate method of

More information

Correlation and simple linear regression S5

Correlation and simple linear regression S5 Basic medical statistics for clinical and eperimental research Correlation and simple linear regression S5 Katarzyna Jóźwiak k.jozwiak@nki.nl November 15, 2017 1/41 Introduction Eample: Brain size and

More information

Simple linear regression: linear relationship between two qunatitative variables. Linear Regression. The regression line

Simple linear regression: linear relationship between two qunatitative variables. Linear Regression. The regression line Linear Regression Simple linear regression: linear relationship etween two qunatitative variales The regression line Facts aout least-squares regression Residuals Influential oservations Cautions aout

More information

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

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

More information

Exam 3 Practice Questions Psych , Fall 9

Exam 3 Practice Questions Psych , Fall 9 Vocabular Eam 3 Practice Questions Psch 3101-100, Fall 9 Rather than choosing some practice terms at random, I suggest ou go through all the terms in the vocabular lists. The real eam will ask for definitions

More information

Unit 6 - Simple linear regression

Unit 6 - Simple linear regression Sta 101: Data Analysis and Statistical Inference Dr. Çetinkaya-Rundel Unit 6 - Simple linear regression LO 1. Define the explanatory variable as the independent variable (predictor), and the response variable

More information

11. Regression and Least Squares

11. Regression and Least Squares 11. Regression and Least Squares Prof. Tesler Math 186 Winter 2016 Prof. Tesler Ch. 11: Linear Regression Math 186 / Winter 2016 1 / 23 Regression Given n points ( 1, 1 ), ( 2, 2 ),..., we want to determine

More information

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

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

More information

Review 6. n 1 = 85 n 2 = 75 x 1 = x 2 = s 1 = 38.7 s 2 = 39.2

Review 6. n 1 = 85 n 2 = 75 x 1 = x 2 = s 1 = 38.7 s 2 = 39.2 Review 6 Use the traditional method to test the given hypothesis. Assume that the samples are independent and that they have been randomly selected ) A researcher finds that of,000 people who said that

More information

Analysis of Variance. Contents. 1 Analysis of Variance. 1.1 Review. Anthony Tanbakuchi Department of Mathematics Pima Community College

Analysis of Variance. Contents. 1 Analysis of Variance. 1.1 Review. Anthony Tanbakuchi Department of Mathematics Pima Community College Introductory Statistics Lectures Analysis of Variance 1-Way ANOVA: Many sample test of means Department of Mathematics Pima Community College Redistribution of this material is prohibited without written

More information

CORELATION - Pearson-r - Spearman-rho

CORELATION - Pearson-r - Spearman-rho CORELATION - Pearson-r - Spearman-rho Scatter Diagram A scatter diagram is a graph that shows that the relationship between two variables measured on the same individual. Each individual in the set is

More information

Chapters 9 and 10. Review for Exam. Chapter 9. Correlation and Regression. Overview. Paired Data

Chapters 9 and 10. Review for Exam. Chapter 9. Correlation and Regression. Overview. Paired Data Chapters 9 and 10 Review for Exam 1 Chapter 9 Correlation and Regression 2 Overview Paired Data is there a relationship if so, what is the equation use the equation for prediction 3 Definition Correlation

More information

Correlation and regression. Correlation and regression analysis. Measures of association. Why bother? Positive linear relationship

Correlation and regression. Correlation and regression analysis. Measures of association. Why bother? Positive linear relationship 1 Correlation and regression analsis 12 Januar 2009 Monda, 14.00-16.00 (C1058) Frank Haege Department of Politics and Public Administration Universit of Limerick frank.haege@ul.ie www.frankhaege.eu Correlation

More information

Mathematical Notation Math Introduction to Applied Statistics

Mathematical Notation Math Introduction to Applied Statistics Mathematical Notation Math 113 - Introduction to Applied Statistics Name : Use Word or WordPerfect to recreate the following documents. Each article is worth 10 points and can be printed and given to the

More information

STAT 4385 Topic 03: Simple Linear Regression

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

More information

15.2 Graphing Logarithmic

15.2 Graphing Logarithmic Name Class Date 15. Graphing Logarithmic Functions Essential Question: How is the graph of g () = a log b ( h) + k where b > 0 and b 1 related to the graph of f () = log b? Resource Locker A.5.A Determine

More information

Chapte The McGraw-Hill Companies, Inc. All rights reserved.

Chapte The McGraw-Hill Companies, Inc. All rights reserved. 12er12 Chapte Bivariate i Regression (Part 1) Bivariate Regression Visual Displays Begin the analysis of bivariate data (i.e., two variables) with a scatter plot. A scatter plot - displays each observed

More information

Statistics Introductory Correlation

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

More information

Dependence and scatter-plots. MVE-495: Lecture 4 Correlation and Regression

Dependence and scatter-plots. MVE-495: Lecture 4 Correlation and Regression Dependence and scatter-plots MVE-495: Lecture 4 Correlation and Regression It is common for two or more quantitative variables to be measured on the same individuals. Then it is useful to consider what

More information

Functions. Introduction

Functions. Introduction Functions,00 P,000 00 0 70 7 80 8 0 000 00 00 Figure Standard and Poor s Inde with dividends reinvested (credit "bull": modification of work b Praitno Hadinata; credit "graph": modification of work b MeasuringWorth)

More information

3.2 Understanding Relations and Functions-NOTES

3.2 Understanding Relations and Functions-NOTES Name Class Date. Understanding Relations and Functions-NOTES Essential Question: How do ou represent relations and functions? Eplore A1.1.A decide whether relations represented verball, tabularl, graphicall,

More information

Chapter 9 Regression. 9.1 Simple linear regression Linear models Least squares Predictions and residuals.

Chapter 9 Regression. 9.1 Simple linear regression Linear models Least squares Predictions and residuals. 9.1 Simple linear regression 9.1.1 Linear models Response and eplanatory variables Chapter 9 Regression With bivariate data, it is often useful to predict the value of one variable (the response variable,

More information

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

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

More information

Lecture 15: Chapter 10

Lecture 15: Chapter 10 Lecture 15: Chapter 10 C C Moxley UAB Mathematics 20 July 15 10.1 Pairing Data In Chapter 9, we talked about pairing data in a natural way. In this Chapter, we will essentially be discussing whether these

More information

15.2 Graphing Logarithmic

15.2 Graphing Logarithmic Name Class Date 15. Graphing Logarithmic Functions Essential Question: How is the graph of g () = a log b ( h) + k where b > and b 1 related to the graph of f () = log b? Resource Locker Eplore 1 Graphing

More information

0.24 adults 2. (c) Prove that, regardless of the possible values of and, the covariance between X and Y is equal to zero. Show all work.

0.24 adults 2. (c) Prove that, regardless of the possible values of and, the covariance between X and Y is equal to zero. Show all work. 1 A socioeconomic stud analzes two discrete random variables in a certain population of households = number of adult residents and = number of child residents It is found that their joint probabilit mass

More information

14.1 Systems of Linear Equations in Two Variables

14.1 Systems of Linear Equations in Two Variables 86 Chapter 1 Sstems of Equations and Matrices 1.1 Sstems of Linear Equations in Two Variables Use the method of substitution to solve sstems of equations in two variables. Use the method of elimination

More information

Correlation 1. December 4, HMS, 2017, v1.1

Correlation 1. December 4, HMS, 2017, v1.1 Correlation 1 December 4, 2017 1 HMS, 2017, v1.1 Chapter References Diez: Chapter 7 Navidi, Chapter 7 I don t expect you to learn the proofs what will follow. Chapter References 2 Correlation The sample

More information

Measuring Associations : Pearson s correlation

Measuring Associations : Pearson s correlation Measuring Associations : Pearson s correlation Scatter Diagram A scatter diagram is a graph that shows that the relationship between two variables measured on the same individual. Each individual in the

More information

4. (6 points) Express the domain of the following function in interval notation:

4. (6 points) Express the domain of the following function in interval notation: Eam 1-A L. Ballou Name Math 131 Calculus I September 1, 016 NO Calculator Allowed BOX YOUR ANSWER! Show all work for full credit! 1. (4 points) Write an equation of a line with y-intercept 4 and -intercept

More information

Chapter 12 : Linear Correlation and Linear Regression

Chapter 12 : Linear Correlation and Linear Regression Chapter 1 : Linear Correlation and Linear Regression Determining whether a linear relationship exists between two quantitative variables, and modeling the relationship with a line, if the linear relationship

More information

Lesson Goals. Unit 2 Functions Analyzing Graphs of Functions (Unit 2.2) Graph of a Function. Lesson Goals

Lesson Goals. Unit 2 Functions Analyzing Graphs of Functions (Unit 2.2) Graph of a Function. Lesson Goals Unit Functions Analzing Graphs of Functions (Unit.) William (Bill) Finch Mathematics Department Denton High School Lesson Goals When ou have completed this lesson ou will: Find the domain and range of

More information

How to mathematically model a linear relationship and make predictions.

How to mathematically model a linear relationship and make predictions. Introductory Statistics Lectures Linear regression How to mathematically model a linear relationship and make predictions. Department of Mathematics Pima Community College (Compile date: Mon Apr 28 20:50:28

More information

Chapter Eight: Assessment of Relationships 1/42

Chapter Eight: Assessment of Relationships 1/42 Chapter Eight: Assessment of Relationships 1/42 8.1 Introduction 2/42 Background This chapter deals, primarily, with two topics. The Pearson product-moment correlation coefficient. The chi-square test

More information

Analysis of Covariance. The following example illustrates a case where the covariate is affected by the treatments.

Analysis of Covariance. The following example illustrates a case where the covariate is affected by the treatments. Analysis of Covariance In some experiments, the experimental units (subjects) are nonhomogeneous or there is variation in the experimental conditions that are not due to the treatments. For example, a

More information

bivariate correlation bivariate regression multiple regression

bivariate correlation bivariate regression multiple regression bivariate correlation bivariate regression multiple regression Today Bivariate Correlation Pearson product-moment correlation (r) assesses nature and strength of the linear relationship between two continuous

More information

Correlation. Bret Hanlon and Bret Larget. Department of Statistics University of Wisconsin Madison. December 6, Correlation 1 / 25

Correlation. Bret Hanlon and Bret Larget. Department of Statistics University of Wisconsin Madison. December 6, Correlation 1 / 25 Correlation Bret Hanlon and Bret Larget Department of Statistics Universit of Wisconsin Madison December 6, 2 Correlation / 25 The Big Picture We have just completed a length series of lectures on ANOVA

More information

Chapter 12 - Part I: Correlation Analysis

Chapter 12 - Part I: Correlation Analysis ST coursework due Friday, April - Chapter - Part I: Correlation Analysis Textbook Assignment Page - # Page - #, Page - # Lab Assignment # (available on ST webpage) GOALS When you have completed this lecture,

More information

Review of Multiple Regression

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

More information

Chapter 7 9 Review. Select the letter that corresponds to the best answer.

Chapter 7 9 Review. Select the letter that corresponds to the best answer. AP STATISTICS Chapter 7 9 Review MULTIPLE CHOICE Name: Per: Select the letter that corresponds to the best answer. 1. The correlation between X and Y is r = 0.35. If we double each X value, increase each

More information

9 Correlation and Regression

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

More information

Chapter 8: Correlation & Regression

Chapter 8: Correlation & Regression Chapter 8: Correlation & Regression We can think of ANOVA and the two-sample t-test as applicable to situations where there is a response variable which is quantitative, and another variable that indicates

More information

Linear Modelling: Simple Regression

Linear Modelling: Simple Regression Linear Modelling: Simple Regression 10 th of Ma 2018 R. Nicholls / D.-L. Couturier / M. Fernandes Introduction: ANOVA Used for testing hpotheses regarding differences between groups Considers the variation

More information

Objectives. 2.3 Least-squares regression. Regression lines. Prediction and Extrapolation. Correlation and r 2. Transforming relationships

Objectives. 2.3 Least-squares regression. Regression lines. Prediction and Extrapolation. Correlation and r 2. Transforming relationships Objectives 2.3 Least-squares regression Regression lines Prediction and Extrapolation Correlation and r 2 Transforming relationships Adapted from authors slides 2012 W.H. Freeman and Company Straight Line

More information

Chapter 2 Linear Relations and Functions

Chapter 2 Linear Relations and Functions Chapter Linear Relations and Functions I. Relations and Functions A. Definitions 1. Relation. Domain the variable ( ) 3. Range the variable ( ). Function a) A relationship between ( ) and ( ). b) The output

More information

2-3. Linear Regression and Correlation. Vocabulary

2-3. Linear Regression and Correlation. Vocabulary Chapter 2 Lesson 2-3 Linear Regression and Correlation BIG IDEA The regression line is the line of best fi t to data. The correlation coeffi cient measures the strength and direction of a linear pattern

More information

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

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

More information

Limits 4: Continuity

Limits 4: Continuity Limits 4: Continuit 55 Limits 4: Continuit Model : Continuit I. II. III. IV. z V. VI. z a VII. VIII. IX. Construct Your Understanding Questions (to do in class). Which is the correct value of f (a) in

More information

Inferences for Regression

Inferences for Regression Inferences for Regression An Example: Body Fat and Waist Size Looking at the relationship between % body fat and waist size (in inches). Here is a scatterplot of our data set: Remembering Regression In

More information

Correlation. We don't consider one variable independent and the other dependent. Does x go up as y goes up? Does x go down as y goes up?

Correlation. We don't consider one variable independent and the other dependent. Does x go up as y goes up? Does x go down as y goes up? Comment: notes are adapted from BIOL 214/312. I. Correlation. Correlation A) Correlation is used when we want to examine the relationship of two continuous variables. We are not interested in prediction.

More information

Linear Regression and Correlation. February 11, 2009

Linear Regression and Correlation. February 11, 2009 Linear Regression and Correlation February 11, 2009 The Big Ideas To understand a set of data, start with a graph or graphs. The Big Ideas To understand a set of data, start with a graph or graphs. If

More information

EM375 STATISTICS AND MEASUREMENT UNCERTAINTY CORRELATION OF EXPERIMENTAL DATA

EM375 STATISTICS AND MEASUREMENT UNCERTAINTY CORRELATION OF EXPERIMENTAL DATA EM375 STATISTICS AND MEASUREMENT UNCERTAINTY CORRELATION OF EXPERIMENTAL DATA In this unit of the course we use statistical methods to look for trends in data. Often experiments are conducted by having

More information

Intro to Linear Regression

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

More information

Essential Statistics. Gould Ryan Wong

Essential Statistics. Gould Ryan Wong Global Global Essential Statistics Eploring the World through Data For these Global Editions, the editorial team at Pearson has collaborated with educators across the world to address a wide range of subjects

More information

Ecn Analysis of Economic Data University of California - Davis February 23, 2010 Instructor: John Parman. Midterm 2. Name: ID Number: Section:

Ecn Analysis of Economic Data University of California - Davis February 23, 2010 Instructor: John Parman. Midterm 2. Name: ID Number: Section: Ecn 102 - Analysis of Economic Data University of California - Davis February 23, 2010 Instructor: John Parman Midterm 2 You have until 10:20am to complete this exam. Please remember to put your name,

More information

UNIT 12 ~ More About Regression

UNIT 12 ~ More About Regression ***SECTION 15.1*** The Regression Model When a scatterplot shows a relationship between a variable x and a y, we can use the fitted to the data to predict y for a given value of x. Now we want to do tests

More information

Intro to Linear Regression

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

More information

Correlation and Regression

Correlation and Regression A. The Basics of Correlation Analysis 1. SCATTER DIAGRAM A key tool in correlation analysis is the scatter diagram, which is a tool for analyzing potential relationships between two variables. One variable

More information

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

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

More information

Section 2.6 Limits at infinity and infinite limits 2 Lectures. Dr. Abdulla Eid. College of Science. MATHS 101: Calculus I

Section 2.6 Limits at infinity and infinite limits 2 Lectures. Dr. Abdulla Eid. College of Science. MATHS 101: Calculus I Section 2.6 Limits at infinity and infinite its 2 Lectures College of Science MATHS 0: Calculus I (University of Bahrain) Infinite Limits / 29 Finite its as ±. 2 Horizontal Asympotes. 3 Infinite its. 4

More information

Inference for Regression Inference about the Regression Model and Using the Regression Line, with Details. Section 10.1, 2, 3

Inference for Regression Inference about the Regression Model and Using the Regression Line, with Details. Section 10.1, 2, 3 Inference for Regression Inference about the Regression Model and Using the Regression Line, with Details Section 10.1, 2, 3 Basic components of regression setup Target of inference: linear dependency

More information

Lecture 17. Ingo Ruczinski. October 26, Department of Biostatistics Johns Hopkins Bloomberg School of Public Health Johns Hopkins University

Lecture 17. Ingo Ruczinski. October 26, Department of Biostatistics Johns Hopkins Bloomberg School of Public Health Johns Hopkins University Lecture 17 Department of Biostatistics Johns Hopkins Bloomberg School of Public Health Johns Hopkins University October 26, 2015 1 2 3 4 5 1 Paired difference hypothesis tests 2 Independent group differences

More information

Inferences for Correlation

Inferences for Correlation Inferences for Correlation Quantitative Methods II Plan for Today Recall: correlation coefficient Bivariate normal distributions Hypotheses testing for population correlation Confidence intervals for population

More information

Ordinary Least Squares Regression Explained: Vartanian

Ordinary Least Squares Regression Explained: Vartanian Ordinary Least Squares Regression Eplained: Vartanian When to Use Ordinary Least Squares Regression Analysis A. Variable types. When you have an interval/ratio scale dependent variable.. When your independent

More information

Covariance and Correlation Class 7, Jeremy Orloff and Jonathan Bloom

Covariance and Correlation Class 7, Jeremy Orloff and Jonathan Bloom 1 Learning Goals Covariance and Correlation Class 7, 18.05 Jerem Orloff and Jonathan Bloom 1. Understand the meaning of covariance and correlation. 2. Be able to compute the covariance and correlation

More information

1 A Review of Correlation and Regression

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

More information

Finding Limits Graphically and Numerically. An Introduction to Limits

Finding Limits Graphically and Numerically. An Introduction to Limits 8 CHAPTER Limits and Their Properties Section Finding Limits Graphicall and Numericall Estimate a it using a numerical or graphical approach Learn different was that a it can fail to eist Stud and use

More information

Mrs. Poyner/Mr. Page Chapter 3 page 1

Mrs. Poyner/Mr. Page Chapter 3 page 1 Name: Date: Period: Chapter 2: Take Home TEST Bivariate Data Part 1: Multiple Choice. (2.5 points each) Hand write the letter corresponding to the best answer in space provided on page 6. 1. In a statistics

More information

Association Between Variables Measured at the Interval-Ratio Level: Bivariate Correlation and Regression

Association Between Variables Measured at the Interval-Ratio Level: Bivariate Correlation and Regression Association Between Variables Measured at the Interval-Ratio Level: Bivariate Correlation and Regression Last couple of classes: Measures of Association: Phi, Cramer s V and Lambda (nominal level of measurement)

More information

Regression and Correlation

Regression and Correlation Chapter 1-6 Regression and Correlation 1-6-1 Linear Regression and Correlation Analysis Not enough to know what impacts things but need to know how they impact. Correlation establishes if something impacts,

More information

Correlation and Regression

Correlation and Regression Elementary Statistics A Step by Step Approach Sixth Edition by Allan G. Bluman http://www.mhhe.com/math/stat/blumanbrief SLIDES PREPARED BY LLOYD R. JAISINGH MOREHEAD STATE UNIVERSITY MOREHEAD KY Updated

More information

4.2 Mean Value Theorem Calculus

4.2 Mean Value Theorem Calculus 4. MEAN VALUE THEOREM The Mean Value Theorem is considered b some to be the most important theorem in all of calculus. It is used to prove man of the theorems in calculus that we use in this course as

More information

Important note: Transcripts are not substitutes for textbook assignments. 1

Important note: Transcripts are not substitutes for textbook assignments. 1 In this lesson we will cover correlation and regression, two really common statistical analyses for quantitative (or continuous) data. Specially we will review how to organize the data, the importance

More information

9. Linear Regression and Correlation

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

More information

Regression. Marc H. Mehlman University of New Haven

Regression. Marc H. Mehlman University of New Haven Regression Marc H. Mehlman marcmehlman@yahoo.com University of New Haven the statistician knows that in nature there never was a normal distribution, there never was a straight line, yet with normal and

More information

MATH 115 MIDTERM EXAM

MATH 115 MIDTERM EXAM MATH 11 MIDTERM EXAM Department of Mathematics Universit of Michigan Februar 12, 2003 NAME: INSTRUCTOR: ID NUMBER: SECTION NO: 1. Do not open this eam until ou are told to begin. 2. This eam has 11 pages

More information

Introduction and Single Predictor Regression. Correlation

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

More information

Inference for Regression

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

More information