Chapter 7. Comparing Two Population Means. Comparing two population means. T-tests: Independent samples and paired variables.

Size: px
Start display at page:

Download "Chapter 7. Comparing Two Population Means. Comparing two population means. T-tests: Independent samples and paired variables."

Transcription

1 Chapter 7 Comparing Two Population Means Comparing two population means T-tests: Independent samples and paired variables. Usually subjects are assigned to treatment or control groups and one or more variables which are hypothesized to be affected by the treatment are measured. Chapter 7 1

2 The following null and alternative hypotheses are formulated: Ho: mean for treatment group is equalto that for the control group. Ha: means for treatment and control groups are different. OR Ha: mean for treatment is larger (smaller) than that for the control group. Example: Does increasing calcium intake reduce blood pressure? Observational studies suggest there is a link, and that is strongest in African-American men. Experiment: 21 African-American men participated 10 were assigned to treatment group. 11 were assigned to placebo group. Researchers measured the blood pressure of each subject before treatment & after 12 weeks. LINK: Example1.SAS Chapter 7 2

3 DATA CALCIUM; INFILE 'C:\CLASSES\STA5206\NOTES\chapter7\SAS_ FILES\CALCIUM.DAT'; INPUT GROUP$ BEFORE AFTER; PROC PRINT; The SAS System 02:26 Thursday, October 12, Obs GROUP BEFORE AFTER 1 Calcium Calcium Calcium Calcium Calcium Calcium Calcium Calcium Calcium Calcium Placebo Placebo Placebo Placebo Placebo Placebo Placebo Placebo Placebo Placebo Placebo Chapter 7 3

4 Independent T-test Observation for the two groups are independent. When sample size for each group is small (say<30), population need to be normally distributed. Need to check equality of variances for both population. LINK: Example 1A.SAS DATA CALCIUM; INFILE 'C:\CLASSES\STA5206\NOTES\chapter7\SAS _FILES\CALCIUM.DAT'; INPUT GROUP$ BEFORE AFTER; CHANGE = AFTER - BEFORE; PROC UNIVARIATE NORMAL; run; CLASS GROUP; VAR CHANGE; Chapter 7 4

5 The UNIVARIATE Procedure Variable: CHANGE GROUP = Calcium 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 UNIVARIATE Procedure Variable: CHANGE GROUP = Placebo 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 For the Calcium example, we are interested to find out if Change = After Before 0 Ho: Change = 0 Ha: Change 0 LINK: Example1B.SAS Chapter 7 5

6 DATA CALCIUM; INFILE 'C:\CLASSES\STA5206\NOTES\chapter7\SAS_FILES \CALCIUM.DAT'; INPUT GROUP$ BEFORE AFTER; CHANGE = AFTER - BEFORE; PROC TTEST DATA=CALCIUM; run; CLASS GROUP; VAR CHANGE; The TTEST Procedure Statistics Lower CL Upper CL Lower CL Variable Class N Mean Mean Mean Std Dev Std Dev CHANGE Calcium CHANGE Placebo CHANGE Diff (1-2) Statistics Upper CL Variable Class Std Dev Std Err Minimum Maximum CHANGE Calcium CHANGE Placebo CHANGE Diff (1-2) Chapter 7 6

7 T-Tests Variable Method Variances DF t Value Pr > t CHANGE Pooled Equal CHANGE Satterthwaite Unequal Equality of Variances Variable Method Num DF Den DF F Value Pr > F CHANGE Folded F Example: Clouds were randomly selected or not with silver nitrate.rainfalls were recorded from the clouds. Goal: Determine if cloud seeding increases rainfall LINK: Example2.SAS Chapter 7 7

8 DATA CLOUDS; INFILE 'C:\CLASSES\STA5206\NOTES\chapter7 \SAS_FILES\CLOUDS.DAT'; INPUT GROUP$ RAIN; PROC PRINT; run; The SAS System 02:26 Thursday, October 12, Obs GROUP RAIN 1 Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded Unseeded 1.0 Chapter 7 8

9 Obs GROUP RAIN 25 Unseeded Unseeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded Seeded 4.1 LINK: Example2A.SAS Chapter 7 9

10 DATA CLOUDS; INFILE 'C:\CLASSES\STA5206\NOTES\chapter7\ SAS_FILES\CLOUDS.DAT'; INPUT GROUP$ RAIN; PROC UNIVARIATE NORMAL; CLASS GROUP; VAR RAIN; run; The UNIVARIATE Procedure Variable: RAIN GROUP = Seeded 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 UNIVARIATE Procedure Variable: RAIN GROUP = Unseeded 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 7 10

11 Comparing means when data are non-normal (Distribution free test) When data are nonnormal and sample size is small. We should use nonparametric methods. We also use nonparametric methods when the variables are ordinal. Example: 1 = very mild 2 = mild 3 = moderate 4 = strong Example: Suppose there are two groups: Group A: Control Group B: Treated with a drug to prevent tumor formation. Both Groups are exposed to a chemical that encourages tumor growth. The following values are masses of tumors in groups A and B. A: 3.1, 2.2, 1.7, 2.7, 2.5 B: 0, 0, 1, 2.3 Chapter 7 11

12 We combine bothsets together and sort the data from small to large. Mass Group B B B A A B A A A Rank Sum Ranks A = =33 Sum Ranks B = =12 The smaller the sum of ranks for B, the smaller we expect the tumors to be for group B. Question: Is the sum rank for group A sufficiently larger than the sum rank for group B? The Wilcoxon Test gives us the probability that the difference in rank sums observed is not just by chance alone. LINK: Example2B.SAS Chapter 7 12

13 DATA CLOUDS; INFILE 'C:\CLASSES\STA5206\NOTES\chapter7\ SAS_FILES\CLOUDS.DAT'; INPUT GROUP$ RAIN; PROC NPAR1WAY DATA = CLOUDS WILCOXON; run; CLASS GROUP; VAR RAIN; EXACT WILCOXON; The SAS System 02:26 Thursday, October 12, The NPAR1WAY Procedure Wilcoxon Scores (Rank Sums) for Variable RAIN Classified by Variable GROUP Sum of Expected Std Dev Mean GROUP N Scores Under H0 Under H0 Score ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ Unseeded Seeded Average scores were used for ties. Chapter 7 13

14 Wilcoxon Two-Sample Test Statistic (S) Normal Approximation Z One-Sided Pr < Z Two-Sided Pr > Z t Approximation One-Sided Pr < Z Two-Sided Pr > Z Exact Test One-Sided Pr <= S Two-Sided Pr >= S - Mean Z includes a continuity correction of 0.5. Kruskal-Wallis Test Chi-Square DF 1 Pr > Chi-Square Paired T-test To compare means of two populations, sometimes it s useful to pair data. Examples: Measuring tire wear of two brands of bicycle tires use pair on one bike Measuring effect of a drug on reducing blood pressure Before-After Comparing two methods of teaching a certain math concept. match based on IQ Chapter 7 14

15 Example: We are interested to measure the growing presence of women in the labor force over the period 1968 to A data set called Labor Force contains the labor force participation rate (LFPR) of women in 19 cities in the United States. LINK: Example3.SAS DATA Labor_Force; infile 'C:/Classes/STA5206/Notes/Chapter7/SAS _FILES/labor.dat'; input City $ YR72 YR68; proc print; run; Chapter 7 15

16 The SAS System 23:06 Monday, October 16, Obs City YR72 YR68 1 N.Y L.A Chicago Philadel Detroit San_Fran Boston Pitt St._Loui Connecti Wash._D Cinn Baltimor Newark Minn/St Buffalo Houston Patterso Dallas Since the United States did not change much from 1968 to 1972, a pooled t-test of LFPR rates may be considered. However, the data are naturally paired because the measurements were made in the same cities for each of the two years. If the sample size is small, it is required that the difference between the two variables come from a normally distributed population. LINK: Example3A.SAS Chapter 7 16

17 DATA Labor_Force; infile 'C:/Classes/STA5206/Notes/Chapter7/SAS _FILES/labor.dat'; input City $ YR72 YR68; DIFF = YR72 - YR68; proc univariate normal plot; run; var diff; id city; The SAS System 23:06 Monday, October 16, The UNIVARIATE Procedure Variable: DIFF 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 7 17

18 Extreme Observations Lowest Highest Value City Obs Value City Obs St._Loui Baltimor Newark Minn/St San_Fran Wash._D Philadel Boston Chicago Pitt. 8 Stem Leaf # Boxplot *--+--* Multiply Stem.Leaf by 10**-1 To perform T test use: Proc Means T PRT ; LINK: Example3b.SAS The paired T-test is significant at 5% level. Interestingly, the pooled t-test is not significant at 5% level. Chapter 7 18

19 DATA Labor_Force; infile 'C:/Classes/STA5206/Notes/Chapter7/SAS_ FILES/labor.dat'; input City $ YR72 YR68; diff = YR72 - YR68; proc ttest; run; var diff; The TTEST Procedure Statistics Lower CL Upper CL Lower CL Upper CL Variable N Mean Mean Mean Std Dev Std Dev Std Dev diff Statistics Variable Std Err Minimum Maximum diff T-Tests Variable DF t Value Pr > t diff Chapter 7 19

EXST7015: Salaries of all American league baseball players (1994) Salaries in thousands of dollars RAW DATA LISTING

EXST7015: Salaries of all American league baseball players (1994) Salaries in thousands of dollars RAW DATA LISTING ANOVA & Design Randomized Block Design Page 1 1 **EXAMPLE 1******************************************************; 2 *** The 1994 salaries of all American league baseball players ***; 3 *** as reported

More information

Stats 2002: Probabilities for Wins and Losses of Online Gambling

Stats 2002: Probabilities for Wins and Losses of Online Gambling Abstract: Jennifer Mateja Andrea Scisinger Lindsay Lacher Stats 2002: Probabilities for Wins and Losses of Online Gambling The objective of this experiment is to determine whether online gambling is a

More information

Select Boxplot -> Multiple Y's (simple) and select all variable names.

Select Boxplot -> Multiple Y's (simple) and select all variable names. One Factor ANOVA in Minitab As an example, we will use the data below. A study looked at the days spent in the hospital for different regions of the United States. Can the company reject the claim the

More information

Week 7 One-way ANOVA

Week 7 One-way ANOVA Week 7 One-way ANOVA Objectives By the end of this lecture, you should be able to: Understand the shortcomings of comparing multiple means as pairs of hypotheses. Understand the steps of the ANOVA method

More information

CHAPTER ANALYSIS AND INTERPRETATION Average total number of collisions for a try to be scored

CHAPTER ANALYSIS AND INTERPRETATION Average total number of collisions for a try to be scored CHAPTER 8 8.1 ANALYSIS AND INTERPRETATION As mentioned in the previous chapter, four key components have been identified as indicators of the level of significance of dominant collisions when evaluating

More information

Biostatistics & SAS programming

Biostatistics & SAS programming Biostatistics & SAS programming Kevin Zhang March 6, 2017 ANOVA 1 Two groups only Independent groups T test Comparison One subject belongs to only one groups and observed only once Thus the observations

More information

Unit4: Inferencefornumericaldata 4. ANOVA. Sta Spring Duke University, Department of Statistical Science

Unit4: Inferencefornumericaldata 4. ANOVA. Sta Spring Duke University, Department of Statistical Science Unit4: Inferencefornumericaldata 4. ANOVA Sta 101 - Spring 2016 Duke University, Department of Statistical Science Dr. Çetinkaya-Rundel Slides posted at http://bit.ly/sta101_s16 Outline 1. Housekeeping

More information

Analysis of Variance. Copyright 2014 Pearson Education, Inc.

Analysis of Variance. Copyright 2014 Pearson Education, Inc. Analysis of Variance 12-1 Learning Outcomes Outcome 1. Understand the basic logic of analysis of variance. Outcome 2. Perform a hypothesis test for a single-factor design using analysis of variance manually

More information

Warm-up. Make a bar graph to display these data. What additional information do you need to make a pie chart?

Warm-up. Make a bar graph to display these data. What additional information do you need to make a pie chart? Warm-up The number of deaths among persons aged 15 to 24 years in the United States in 1997 due to the seven leading causes of death for this age group were accidents, 12,958; homicide, 5,793; suicide,

More information

ISDS 4141 Sample Data Mining Work. Tool Used: SAS Enterprise Guide

ISDS 4141 Sample Data Mining Work. Tool Used: SAS Enterprise Guide ISDS 4141 Sample Data Mining Work Taylor C. Veillon Tool Used: SAS Enterprise Guide You may have seen the movie, Moneyball, about the Oakland A s baseball team and general manager, Billy Beane, who focused

More information

1wsSMAM 319 Some Examples of Graphical Display of Data

1wsSMAM 319 Some Examples of Graphical Display of Data 1wsSMAM 319 Some Examples of Graphical Display of Data 1. Lands End employs numerous persons to take phone orders. Computers on which orders are entered also automatically collect data on phone activity.

More information

Unit 6 Day 2 Notes Central Tendency from a Histogram; Box Plots

Unit 6 Day 2 Notes Central Tendency from a Histogram; Box Plots AFM Unit 6 Day 2 Notes Central Tendency from a Histogram; Box Plots Name Date To find the mean, median and mode from a histogram, you first need to know how many data points were used. Use the frequency

More information

Universitas Sumatera Utara

Universitas Sumatera Utara Crosstabs Kelompok Usia (thn) * Hiperplasia Crosstabulation Hiperplasia Simpleks Kompleks Total Kelompok Usia (thn) 40 Count 12 17 29 54,5% 77,3% 65,9% Total Count

More information

A few things to remember about ANOVA

A few things to remember about ANOVA A few things to remember about ANOVA 1) The F-test that is performed is always 1-tailed. This is because your alternative hypothesis is always that the between group variation is greater than the within

More information

Stat 139 Homework 3 Solutions, Spring 2015

Stat 139 Homework 3 Solutions, Spring 2015 Stat 39 Homework 3 Solutions, Spring 05 Problem. Let i Nµ, σ ) for i,..., n, and j Nµ, σ ) for j,..., n. Also, assume that all observations are independent from each other. In Unit 4, we learned that the

More information

Section 3.2: Measures of Variability

Section 3.2: Measures of Variability Section 3.2: Measures of Variability The mean and median are good statistics to employ when describing the center of a collection of data. However, there is more to a collection of data than just the center!

More information

NUMB3RS Activity: Choosing Contenders. Episode: Contenders

NUMB3RS Activity: Choosing Contenders. Episode: Contenders Teacher Page 1 NUMB3RS Activity: Choosing Contenders Topic: Weighted averages, z-scores Grade Level: 9-12 Objective: Determine ratings using weighted averages of lists of data Time: 20-30 minutes Materials:

More information

Descriptive Statistics Project Is there a home field advantage in major league baseball?

Descriptive Statistics Project Is there a home field advantage in major league baseball? Descriptive Statistics Project Is there a home field advantage in major league baseball? DUE at the start of class on date posted on website (in the first 5 minutes of class) There may be other due dates

More information

Chapter 2: ANOVA and regression. Caroline Verhoeven

Chapter 2: ANOVA and regression. Caroline Verhoeven Chapter 2: ANOVA and regression Caroline Verhoeven Table of contents 1 ANOVA One-way ANOVA Repeated measures ANOVA Two-way ANOVA 2 Regression Simple linear regression Multiple regression 3 Conclusion Caroline

More information

One-way ANOVA: round, narrow, wide

One-way ANOVA: round, narrow, wide 5/4/2009 9:19:18 AM Retrieving project from file: 'C:\DOCUMENTS AND SETTINGS\BOB S\DESKTOP\RJS\COURSES\MTAB\FIRSTBASE.MPJ' ========================================================================== This

More information

Beverly Sauls SEDAR31-DW11. 5 August 2012

Beverly Sauls SEDAR31-DW11. 5 August 2012 A Summary of Data on the Size Distribution and Release Condition of Red Snapper Discards from Recreational Fishery Surveys in the Gulf of Mexico Beverly Sauls SEDAR31-DW11 5 August 2012 This information

More information

Name May 3, 2007 Math Probability and Statistics

Name May 3, 2007 Math Probability and Statistics Name May 3, 2007 Math 341 - Probability and Statistics Long Exam IV Instructions: Please include all relevant work to get full credit. Encircle your final answers. 1. An article in Professional Geographer

More information

Introduction to Analysis of Variance (ANOVA) The Structural Model, The Summary Table, and the One- Way ANOVA

Introduction to Analysis of Variance (ANOVA) The Structural Model, The Summary Table, and the One- Way ANOVA Introduction to Analysis of Variance (ANOVA) The Structural Model, The Summary Table, and the One- Way ANOVA Limitations of the t-test Although the t-test is commonly used, it has limitations Can only

More information

Lesson 3 Pre-Visit Teams & Players by the Numbers

Lesson 3 Pre-Visit Teams & Players by the Numbers Lesson 3 Pre-Visit Teams & Players by the Numbers Objective: Students will be able to: Review how to find the mean, median and mode of a data set. Calculate the standard deviation of a data set. Evaluate

More information

Standard Errors in the U.S. Regional Price Parities (RPPs)

Standard Errors in the U.S. Regional Price Parities (RPPs) Standard Errors in the U.S. Regional Price Parities (RPPs) Bettina H. Aten, Eric Figueroa and Troy Martin Background on RPPs Relative price levels for all the U.S. states and metropolitan regions were

More information

Prokopios Chatzakis, National and Kapodistrian University of Athens, Faculty of Physical Education and Sport Science 1

Prokopios Chatzakis, National and Kapodistrian University of Athens, Faculty of Physical Education and Sport Science 1 Differences between geographic areas (continents) in the distribution of medals at the Beijing Olympic Games 2008 and at the London Olympic Games. Prokopios Chatzakis, National and Kapodistrian University

More information

ANOVA - Implementation.

ANOVA - Implementation. ANOVA - Implementation http://www.pelagicos.net/classes_biometry_fa17.htm Doing an ANOVA With RCmdr Categorical Variable One-Way ANOVA Testing a single Factor dose with 3 treatments (low, mid, high) Doing

More information

Data Set 7: Bioerosion by Parrotfish Background volume of bites The question:

Data Set 7: Bioerosion by Parrotfish Background volume of bites The question: Data Set 7: Bioerosion by Parrotfish Background Bioerosion of coral reefs results from animals taking bites out of the calcium-carbonate skeleton of the reef. Parrotfishes are major bioerosion agents,

More information

Section I: Multiple Choice Select the best answer for each problem.

Section I: Multiple Choice Select the best answer for each problem. Inference for Linear Regression Review Section I: Multiple Choice Select the best answer for each problem. 1. Which of the following is NOT one of the conditions that must be satisfied in order to perform

More information

Chapter 13. Factorial ANOVA. Patrick Mair 2015 Psych Factorial ANOVA 0 / 19

Chapter 13. Factorial ANOVA. Patrick Mair 2015 Psych Factorial ANOVA 0 / 19 Chapter 13 Factorial ANOVA Patrick Mair 2015 Psych 1950 13 Factorial ANOVA 0 / 19 Today s Menu Now we extend our one-way ANOVA approach to two (or more) factors. Factorial ANOVA: two-way ANOVA, SS decomposition,

More information

IDENTIFYING SUBJECTIVE VALUE IN WOMEN S COLLEGE GOLF RECRUITING REGARDLESS OF SOCIO-ECONOMIC CLASS. Victoria Allred

IDENTIFYING SUBJECTIVE VALUE IN WOMEN S COLLEGE GOLF RECRUITING REGARDLESS OF SOCIO-ECONOMIC CLASS. Victoria Allred IDENTIFYING SUBJECTIVE VALUE IN WOMEN S COLLEGE GOLF RECRUITING REGARDLESS OF SOCIO-ECONOMIC CLASS by Victoria Allred A Senior Honors Project Presented to the Honors College East Carolina University In

More information

Assignment. To New Heights! Variance in Subjective and Random Samples. Use the table to answer Questions 2 through 7.

Assignment. To New Heights! Variance in Subjective and Random Samples. Use the table to answer Questions 2 through 7. Assignment Assignment for Lesson.1 Name Date To New Heights! Variance in Subjective and Random Samples 1. Suppose that you have collected data for the weights of all of the crates in a warehouse. a. Give

More information

Dear Future AP Statistics Student,

Dear Future AP Statistics Student, Dear Future AP Statistics Student, In order to ensure we have adequate time for all curriculum in Advanced Placement Statistics, the math department has designed a pre-assignment to help introduce the

More information

Chapter 12 Practice Test

Chapter 12 Practice Test Chapter 12 Practice Test 1. Which of the following is not one of the conditions that must be satisfied in order to perform inference about the slope of a least-squares regression line? (a) For each value

More information

One-factor ANOVA by example

One-factor ANOVA by example ANOVA One-factor ANOVA by example 2 One-factor ANOVA by visual inspection 3 4 One-factor ANOVA H 0 H 0 : µ 1 = µ 2 = µ 3 = H A : not all means are equal 5 One-factor ANOVA but why not t-tests t-tests?

More information

Chapter 5: Methods and Philosophy of Statistical Process Control

Chapter 5: Methods and Philosophy of Statistical Process Control Chapter 5: Methods and Philosophy of Statistical Process Control Learning Outcomes After careful study of this chapter You should be able to: Understand chance and assignable causes of variation, Explain

More information

Math 230 Exam 1 Name October 2, 2002

Math 230 Exam 1 Name October 2, 2002 Math 230 Exam 1 Name October 2, 2002 Instructions:Please read and answer each question carefully. When answering questions, use complete sentences. For full credit, make sure that your answers have statistical

More information

Unit 4: Inference for numerical variables Lecture 3: ANOVA

Unit 4: Inference for numerical variables Lecture 3: ANOVA Unit 4: Inference for numerical variables Lecture 3: ANOVA Statistics 101 Thomas Leininger June 10, 2013 Announcements Announcements Proposals due tomorrow. Will be returned to you by Wednesday. You MUST

More information

1. The data in the following table represent the number of miles per gallon achieved on the highway for compact cars for the model year 2005.

1. The data in the following table represent the number of miles per gallon achieved on the highway for compact cars for the model year 2005. Millersville University Name Department of Mathematics MATH 130, Elements of Statistics I, Test 2 March 5, 2010, 10:00AM-10:50AM Please answer the following questions. Your answers will be evaluated on

More information

Statistical Analysis of PGA Tour Skill Rankings USGA Research and Test Center June 1, 2007

Statistical Analysis of PGA Tour Skill Rankings USGA Research and Test Center June 1, 2007 Statistical Analysis of PGA Tour Skill Rankings 198-26 USGA Research and Test Center June 1, 27 1. Introduction The PGA Tour has recorded and published Tour Player performance statistics since 198. All

More information

(c) The hospital decided to collect the data from the first 50 patients admitted on July 4, 2010.

(c) The hospital decided to collect the data from the first 50 patients admitted on July 4, 2010. Math 155, Test 1, 18 October 2011 Name: Instructions. This is a closed-book test. You may use a calculator (but not a cell phone). Make sure all cell-phones are put away and that the ringer is off. Show

More information

PLANNED ORTHOGONAL CONTRASTS

PLANNED ORTHOGONAL CONTRASTS PLANNED ORTHOGONAL CONTRASTS Please note: This handout is useful background for the workshop, not what s covered in it. Basic principles for contrasts are the same in repeated measures. Planned orthogonal

More information

Empirical Example II of Chapter 7

Empirical Example II of Chapter 7 Empirical Example II of Chapter 7 1. We use NBA data. The description of variables is --- --- --- storage display value variable name type format label variable label marr byte %9.2f =1 if married wage

More information

Driv e accu racy. Green s in regul ation

Driv e accu racy. Green s in regul ation LEARNING ACTIVITIES FOR PART II COMPILED Statistical and Measurement Concepts We are providing a database from selected characteristics of golfers on the PGA Tour. Data are for 3 of the players, based

More information

Practice Test Unit 6B/11A/11B: Probability and Logic

Practice Test Unit 6B/11A/11B: Probability and Logic Note to CCSD Pre-Algebra Teachers: 3 rd quarter benchmarks begin with the last 2 sections of Chapter 6, and then address Chapter 11 benchmarks; logic concepts are also included. We have combined probability

More information

Practice Test Unit 06B 11A: Probability, Permutations and Combinations. Practice Test Unit 11B: Data Analysis

Practice Test Unit 06B 11A: Probability, Permutations and Combinations. Practice Test Unit 11B: Data Analysis Note to CCSD HS Pre-Algebra Teachers: 3 rd quarter benchmarks begin with the last 2 sections of Chapter 6 (probability, which we will refer to as 6B), and then address Chapter 11 benchmarks (which will

More information

MATH 118 Chapter 5 Sample Exam By: Maan Omran

MATH 118 Chapter 5 Sample Exam By: Maan Omran MATH 118 Chapter 5 Sample Exam By: Maan Omran Problem 1-4 refer to the following table: X P Product a 0.2 d 0 0.1 e 1 b 0.4 2 c? 5 0.2? E(X) = 1.7 1. The value of a in the above table is [A] 0.1 [B] 0.2

More information

May 11, 2005 (A) Name: SSN: Section # Instructors : A. Jain, H. Khan, K. Rappaport

May 11, 2005 (A) Name: SSN: Section # Instructors : A. Jain, H. Khan, K. Rappaport MATH 333: Probability & Statistics. Final Examination (Spring 2005) May 11, 2005 (A) NJIT Name: SSN: Section # Instructors : A. Jain, H. Khan, K. Rappaport Must show all work to receive full credit. I

More information

Ch. 8 Review Analyzing Data and Graphs

Ch. 8 Review Analyzing Data and Graphs How to find the Median Value It's the middle number in a sorted list. To find the Median, place the numbers you are given in value order and find the middle number. Look at these numbers: 3, 13, 7, 5,

More information

Quantitative Literacy: Thinking Between the Lines

Quantitative Literacy: Thinking Between the Lines Quantitative Literacy: Thinking Between the Lines Crauder, Noell, Evans, Johnson Chapter 6: Statistics 2013 W. H. Freeman and Company 1 Chapter 6: Statistics Lesson Plan Data summary and presentation:

More information

3.3 - Measures of Position

3.3 - Measures of Position 3.3 - Measures of Position Z-Scores Who is taller, a man 73 inches tall or a woman 68 inches tall? The obvious answer is that the man is taller. However, men are taller than women on the average. Let s

More information

Full file at

Full file at Chapter 2 1. Describe the distribution. survival times of persons diagnosed with terminal lymphoma A) approximately normal B) skewed left C) skewed right D) roughly uniform Ans: C Difficulty: low 2. Without

More information

ASTERISK OR EXCLAMATION POINT?: Power Hitting in Major League Baseball from 1950 Through the Steroid Era. Gary Evans Stat 201B Winter, 2010

ASTERISK OR EXCLAMATION POINT?: Power Hitting in Major League Baseball from 1950 Through the Steroid Era. Gary Evans Stat 201B Winter, 2010 ASTERISK OR EXCLAMATION POINT?: Power Hitting in Major League Baseball from 1950 Through the Steroid Era by Gary Evans Stat 201B Winter, 2010 Introduction: After a playerʼs strike in 1994 which resulted

More information

Chapter 2 - Frequency Distributions and Graphs

Chapter 2 - Frequency Distributions and Graphs - Frequency Distributions and Graphs 1. Which of the following does not need to be done when constructing a frequency distribution? A) select the number of classes desired B) find the range C) make the

More information

Box-and-Whisker Plots

Box-and-Whisker Plots 7.2 Box-and-Whisker Plots Essential Question How can you use a box-and-whisker plot to describe a data set? Drawing a Box-and-Whisker Plot 3 9 23 62 3 Numbers of First Cousins 0 3 9 3 45 24 8 0 3 3 6 8

More information

Chapter 9: Hypothesis Testing for Comparing Population Parameters

Chapter 9: Hypothesis Testing for Comparing Population Parameters Chapter 9: Hypothesis Testing for Comparing Population Parameters Hypothesis testing can address many di erent types of questions. We are not restricted to looking at the estimated value of a single population

More information

Sample Final Exam MAT 128/SOC 251, Spring 2018

Sample Final Exam MAT 128/SOC 251, Spring 2018 Sample Final Exam MAT 128/SOC 251, Spring 2018 Name: Each question is worth 10 points. You are allowed one 8 1/2 x 11 sheet of paper with hand-written notes on both sides. 1. The CSV file citieshistpop.csv

More information

Studying some aspects of data from the professional Dutch soccer competition: Is an artificial turf field advantageous for home performances.

Studying some aspects of data from the professional Dutch soccer competition: Is an artificial turf field advantageous for home performances. Studying some aspects of data from the professional Dutch soccer competition: Is an artificial turf field advantageous for home performances. By Dieuwe van Bergen en Henegouwen December, 2014 Studying

More information

Addendum to SEDAR16-DW-22

Addendum to SEDAR16-DW-22 Addendum to SEDAR16-DW-22 Introduction Six king mackerel indices of abundance, two for each region Gulf of Mexico, South Atlantic, and Mixing Zone, were constructed for the SEDAR16 data workshop using

More information

United States Commercial Vertical Line Vessel Standardized Catch Rates of Red Grouper in the US South Atlantic,

United States Commercial Vertical Line Vessel Standardized Catch Rates of Red Grouper in the US South Atlantic, SEDAR19-DW-14 United States Commercial Vertical Line Vessel Standardized Catch Rates of Red Grouper in the US South Atlantic, 1993-2008 Kevin McCarthy and Neil Baertlein National Marine Fisheries Service,

More information

Class 23: Chapter 14 & Nested ANOVA NOTES: NOTES: NOTES:

Class 23: Chapter 14 & Nested ANOVA NOTES: NOTES: NOTES: Slide 1 Chapter 13: ANOVA for 2-way classifications (2 of 2) Fixed and Random factors, Model I, Model II, and Model III (mixed model) ANOVA Chapter 14: Unreplicated Factorial & Nested Designs Slide 2 HW

More information

Manual of Petroleum Measurement Standards Chapter 13 Statistical Aspects of Measuring and Sampling

Manual of Petroleum Measurement Standards Chapter 13 Statistical Aspects of Measuring and Sampling Manual of Petroleum Measurement Standards Chapter 13 Statistical Aspects of Measuring and Sampling Section 2 Methods of Evaluating Meter Proving Data SECOND EDITION, DRAFT 2017 This document is not an

More information

Legendre et al Appendices and Supplements, p. 1

Legendre et al Appendices and Supplements, p. 1 Legendre et al. 2010 Appendices and Supplements, p. 1 Appendices and Supplement to: Legendre, P., M. De Cáceres, and D. Borcard. 2010. Community surveys through space and time: testing the space-time interaction

More information

Understanding Winter Road Conditions in Yellowstone National Park Using Cumulative Sum Control Charts

Understanding Winter Road Conditions in Yellowstone National Park Using Cumulative Sum Control Charts 1 Understanding Winter Road Conditions in Yellowstone National Park Using Cumulative Sum Control Charts Amber Nuxoll April 1st, 2014 Contents 1 Introduction 2 2 Data Collection and Background 2 3 Exploratory

More information

Standardized catch rates of yellowtail snapper ( Ocyurus chrysurus

Standardized catch rates of yellowtail snapper ( Ocyurus chrysurus Standardized catch rates of yellowtail snapper (Ocyurus chrysurus) from the Marine Recreational Fisheries Statistics Survey in south Florida, 1981-2010 Introduction Yellowtail snapper are caught by recreational

More information

PRACTICE PROBLEMS FOR EXAM 1

PRACTICE PROBLEMS FOR EXAM 1 ST 311 PRACTICE PROBLEMS FOR EXAM 1 Topics covered on Exam 1: Chapters 1-7 in text. Reiland This material is covered in webassign homework assignments 1 through 4 and worksheets 1-7. " Exam information:

More information

1 Hypothesis Testing for Comparing Population Parameters

1 Hypothesis Testing for Comparing Population Parameters Hypothesis Testing for Comparing Population Parameters Hypothesis testing can address many di erent types of questions. We are not restricted to looking at the estimated value of a single population parameter.

More information

Fluids. How do fluids exert pressure? What causes objects to float? What happens when pressure in a fluid changes? What affects the speed of a fluid?

Fluids. How do fluids exert pressure? What causes objects to float? What happens when pressure in a fluid changes? What affects the speed of a fluid? CHAPTER 3 SECTION 3 States of Matter Fluids KEY IDEAS As you read this section, keep these questions in mind: How do fluids exert pressure? What causes objects to float? What happens when pressure in a

More information

Psychology - Mr. Callaway/Mundy s Mill HS Unit Research Methods - Statistics

Psychology - Mr. Callaway/Mundy s Mill HS Unit Research Methods - Statistics Psychology - Mr. Callaway/Mundy s Mill HS Unit 2.3 - Research Methods - Statistics How do psychologists ask & answer questions? Last time we asked that we were discussing Research Methods. This time we

More information

Case Processing Summary. Cases Valid Missing Total N Percent N Percent N Percent % 0 0.0% % % 0 0.0%

Case Processing Summary. Cases Valid Missing Total N Percent N Percent N Percent % 0 0.0% % % 0 0.0% GET FILE='C:\Users\acantrell\Desktop\demo5.sav'. DATASET NAME DataSet1 WINDOW=FRONT. EXAMINE VARIABLES=PASSYDSPG RUSHYDSPG /PLOT BOXPLOT HISTOGRAM /COMPARE GROUPS /STATISTICS DESCRIPTIVES /CINTERVAL 95

More information

CHAPTER 1 ORGANIZATION OF DATA SETS

CHAPTER 1 ORGANIZATION OF DATA SETS CHAPTER 1 ORGANIZATION OF DATA SETS When you collect data, it comes to you in more or less a random fashion and unorganized. For example, what if you gave a 35 item test to a class of 50 students and collect

More information

REVISITING THE HAZARD ANALYSIS. John E. Rushing, Ph.D. Professor Emeritus, North Carolina State University Principal, Food Technology Consulting, LLC

REVISITING THE HAZARD ANALYSIS. John E. Rushing, Ph.D. Professor Emeritus, North Carolina State University Principal, Food Technology Consulting, LLC REVISITING THE HAZARD ANALYSIS John E. Rushing, Ph.D. Professor Emeritus, North Carolina State University Principal, Food Technology Consulting, LLC Principle #1 of HACCP -- Conduct a Hazard Analysis Which

More information

Hook Selectivity in Gulf of Mexico Gray Triggerfish when using circle or J Hooks

Hook Selectivity in Gulf of Mexico Gray Triggerfish when using circle or J Hooks Hook Selectivity in Gulf of Mexico Gray Triggerfish when using circle or J Hooks Alisha M. Gray and Beverly Sauls SEDAR43- WP- 09 25 March 2015 This information is distributed solely for the purpose of

More information

Preview. Second midterm Tables in your paper Mass Transit as alternative to auto California s problems in urban transportation

Preview. Second midterm Tables in your paper Mass Transit as alternative to auto California s problems in urban transportation Preview Second midterm Tables in your paper Mass Transit as alternative to auto California s problems in urban transportation Score Distribution 1 st Midterm 2 nd Midterm 3.5-4.0 8% 21% 3.0-3.5 23% 34%

More information

Midterm Exam 1, section 2. Thursday, September hour, 15 minutes

Midterm Exam 1, section 2. Thursday, September hour, 15 minutes San Francisco State University Michael Bar ECON 312 Fall 2018 Midterm Exam 1, section 2 Thursday, September 27 1 hour, 15 minutes Name: Instructions 1. This is closed book, closed notes exam. 2. You can

More information

Paul M. Sommers. March 2010 MIDDLEBURY COLLEGE ECONOMICS DISCUSSION PAPER NO

Paul M. Sommers. March 2010 MIDDLEBURY COLLEGE ECONOMICS DISCUSSION PAPER NO IS THERE HOME-FIELD ADVANTAGE IN INTERLEAGUE PLAY? by Paul M. Sommers March 2010 MIDDLEBURY COLLEGE ECONOMICS DISCUSSION PAPER NO. 10-12 DEPARTMENT OF ECONOMICS MIDDLEBURY COLLEGE MIDDLEBURY, VERMONT 05753

More information

Confidence Intervals with proportions

Confidence Intervals with proportions Confidence Intervals with proportions a.k.a., 1-proportion z-intervals AP Statistics Chapter 19 1-proportion z-interval Statistic + Critical value Standard deviation of the statistic POINT ESTIMATE STANDARD

More information

Pearson Edexcel Level 3 GCE Psychology Advanced Subsidiary Paper 2: Biological Psychology and Learning Theories

Pearson Edexcel Level 3 GCE Psychology Advanced Subsidiary Paper 2: Biological Psychology and Learning Theories Write your name here Surname Other names Centre Number Candidate Number Pearson Edexcel Level 3 GCE Psychology Advanced Subsidiary Paper 2: Biological Psychology and Learning Theories Monday 23 May 2016

More information

Distancei = BrandAi + 2 BrandBi + 3 BrandCi + i

Distancei = BrandAi + 2 BrandBi + 3 BrandCi + i . Suppose that the United States Golf Associate (USGA) wants to compare the mean distances traveled by four brands of golf balls when struck by a driver. A completely randomized design is employed with

More information

Table 1: Eastern Conference Final Standings (Sorted by Current Scoring System)

Table 1: Eastern Conference Final Standings (Sorted by Current Scoring System) Here is the full text that we sent to The Hockey News that appeared in the February 13, 2012 Issue under the heading Just Win, Baby. Following that is some additional analyses that were too lengthy to

More information

h01: Perkovic Ch1 (Introduction to CS), 2.1, 2.2 (Expr, Vars, Assignment, Strings), 2.3 (Lists, Tuples)

h01: Perkovic Ch1 (Introduction to CS), 2.1, 2.2 (Expr, Vars, Assignment, Strings), 2.3 (Lists, Tuples) Name: (as it would appear on official course roster) Umail address: Optional: name you wish to be called if different from name above. Optional: name of "homework buddy" (leaving this blank signifies "I

More information

The Math and Science of Bowling

The Math and Science of Bowling The Report (100 : The Math and Science of Bowling 1. For this project, you will need to collect some data at the bowling alley. You will be on a team with one other student. Each student will bowl a minimum

More information

Math 146 Statistics for the Health Sciences Additional Exercises on Chapter 2

Math 146 Statistics for the Health Sciences Additional Exercises on Chapter 2 Math 146 Statistics for the Health Sciences Additional Exercises on Chapter 2 Student Name: Solve the problem. 1) Scott Tarnowski owns a pet grooming shop. His prices for grooming dogs are based on the

More information

Safety Effectiveness of Pedestrian Crossing Treatments

Safety Effectiveness of Pedestrian Crossing Treatments Portland State University PDXScholar TREC Friday Seminar Series Transportation Research and Education Center (TREC) 10-13-2017 Safety Effectiveness of Pedestrian Crossing Treatments Christopher Monsere

More information

The Impact of Narrow Lane on Safety of the Arterial Roads. Hyeonsup Lim

The Impact of Narrow Lane on Safety of the Arterial Roads. Hyeonsup Lim The Impact of Narrow Lane on Safety of the Arterial Roads Hyeonsup Lim What do we know about Narrow Lane? AASHTO Green book, lane widths may vary from 10 to 12 feet for rural and urban arterials. NCHRP

More information

EXPLORING MOTIVATION AND TOURIST TYPOLOGY: THE CASE OF KOREAN GOLF TOURISTS TRAVELLING IN THE ASIA PACIFIC. Jae Hak Kim

EXPLORING MOTIVATION AND TOURIST TYPOLOGY: THE CASE OF KOREAN GOLF TOURISTS TRAVELLING IN THE ASIA PACIFIC. Jae Hak Kim EXPLORING MOTIVATION AND TOURIST TYPOLOGY: THE CASE OF KOREAN GOLF TOURISTS TRAVELLING IN THE ASIA PACIFIC Jae Hak Kim Thesis submitted for the degree of Doctor of Philosophy at the University of Canberra

More information

MGB 203B Homework # LSD = 1 1

MGB 203B Homework # LSD = 1 1 MGB 0B Homework # 4.4 a α =.05: t = =.05 LSD = α /,n k t.05, 7 t α /,n k MSE + =.05 700 + = 4.8 n i n j 0 0 i =, j = 8.7 0.4 7. i =, j = 8.7.7 5.0 i =, j = 0.4.7. Conclusion: µ differs from µ and µ. b

More information

Homework Exercises Problem Set 1 (chapter 2)

Homework Exercises Problem Set 1 (chapter 2) 1 Name: Homework Exercises Problem Set 1 (chapter 2) Exercise 2.5.1 The 10 third-grade students at Lake Wobegone elementary school took a spelling test with 10 words, each worth one point. Given that the

More information

STANDARD SCORES AND THE NORMAL DISTRIBUTION

STANDARD SCORES AND THE NORMAL DISTRIBUTION STANDARD SCORES AND THE NORMAL DISTRIBUTION REVIEW 1.MEASURES OF CENTRAL TENDENCY A.MEAN B.MEDIAN C.MODE 2.MEASURES OF DISPERSIONS OR VARIABILITY A.RANGE B.DEVIATION FROM THE MEAN C.VARIANCE D.STANDARD

More information

Housing Price and Rent Inflation after Hosting 2018 Winter Olympic Game in the city of Gangneung, Korea

Housing Price and Rent Inflation after Hosting 2018 Winter Olympic Game in the city of Gangneung, Korea Housing Price and Rent Inflation after Hosting 2018 Winter Olympic Game in the city of Gangneung, Korea Chul Sohn Gangneung-Wonju National University, Dept. of Urban Planning and Real Estate, College of

More information

Standard 3.1 The student will plan and conduct investigations in which

Standard 3.1 The student will plan and conduct investigations in which Teacher Name: Tammy Heddings Date: April 04, 2009 Grade Level: 3-6 Subject: Science Time: 30 minutes Concept: Scientific Investigation Topic: Variables SOLs: Standard 3.1 The student will plan and conduct

More information

Persistence racial difference in socioeconomic outcomes. Are Emily and Greg More Employable than Lakisha and Jamal?

Persistence racial difference in socioeconomic outcomes. Are Emily and Greg More Employable than Lakisha and Jamal? Are Emily and Greg More Employable than Lakisha and Jamal? Bertrand and Mullainathan Persistence racial difference in socioeconomic outcomes Large difference in outcomes between similarly defined blacks

More information

Week 1, Lesson Plan for Success 2. Interactive Notebook 3. HW: Factoring Worksheet. Alg 4 Questionaire.2.docx.

Week 1, Lesson Plan for Success 2. Interactive Notebook 3. HW: Factoring Worksheet. Alg 4 Questionaire.2.docx. Essential Question Essential Question Essential Question Essential Question Essential Question Essential Question Essential Question Essential Question Essential Question Week 1, Lesson 1 1. Plan for Success

More information

Displaying Quantitative (Numerical) Data with Graphs

Displaying Quantitative (Numerical) Data with Graphs Displaying Quantitative (Numerical) Data with Graphs DOTPLOTS: One of the simplest graphs to construct and interpret is a dotplot. Each data value is shown as a dot above its location on a number line.

More information

Announcements. % College graduate vs. % Hispanic in LA. % College educated vs. % Hispanic in LA. Problem Set 10 Due Wednesday.

Announcements. % College graduate vs. % Hispanic in LA. % College educated vs. % Hispanic in LA. Problem Set 10 Due Wednesday. Announcements Announcements UNIT 7: MULTIPLE LINEAR REGRESSION LECTURE 1: INTRODUCTION TO MLR STATISTICS 101 Problem Set 10 Due Wednesday Nicole Dalzell June 15, 2015 Statistics 101 (Nicole Dalzell) U7

More information

PROJECTS STREETS

PROJECTS STREETS 2009 Actual 2009 2010 Actual 2010 2011 Actual 2011 2012 Actual 2012 2013 Actual 2013 11,320 11,774 275 162 3,077 1,200 2,987 1,377 875 1,545 350 2,652 8,781 7,890 2,564 2,275 Pool 884 493 1,844 589 240

More information

1 8 Practice Perimeter Circumference And Area Answers Form G

1 8 Practice Perimeter Circumference And Area Answers Form G 1 8 Practice Perimeter Circumference And Area Answers Form G We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer,

More information

Advanced Metrics Matchup Guide

Advanced Metrics Matchup Guide Advanced Metrics Matchup Guide 11/19/15 All weekly metrics are based on same season data. These metrics are designed to give you an early glimpse at what offenses will face when they step onto the field.

More information

Is lung capacity affected by smoking, sport, height or gender. Table of contents

Is lung capacity affected by smoking, sport, height or gender. Table of contents Sample project This Maths Studies project has been graded by a moderator. As you read through it, you will see comments from the moderator in boxes like this: At the end of the sample project is a summary

More information

STAT 155 Introductory Statistics. Lecture 2: Displaying Distributions with Graphs

STAT 155 Introductory Statistics. Lecture 2: Displaying Distributions with Graphs The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL STAT 155 Introductory Statistics Lecture 2: Displaying Distributions with Graphs 8/29/06 Lecture 2-1 1 Recall Statistics is the science of data. Collecting

More information