Nonparametric Methods

Size: px
Start display at page:

Download "Nonparametric Methods"

Transcription

1 Nonparametric Methods Marc H. Mehlman University of New Haven Nonparametric Methods, or Distribution Free Methods is for testing from a population without knowing anything about the population s distribution. (University of New Haven) Nonparametric Methods 1 / 44

2 Table of Contents 1 Sign Test for Median of Ordinal Data 2 Wilcoxon Signed Ranks Test for Matched Pairs 3 Wilcoxon Rank Sum Test for Two Independent Samples 4 Kruskal Wallis Test for Multiple Independent Samples 5 Spearman Rank Correlation Test for Bivariate Data 6 Chapter #12 R Assignment (University of New Haven) Nonparametric Methods 2 / 44

3 Advantages and Disadvantages to Nonparametric Methods Advantages of Nonparametric Methods Less assumptions so nonparametric methods can be used in more situations. Computations are often simple and easier to understand. Less sensitive to outliers that are actually incorrect observations. Disadvantages of Nonparametric Methods Information is wasted when numerical data is converted into rank data so conclusions tend to be weaker. Underestimates the effect of correct outliers. (University of New Haven) Nonparametric Methods 3 / 44

4 Definition Let T 1 and T 2 be two tests statistics of H 0 versus H 1. Let n 1 and n 2 be the minimum sample sizes to achieve a test of power β and size α using T 1 or T 2 respectively. The Pitman asymptotic relative efficiency, ARE(T 1, T 2 ), of test statistic, T 1, to test statistic, T 2, is the limit, if it exists, of the ratios n 2 /n 1 as n 1. The ARE of a parametric Test to a nonparametric test is generally less than one because one must give up some efficiency in return for less assumptions. (University of New Haven) Nonparametric Methods 4 / 44

5 Sign Test for Median of Ordinal Data Sign Test for Median of Ordinal Data Sign Test for Median of Ordinal Data A nonparametric version of the one sample t test, with ARE = 2 π = (University of New Haven) Nonparametric Methods 5 / 44

6 Sign Test Sign Test for Median of Ordinal Data Situations for using the Sign Test Test of Magnitude between Matched Pairs, (x 1, y 1 ), (x 2, y 2 ), (x n.y n). For any (x j, y j ) s such that x j = y j, delete (x j, y j ) from the sample and readjust n, the sample size. Let H 0 : P(X > Y ) = P(Y > X ) d j def = y j x j x def = min(# of positive d j s, # of negative d j s). Test for Median of a x 1, x 2,, x n. Fixed M. For andy x j s such that x j = M, delete x j from the sample and readjust n, the sample size. Let H 0 : median = M d j def = x j M x def = min(# of positive d j s, # of negative d j s). (University of New Haven) Nonparametric Methods 6 / 44

7 Sign Test Sign Test for Median of Ordinal Data Situations for using the Sign Test Test of Distribution of Nominal Data where x 1,, x n. Let H 0 : P(X = first value) = P(X = second value) { def 1 if x j = first value d j = 0 if x j = second value n n x def = min( d j, 1 d j ) j=1 j=1 = min (# first values, # second values). Nominal data need not be numbers. The two Situations for using the Sign Test on the previous slide are just special cases of the situation above were what was being counted was + s and s. (University of New Haven) Nonparametric Methods 7 / 44

8 Sign Test Sign Test for Median of Ordinal Data Theorem (Sign Test for x 25) The test statistic is x and the critical values are found in Table A 7. Theorem (Sign Test for x > 25) The test statistic is z = (x+0.5) n/2 n/2 normal. which is approximately standard (University of New Haven) Nonparametric Methods 8 / 44

9 Sign Test for Median of Ordinal Data (University of New Haven) Nonparametric Methods 9 / 44

10 Sign Test Sign Test for Median of Ordinal Data Sign Test Example You re a marketing analyst for Chefs-R-Us. You ve asked 8 people to rate a new ravioli on a 5-point Likert scale 1 = terrible to 5 = excellent The ratings are: At the.05 level, is there evidence that the median rating is at least 3? 22 H 0 : median = 3 versus H A : median < 3 Table A 7 says to reject at 0.05 significance level since x = 1. (University of New Haven) Nonparametric Methods 10 / 44

11 Sign Test Sign Test for Median of Ordinal Data Example (example solution using R) > install.packages("bsda") > library(bsda) > dat=c(2,4,1,2,1,1,2,1) > SIGN.test(dat,md=3,alternative="less") One-sample Sign-Test data: dat s = 1, p-value = alternative hypothesis: true median is less than 3 95 percent confidence interval: -Inf 2 sample estimates: median of x 1.5 Conf.Level L.E.pt U.E.pt Lower Achieved CI Inf 2 Interpolated CI Inf 2 Upper Achieved CI Inf 2 (University of New Haven) Nonparametric Methods 11 / 44

12 Wilcoxon Signed Ranks Test for Matched Pairs Wilcoxon Signed Ranks Test for Matched Pairs Wilcoxon Signed Ranks Test for Matched Pairs A nonparametric version of the matched pair one sample t test, with ARE = 3 π = (University of New Haven) Nonparametric Methods 12 / 44

13 Wilcoxon Signed Ranks Test for Matched Pairs Wilcoxon Signed Ranks Test Given (x 1, y 1 ), (x 2, y 2 ),, (x n, y n), define d j def = y j x y. Discard all bivariate data with d j = 0 (and readjust the sample size n). Next rank the d j s from smallest to largest. For ties, reassign them the average of their would be ranks. (For ties, there is better way than averaging the ranks, but it is more complicated.) Definition The Wilcoxon Signed Rank Statistics are t +(ω) def = sum of ranks of the positive d j s, t (ω) def = sum of ranks of the negative d j s and t def = min(t, t +). Frank Wilcoxon ( ), American Since the Wilcoxon Signed-Ranks Test takes into account both the signs and the ranks of the d j s, it obtains a higher ARE. (University of New Haven) Nonparametric Methods 13 / 44

14 Wilcoxon Signed Ranks Test for Matched Pairs Wilcoxon Signed Ranks Test Example Let (7.4, 5.5), (5.5, 3.2), (5.6, 6.0), (7.9, 4.5), (6.7, 6.7), (6.5, 3.0), (7.8, 4.8), (3.5, 6.3) be a matched pair random sample. Calculate the Wilcoxon Signed Rank Statistics. Solution: After eliminating d 5 = 0 and reducing the sample size to 7, d 1 = 1.9, d 2 = 2.3, d 3 = 0.4, d 4 = 3.4, d 5 = 3.5, d 6 = 3.0, d 7 = 2.8 so one has rank magnitude d 3 d 1 d 2 d 7 d 6 d 4 d 5 p/m Thus t + = = 23 t = = 5, t = 5. (University of New Haven) Nonparametric Methods 14 / 44

15 Wilcoxon Signed Ranks Test for Matched Pairs Wilcoxon Signed Ranks Test Theorem (Wilcoxon Signed Rank Test) Given a random bivariate sample, (x 1, y 1 ), (x 2, y 2 ),, (x n, y n ), such that def the distribution of the differences, d j = y j x j, is approximately symmetric about zero and has a median of M, consider H 0 : M = 0 versus H A : not H 0. Then a conservative test of H 0 versus H A is is to use t if n 30 t n(n+1)/4 z = if n > 30 n(n+1)(2n+1)/24 as the test statistic. Use Table A 8 if n 30 and assume that Z N(0, 1) if n > 30. (University of New Haven) Nonparametric Methods 15 / 44

16 Wilcoxon Signed Ranks Test for Matched Pairs (University of New Haven) Nonparametric Methods 16 / 44

17 Wilcoxon Signed Ranks Test for Matched Pairs Wilcoxon Signed Ranks Test Example (continued) Using data from the above Example, find p value of H 0 : population differences have a median of 0 versus H A : not H 0. Solution: Here n = 7. The approximate p value is smallest α such that t = 5 < t α. From A 8 one has the p value > 0.1. Using R: > xdat=c(7.4,5.5,5.6,7.9,6.5,7.8,3.5) > ydat=c(5.5,3.2,6.0,4.5,3.0,4.8,6.3) > wilcox.test(xdat,ydat,paired=true) Wilcoxon signed rank test data: xdat and yydat V = 23, p-value = alternative hypothesis: true location shift is not equal to 0 (University of New Haven) Nonparametric Methods 17 / 44

18 Wilcoxon Rank Sum Test for Two Independent Samples Wilcoxon Rank Sum Test for Two Independent Samples Wilcoxon Rank Sum Test for Two Independent Samples A nonparametric version of the two sample t test, with ARE of = 3 π = (University of New Haven) Nonparametric Methods 18 / 44

19 Wilcoxon Rank Sum Test for Two Independent Samples Wilcoxon Rank Sum Test for Two Independent Samples This test is equivalent to the Mann Whitney Test. With a high ARE it is very efficient. Assume one has a random sample from two different populations, namely and an independent population One wishes to test x 1,, x n, y 1,, y m. H 0 : the two populations have equal medians versus H A : not H 0. (University of New Haven) Nonparametric Methods 19 / 44

20 Wilcoxon Rank Sum Test for Two Independent Samples Wilcoxon Rank Sum Test for Two Independent Samples To obtain test statistics, combine the 2 random samples and order them according to increasing size. One frequently assumes the distributions, F X ( ) and F Y ( ), to be continuous to prevent the possibility of ties when ordering by size (if there are ties average their ranks). Example (Drug Example) Consider (University of New Haven) Nonparametric Methods 20 / 44

21 Wilcoxon Rank Sum Test for Two Independent Samples Wilcoxon Rank Sum Test for Two Independent Samples Example (Five x s and Four y s Example) Let a random sample of X be and a random sample of Y be Then the combined sample is rank value x/y y x x y y x x x y Note that in general, there exists ( ) n+m n possible rankings and under H0 they are all equally likely.. (University of New Haven) Nonparametric Methods 21 / 44

22 Wilcoxon Rank Sum Test for Two Independent Samples Wilcoxon Rank Sum Test for Two Independent Samples Definition After creating the combined, ranked sample, let W n,m x W n,m y def = sum of the ranks of the x s and def = sum of the ranks of the y s. The Wilcoxon statistics are W n,m x and W n,m y. Example (Five x s and Four y s Example, continued) wx 5,4 = = 26, wy 5,4 = = 19, (University of New Haven) Nonparametric Methods 22 / 44

23 Wilcoxon Rank Sum Test for Two Independent Samples Wilcoxon Rank Sum Test for Two Independent Samples Theorem One has n(n + m + 1) µ W n,m = x 2 and Theorem (Wilcoxon Rank Sum Test) To test let σ W n,m x = nm(n + m + 1). 12 H 0 : the two populations have equal medians versus H A : not H 0. = W x n,m Z def µ W n,m x σ W n,m x be the test statistic. Then if n, m > 10 then Z is approximately N(0, 1). (University of New Haven) Nonparametric Methods 23 / 44

24 Wilcoxon Rank Sum Test for Two Independent Samples Wilcoxon Rank Sum Test for Two Independent Samples Example (Drug Example, continued) µ W 12,12 x σ W 12,12 x Using a two sided test, 12( ) = = ( ) = = Z = 10 = p value = 2P(Z ) = (University of New Haven) Nonparametric Methods 24 / 44

25 Wilcoxon Rank Sum Test for Two Independent Samples Wilcoxon Rank Sum Test for Two Independent Samples Example (Drug Example continued with R) > xdat=c(11,15, 9, 4,34,17,18,14,12,13,26,31) > ydat=c(34,31,35,29,28,12,18,30,14,22,10,29) > sum(rank(c(xdat,ydat))[1:12]) [1] > wilcox.test(xdat,ydat,correct=false) Wilcoxon rank sum test data: xdat and ydat W = 41.5, p-value = alternative hypothesis: true location shift is not equal to 0 Warning message: In wilcox.test.default(xdat, ydat, correct = FALSE) : cannot compute exact p-value with ties (University of New Haven) Nonparametric Methods 25 / 44

26 Kruskal Wallis Test for Multiple Independent Samples Kruskal Wallis Test for Multiple Independent Samples Kruskal Wallis Test for Multiple Independent Samples Nonparametric version of the ANOVA F test, with ARE of = 3 π = (University of New Haven) Nonparametric Methods 26 / 44

27 Kruskal Wallis Test for Multiple Independent Samples Kruskal Wallis Test This nonparametric test is for a one factor ANOVA design without any assumptions of normal error. Furthermore, there is also no assumption that the one way layout is balanced. Definition The Kruskal Wallis Test (also called the H test) is a nonparametric ANOVA-like test that uses the ranks for sample data from k independent populations (k 2). One test H 0 : the populations have the same median versus H A : not H 0. The test is similar to the Wilcoxon Rank Sum Test in that it takes rankings into consideration. In fact, if k = 2, the Kruskal Wallis test is equivalent to the Wilcoxon Rank Sum Test! (University of New Haven) Nonparametric Methods 27 / 44

28 Kruskal Wallis Test for Multiple Independent Samples Kruskal Wallis Test Conditions for Kruskal Wallis Test 1 There are k independent random samples where k 2. 2 The sample size of the j th sample is n j 5. 3 The total number of observations is N = k j=1 n j. Procedure for Finding Value of Test Statistic H 1 Combine all the samples into one big sample, sort for lowest to highest, and assign a rank to each sample value. In the cases of ties, assign to each observation the average of the ranks involved. 2 For each sample, let R j def = the sum of ranks for sample j. (University of New Haven) Nonparametric Methods 28 / 44

29 Kruskal Wallis Test for Multiple Independent Samples Kruskal Wallis Test Definition The Kruskal Wallis Test Statistic is H def = Theorem (Kruskal Wallis) For testing 12 N(N + 1) k j=1 R 2 j n j 3 (N + 1). H 0 : the k populations have equal medians versus H A : not H 0. use a right hand test on the test statistic H. The test statistic is approximately χ 2 (k 1). (University of New Haven) Nonparametric Methods 29 / 44

30 Kruskal Wallis Test for Multiple Independent Samples Kruskal Wallis Test From Nonparametric Statistical Methods, by Myles Hollander, Douglas A. Wolfe and Eric Chicken, third edition, 2014, John Wiley & Sons. where H def = H ( g ), 1 j=1 (t3 j t j )/(N 3 N) g def = number of tied groups t j def = size of tied group j One can even use this formula for groups of one. If there are no ties, one just has H. When there are ties it is best to use H instead of H in the Kruskal Wallis Test. Our textbook, Biostatistics for Biology and Health Sciences, by Marc M. Triola and Mario F. Triola does not define or use H when there are ties, but R does. (University of New Haven) Nonparametric Methods 30 / 44

31 Kruskal Wallis Test for Multiple Independent Samples Kruskal Wallis Test Example The built in R dataset airquality contains daily air quality measurements in New York, May to September One wants to test if the medians of the five monthly ozone counts are equal. H 0 : the 5 month s daily ozone readings have equal medians H A : not H 0. versus Using R: > kruskal.test(ozone~month, data=airquality) Kruskal-Wallis rank sum test data: Ozone by Month Kruskal-Wallis chi-squared = , df = 4, p-value = 6.901e-06 With such a low p value, one rejects H 0. (University of New Haven) Nonparametric Methods 31 / 44

32 Spearman Rank Correlation Test for Bivariate Data Spearman Rank Correlation Test for Bivariate Data Spearman Rank Correlation Test for Bivariate Data A nonparametric version of the Pearson Correlation test, with an ARE of (3/π) 2 = (University of New Haven) Nonparametric Methods 32 / 44

33 Spearman Rank Correlation Test for Bivariate Data Rank Correlation Given a paired random sample, (X 1, Y 1 ),, (X n, Y n ), from a continuous joint distribution, F XY (, ), one desires to test H 0 : There is no monotonic association between the two variables versus H A : not H 0. A Monotonic association between X and Y means that there is either a positive association between X and Y or there is a positive association between X and Y. (University of New Haven) Nonparametric Methods 33 / 44

34 Spearman Rank Correlation Test for Bivariate Data Rank Correlation Suppose the paired random sample, (x 1, y 1 ),, (x n, y n ) has been transformed into paired random sample of ranks, (u 1, v 1 ),, (u n, v n ), (if there are ties average their ranks) where u j def = the rank order of the x j among all the x i s and v j def = the rank order of the y j among all the y i s. Definition The Spearman s Rank Correlation Coefficient, r s, of a matched paired random sample, (x 1, y 1 ),, (x n, y n ) is the Pearson Product Moment Correlation Coefficient, r p, of the matched paired random sample, (u 1, v 1 ),, (u n, v n ), formed from the ranks of the original matched paired random sample. Charles Spearman ( ), English psychologist (University of New Haven) Nonparametric Methods 34 / 44

35 Spearman Rank Correlation Test for Bivariate Data Rank Correlation Advantages of Spearman over Pearson 1 One can use Spearman s Rank Correlation Coefficient for matched pair ordinal data. 2 Spearman s Rank Correlation Coefficient can detect monotonic non linear tendencies between two variables. Disadvantages 1 Less efficient than Pearson s Rank Correlation Coefficient. (University of New Haven) Nonparametric Methods 35 / 44

36 Spearman Rank Correlation Test for Bivariate Data Rank Correlation Theorem (Spearman Rank Correlation Test) Given a paired random sample, (X 1, Y 1 ),, (X n, Y n) let H 0 : There is no monotonic association between the two variables versus H A : not H 0. Then 1 6 n j=1 dj 2 n(n 2 1) r s = ) n n ( n nj=1 )( nj=1 ) j=1 x j y j x j y j ( nj=1 ( x j 2 nj=1 ) 2 ( nj=1 x j n y j 2 if there are no ties ) ( nj=1 ) 2 if there are ties y j be the test statistic. For critical values, use Table A-9 if n 30. If n > 30. the critical values are r s = ±z n 1 where ±z are the corresponding critical values from N(0, 1). (University of New Haven) Nonparametric Methods 36 / 44

37 Spearman Rank Correlation Test for Bivariate Data (University of New Haven) Nonparametric Methods 37 / 44

38 Spearman Rank Correlation Test for Bivariate Data Rank Correlation Example (Job Salary and Stress Rankings) Job Salary Rank Stress Rank d j dj 2 Stockbroker Zoologist Electrical Engineer School Principal Hotel Manager Bank Officer Occupational Safety Inspector Home Economist Psychologist Airline Pilot TOTAL 24 r s = 1 6 n j=1 d2 j n(n 2 1) = 1 6(24) 10(10 2 1) = Referring to Table A 9 for n = 10, one sees that ±0.648 corresponds to a significance level of Since > 0.648, one rejects H 0 (no monotonic association between stress and salary) with a significance level of (University of New Haven) Nonparametric Methods 38 / 44

39 Spearman Rank Correlation Test for Bivariate Data Rank Correlation Example (Job Salary and Stress Rankings, using R) > xdat=c(2,6,3,5,7,10,9,8,4,1) > ydat=c(2,7,6,4,5,8,9,10,3,1) > cor.test(xdat,ydat,method="spearman") Spearman s rank correlation rho data: xdat and ydat S = 24, p-value = alternative hypothesis: true rho is not equal to 0 sample estimates: rho (University of New Haven) Nonparametric Methods 39 / 44

40 Spearman Rank Correlation Test for Bivariate Data Rank Correlation Example (Air Quality) > cor(airquality$wind,airquality$temp) [1] > cor(airquality$wind,airquality$temp,method="spearman") [1] > cor.test(airquality$wind,airquality$temp,method="spearman") Spearman s rank correlation rho data: airquality$wind and airquality$temp S = , p-value = 7.229e-09 alternative hypothesis: true rho is not equal to 0 sample estimates: rho Warning message: In cor.test.default(airquality$wind, airquality$temp, method = "spearman") : Cannot compute exact p-value with ties With such a small p value, one rejects the hypothesis that there is no correlation between temperature and wind. (University of New Haven) Nonparametric Methods 40 / 44

41 Chapter #12 R Assignment Chapter #12 R Assignment Chapter #12 R Assignment (University of New Haven) Nonparametric Methods 41 / 44

42 Chapter #12 R Assignment 1 Compute the p-value for a two sided sign test for the null hypothesis that the population median for x is 6.5. The alternative hypothesis is that the median is not 6.5. x = c(7.8, 6.6, 6.5, 7.4, 7.3, 7., 6.4, 7.1, 6.7, 7.6, 6.8) 2 In order to investigate whether adults report verbally presented material more accurately from the right than from their left ear, a dichotic listening task was carried out. LEar=c(15,29,10,31,27,24,26,29,30,32,20,5) REar=c(32,30,8,32,20,32,27,30,32,32,30,32) Use the Wilcoxon Signed Rank Test for Matched Pairs to find the p value of H 0 : the left and right ear data have the same median, versus H A : not H 0. 3 Consider the following sets of data on the latent heat of the fusion of ice (cal/gm). Enter the following three lines into R: AA=c(79.98, 80.04, 80.02, 80.04, 80.03, 80.03, 80.04, 79.97, 80.05, 80.03, 80.02, 80.00, 80.02) BB=c(80.02, 79.94, 79.98, 79.97, 79.97, 80.03, 79.95, 79.97) Using the Wilcoxon Rank Sum Test, test to see if the populations AA and BB were sampled from have equal medians. Give the p value of the test. (University of New Haven) Nonparametric Methods 42 / 44

43 Chapter #12 R Assignment 4 Using the R built in dataset, iris, do a Krushal Wallis Test of Sepal.Width according to Species. (University of New Haven) Nonparametric Methods 43 / 44

44 Chapter #12 R Assignment 5 Enter in R the data from the following frigatebird example (paste the following block into R): Input = (" Volume Pitch ") Data = read.table(textconnection(input),header=true) Using the Spearman Rank Correlation test, find the p value of H 0 there isn t a monotonic association between Volume and Pitch versus H A : not H 0. (University of New Haven) Nonparametric Methods 44 / 44

Nonparametric Statistics Notes

Nonparametric Statistics Notes Nonparametric Statistics Notes Chapter 5: Some Methods Based on Ranks Jesse Crawford Department of Mathematics Tarleton State University (Tarleton State University) Ch 5: Some Methods Based on Ranks 1

More information

Unit 14: Nonparametric Statistical Methods

Unit 14: Nonparametric Statistical Methods Unit 14: Nonparametric Statistical Methods Statistics 571: Statistical Methods Ramón V. León 8/8/2003 Unit 14 - Stat 571 - Ramón V. León 1 Introductory Remarks Most methods studied so far have been based

More information

Non-parametric (Distribution-free) approaches p188 CN

Non-parametric (Distribution-free) approaches p188 CN Week 1: Introduction to some nonparametric and computer intensive (re-sampling) approaches: the sign test, Wilcoxon tests and multi-sample extensions, Spearman s rank correlation; the Bootstrap. (ch14

More information

Nonparametric Statistics

Nonparametric Statistics Nonparametric Statistics Nonparametric or Distribution-free statistics: used when data are ordinal (i.e., rankings) used when ratio/interval data are not normally distributed (data are converted to ranks)

More information

Nonparametric Statistics. Leah Wright, Tyler Ross, Taylor Brown

Nonparametric Statistics. Leah Wright, Tyler Ross, Taylor Brown Nonparametric Statistics Leah Wright, Tyler Ross, Taylor Brown Before we get to nonparametric statistics, what are parametric statistics? These statistics estimate and test population means, while holding

More information

4/6/16. Non-parametric Test. Overview. Stephen Opiyo. Distinguish Parametric and Nonparametric Test Procedures

4/6/16. Non-parametric Test. Overview. Stephen Opiyo. Distinguish Parametric and Nonparametric Test Procedures Non-parametric Test Stephen Opiyo Overview Distinguish Parametric and Nonparametric Test Procedures Explain commonly used Nonparametric Test Procedures Perform Hypothesis Tests Using Nonparametric Procedures

More information

Introduction and Descriptive Statistics p. 1 Introduction to Statistics p. 3 Statistics, Science, and Observations p. 5 Populations and Samples p.

Introduction and Descriptive Statistics p. 1 Introduction to Statistics p. 3 Statistics, Science, and Observations p. 5 Populations and Samples p. Preface p. xi Introduction and Descriptive Statistics p. 1 Introduction to Statistics p. 3 Statistics, Science, and Observations p. 5 Populations and Samples p. 6 The Scientific Method and the Design of

More information

Rank-Based Methods. Lukas Meier

Rank-Based Methods. Lukas Meier Rank-Based Methods Lukas Meier 20.01.2014 Introduction Up to now we basically always used a parametric family, like the normal distribution N (µ, σ 2 ) for modeling random data. Based on observed data

More information

Lecture Slides. Elementary Statistics. by Mario F. Triola. and the Triola Statistics Series

Lecture Slides. Elementary Statistics. by Mario F. Triola. and the Triola Statistics Series Lecture Slides Elementary Statistics Tenth Edition and the Triola Statistics Series by Mario F. Triola Slide 1 Chapter 13 Nonparametric Statistics 13-1 Overview 13-2 Sign Test 13-3 Wilcoxon Signed-Ranks

More information

Lecture Slides. Section 13-1 Overview. Elementary Statistics Tenth Edition. Chapter 13 Nonparametric Statistics. by Mario F.

Lecture Slides. Section 13-1 Overview. Elementary Statistics Tenth Edition. Chapter 13 Nonparametric Statistics. by Mario F. Lecture Slides Elementary Statistics Tenth Edition and the Triola Statistics Series by Mario F. Triola Slide 1 Chapter 13 Nonparametric Statistics 13-1 Overview 13-2 Sign Test 13-3 Wilcoxon Signed-Ranks

More information

Chapter 15: Nonparametric Statistics Section 15.1: An Overview of Nonparametric Statistics

Chapter 15: Nonparametric Statistics Section 15.1: An Overview of Nonparametric Statistics Section 15.1: An Overview of Nonparametric Statistics Understand Difference between Parametric and Nonparametric Statistical Procedures Parametric statistical procedures inferential procedures that rely

More information

3. Nonparametric methods

3. Nonparametric methods 3. Nonparametric methods If the probability distributions of the statistical variables are unknown or are not as required (e.g. normality assumption violated), then we may still apply nonparametric tests

More information

Non-parametric methods

Non-parametric methods Eastern Mediterranean University Faculty of Medicine Biostatistics course Non-parametric methods March 4&7, 2016 Instructor: Dr. Nimet İlke Akçay (ilke.cetin@emu.edu.tr) Learning Objectives 1. Distinguish

More information

CHAPTER 17 CHI-SQUARE AND OTHER NONPARAMETRIC TESTS FROM: PAGANO, R. R. (2007)

CHAPTER 17 CHI-SQUARE AND OTHER NONPARAMETRIC TESTS FROM: PAGANO, R. R. (2007) FROM: PAGANO, R. R. (007) I. INTRODUCTION: DISTINCTION BETWEEN PARAMETRIC AND NON-PARAMETRIC TESTS Statistical inference tests are often classified as to whether they are parametric or nonparametric Parameter

More information

Parametric versus Nonparametric Statistics-when to use them and which is more powerful? Dr Mahmoud Alhussami

Parametric versus Nonparametric Statistics-when to use them and which is more powerful? Dr Mahmoud Alhussami Parametric versus Nonparametric Statistics-when to use them and which is more powerful? Dr Mahmoud Alhussami Parametric Assumptions The observations must be independent. Dependent variable should be continuous

More information

Non-parametric tests, part A:

Non-parametric tests, part A: Two types of statistical test: Non-parametric tests, part A: Parametric tests: Based on assumption that the data have certain characteristics or "parameters": Results are only valid if (a) the data are

More information

PSY 307 Statistics for the Behavioral Sciences. Chapter 20 Tests for Ranked Data, Choosing Statistical Tests

PSY 307 Statistics for the Behavioral Sciences. Chapter 20 Tests for Ranked Data, Choosing Statistical Tests PSY 307 Statistics for the Behavioral Sciences Chapter 20 Tests for Ranked Data, Choosing Statistical Tests What To Do with Non-normal Distributions Tranformations (pg 382): The shape of the distribution

More information

1 ONE SAMPLE TEST FOR MEDIAN: THE SIGN TEST

1 ONE SAMPLE TEST FOR MEDIAN: THE SIGN TEST NON-PARAMETRIC STATISTICS ONE AND TWO SAMPLE TESTS Non-parametric tests are normally based on ranks of the data samples, and test hypotheses relating to quantiles of the probability distribution representing

More information

Textbook Examples of. SPSS Procedure

Textbook Examples of. SPSS Procedure Textbook s of IBM SPSS Procedures Each SPSS procedure listed below has its own section in the textbook. These sections include a purpose statement that describes the statistical test, identification of

More information

Contents. Acknowledgments. xix

Contents. Acknowledgments. xix Table of Preface Acknowledgments page xv xix 1 Introduction 1 The Role of the Computer in Data Analysis 1 Statistics: Descriptive and Inferential 2 Variables and Constants 3 The Measurement of Variables

More information

ANOVA - analysis of variance - used to compare the means of several populations.

ANOVA - analysis of variance - used to compare the means of several populations. 12.1 One-Way Analysis of Variance ANOVA - analysis of variance - used to compare the means of several populations. Assumptions for One-Way ANOVA: 1. Independent samples are taken using a randomized design.

More information

Nonparametric statistic methods. Waraphon Phimpraphai DVM, PhD Department of Veterinary Public Health

Nonparametric statistic methods. Waraphon Phimpraphai DVM, PhD Department of Veterinary Public Health Nonparametric statistic methods Waraphon Phimpraphai DVM, PhD Department of Veterinary Public Health Measurement What are the 4 levels of measurement discussed? 1. Nominal or Classificatory Scale Gender,

More information

Nonparametric Location Tests: k-sample

Nonparametric Location Tests: k-sample Nonparametric Location Tests: k-sample Nathaniel E. Helwig Assistant Professor of Psychology and Statistics University of Minnesota (Twin Cities) Updated 04-Jan-2017 Nathaniel E. Helwig (U of Minnesota)

More information

HYPOTHESIS TESTING II TESTS ON MEANS. Sorana D. Bolboacă

HYPOTHESIS TESTING II TESTS ON MEANS. Sorana D. Bolboacă HYPOTHESIS TESTING II TESTS ON MEANS Sorana D. Bolboacă OBJECTIVES Significance value vs p value Parametric vs non parametric tests Tests on means: 1 Dec 14 2 SIGNIFICANCE LEVEL VS. p VALUE Materials and

More information

Inferential Statistics

Inferential Statistics Inferential Statistics Eva Riccomagno, Maria Piera Rogantin DIMA Università di Genova riccomagno@dima.unige.it rogantin@dima.unige.it Part G Distribution free hypothesis tests 1. Classical and distribution-free

More information

What is a Hypothesis?

What is a Hypothesis? What is a Hypothesis? A hypothesis is a claim (assumption) about a population parameter: population mean Example: The mean monthly cell phone bill in this city is μ = $42 population proportion Example:

More information

SPSS Guide For MMI 409

SPSS Guide For MMI 409 SPSS Guide For MMI 409 by John Wong March 2012 Preface Hopefully, this document can provide some guidance to MMI 409 students on how to use SPSS to solve many of the problems covered in the D Agostino

More information

DETAILED CONTENTS PART I INTRODUCTION AND DESCRIPTIVE STATISTICS. 1. Introduction to Statistics

DETAILED CONTENTS PART I INTRODUCTION AND DESCRIPTIVE STATISTICS. 1. Introduction to Statistics DETAILED CONTENTS About the Author Preface to the Instructor To the Student How to Use SPSS With This Book PART I INTRODUCTION AND DESCRIPTIVE STATISTICS 1. Introduction to Statistics 1.1 Descriptive and

More information

Non-Parametric Statistics: When Normal Isn t Good Enough"

Non-Parametric Statistics: When Normal Isn t Good Enough Non-Parametric Statistics: When Normal Isn t Good Enough" Professor Ron Fricker" Naval Postgraduate School" Monterey, California" 1/28/13 1 A Bit About Me" Academic credentials" Ph.D. and M.A. in Statistics,

More information

Power and nonparametric methods Basic statistics for experimental researchersrs 2017

Power and nonparametric methods Basic statistics for experimental researchersrs 2017 Faculty of Health Sciences Outline Power and nonparametric methods Basic statistics for experimental researchersrs 2017 Statistical power Julie Lyng Forman Department of Biostatistics, University of Copenhagen

More information

BIO 682 Nonparametric Statistics Spring 2010

BIO 682 Nonparametric Statistics Spring 2010 BIO 682 Nonparametric Statistics Spring 2010 Steve Shuster http://www4.nau.edu/shustercourses/bio682/index.htm Lecture 8 Example: Sign Test 1. The number of warning cries delivered against intruders by

More information

Data are sometimes not compatible with the assumptions of parametric statistical tests (i.e. t-test, regression, ANOVA)

Data are sometimes not compatible with the assumptions of parametric statistical tests (i.e. t-test, regression, ANOVA) BSTT523 Pagano & Gauvreau Chapter 13 1 Nonparametric Statistics Data are sometimes not compatible with the assumptions of parametric statistical tests (i.e. t-test, regression, ANOVA) In particular, data

More information

SEVERAL μs AND MEDIANS: MORE ISSUES. Business Statistics

SEVERAL μs AND MEDIANS: MORE ISSUES. Business Statistics SEVERAL μs AND MEDIANS: MORE ISSUES Business Statistics CONTENTS Post-hoc analysis ANOVA for 2 groups The equal variances assumption The Kruskal-Wallis test Old exam question Further study POST-HOC ANALYSIS

More information

Exam details. Final Review Session. Things to Review

Exam details. Final Review Session. Things to Review Exam details Final Review Session Short answer, similar to book problems Formulae and tables will be given You CAN use a calculator Date and Time: Dec. 7, 006, 1-1:30 pm Location: Osborne Centre, Unit

More information

Analyzing Small Sample Experimental Data

Analyzing Small Sample Experimental Data Analyzing Small Sample Experimental Data Session 2: Non-parametric tests and estimators I Dominik Duell (University of Essex) July 15, 2017 Pick an appropriate (non-parametric) statistic 1. Intro to non-parametric

More information

Nonparametric Tests. Mathematics 47: Lecture 25. Dan Sloughter. Furman University. April 20, 2006

Nonparametric Tests. Mathematics 47: Lecture 25. Dan Sloughter. Furman University. April 20, 2006 Nonparametric Tests Mathematics 47: Lecture 25 Dan Sloughter Furman University April 20, 2006 Dan Sloughter (Furman University) Nonparametric Tests April 20, 2006 1 / 14 The sign test Suppose X 1, X 2,...,

More information

Basic Business Statistics, 10/e

Basic Business Statistics, 10/e Chapter 1 1-1 Basic Business Statistics 11 th Edition Chapter 1 Chi-Square Tests and Nonparametric Tests Basic Business Statistics, 11e 009 Prentice-Hall, Inc. Chap 1-1 Learning Objectives In this chapter,

More information

Chapter 7 Comparison of two independent samples

Chapter 7 Comparison of two independent samples Chapter 7 Comparison of two independent samples 7.1 Introduction Population 1 µ σ 1 1 N 1 Sample 1 y s 1 1 n 1 Population µ σ N Sample y s n 1, : population means 1, : population standard deviations N

More information

My data doesn t look like that..

My data doesn t look like that.. Testing assumptions My data doesn t look like that.. We have made a big deal about testing model assumptions each week. Bill Pine Testing assumptions Testing assumptions We have made a big deal about testing

More information

Glossary. The ISI glossary of statistical terms provides definitions in a number of different languages:

Glossary. The ISI glossary of statistical terms provides definitions in a number of different languages: Glossary The ISI glossary of statistical terms provides definitions in a number of different languages: http://isi.cbs.nl/glossary/index.htm Adjusted r 2 Adjusted R squared measures the proportion of the

More information

Dr. Maddah ENMG 617 EM Statistics 10/12/12. Nonparametric Statistics (Chapter 16, Hines)

Dr. Maddah ENMG 617 EM Statistics 10/12/12. Nonparametric Statistics (Chapter 16, Hines) Dr. Maddah ENMG 617 EM Statistics 10/12/12 Nonparametric Statistics (Chapter 16, Hines) Introduction Most of the hypothesis testing presented so far assumes normally distributed data. These approaches

More information

Module 9: Nonparametric Statistics Statistics (OA3102)

Module 9: Nonparametric Statistics Statistics (OA3102) Module 9: Nonparametric Statistics Statistics (OA3102) Professor Ron Fricker Naval Postgraduate School Monterey, California Reading assignment: WM&S chapter 15.1-15.6 Revision: 3-12 1 Goals for this Lecture

More information

CHI SQUARE ANALYSIS 8/18/2011 HYPOTHESIS TESTS SO FAR PARAMETRIC VS. NON-PARAMETRIC

CHI SQUARE ANALYSIS 8/18/2011 HYPOTHESIS TESTS SO FAR PARAMETRIC VS. NON-PARAMETRIC CHI SQUARE ANALYSIS I N T R O D U C T I O N T O N O N - P A R A M E T R I C A N A L Y S E S HYPOTHESIS TESTS SO FAR We ve discussed One-sample t-test Dependent Sample t-tests Independent Samples t-tests

More information

Statistical Procedures for Testing Homogeneity of Water Quality Parameters

Statistical Procedures for Testing Homogeneity of Water Quality Parameters Statistical Procedures for ing Homogeneity of Water Quality Parameters Xu-Feng Niu Professor of Statistics Department of Statistics Florida State University Tallahassee, FL 3306 May-September 004 1. Nonparametric

More information

Empirical Power of Four Statistical Tests in One Way Layout

Empirical Power of Four Statistical Tests in One Way Layout International Mathematical Forum, Vol. 9, 2014, no. 28, 1347-1356 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/imf.2014.47128 Empirical Power of Four Statistical Tests in One Way Layout Lorenzo

More information

Chapter 18 Resampling and Nonparametric Approaches To Data

Chapter 18 Resampling and Nonparametric Approaches To Data Chapter 18 Resampling and Nonparametric Approaches To Data 18.1 Inferences in children s story summaries (McConaughy, 1980): a. Analysis using Wilcoxon s rank-sum test: Younger Children Older Children

More information

16. Nonparametric Methods. Analysis of ordinal data

16. Nonparametric Methods. Analysis of ordinal data 16. Nonparametric Methods 數 Analysis of ordinal data 料 1 Data : Non-interval data : nominal data, ordinal data Interval data but not normally distributed Nonparametric tests : Two dependent samples pair

More information

Fish SR P Diff Sgn rank Fish SR P Diff Sng rank

Fish SR P Diff Sgn rank Fish SR P Diff Sng rank Nonparametric tests Distribution free methods require fewer assumptions than parametric methods Focus on testing rather than estimation Not sensitive to outlying observations Especially useful for cruder

More information

ST4241 Design and Analysis of Clinical Trials Lecture 7: N. Lecture 7: Non-parametric tests for PDG data

ST4241 Design and Analysis of Clinical Trials Lecture 7: N. Lecture 7: Non-parametric tests for PDG data ST4241 Design and Analysis of Clinical Trials Lecture 7: Non-parametric tests for PDG data Department of Statistics & Applied Probability 8:00-10:00 am, Friday, September 2, 2016 Outline Non-parametric

More information

Statistics Handbook. All statistical tables were computed by the author.

Statistics Handbook. All statistical tables were computed by the author. Statistics Handbook Contents Page Wilcoxon rank-sum test (Mann-Whitney equivalent) Wilcoxon matched-pairs test 3 Normal Distribution 4 Z-test Related samples t-test 5 Unrelated samples t-test 6 Variance

More information

Introduction to Nonparametric Statistics

Introduction to Nonparametric Statistics Introduction to Nonparametric Statistics by James Bernhard Spring 2012 Parameters Parametric method Nonparametric method µ[x 2 X 1 ] paired t-test Wilcoxon signed rank test µ[x 1 ], µ[x 2 ] 2-sample t-test

More information

Contents Kruskal-Wallis Test Friedman s Two-way Analysis of Variance by Ranks... 47

Contents Kruskal-Wallis Test Friedman s Two-way Analysis of Variance by Ranks... 47 Contents 1 Non-parametric Tests 3 1.1 Introduction....................................... 3 1.2 Advantages of Non-parametric Tests......................... 4 1.3 Disadvantages of Non-parametric Tests........................

More information

Agonistic Display in Betta splendens: Data Analysis I. Betta splendens Research: Parametric or Non-parametric Data?

Agonistic Display in Betta splendens: Data Analysis I. Betta splendens Research: Parametric or Non-parametric Data? Agonistic Display in Betta splendens: Data Analysis By Joanna Weremjiwicz, Simeon Yurek, and Dana Krempels Once you have collected data with your ethogram, you are ready to analyze that data to see whether

More information

Wilcoxon Test and Calculating Sample Sizes

Wilcoxon Test and Calculating Sample Sizes Wilcoxon Test and Calculating Sample Sizes Dan Spencer UC Santa Cruz Dan Spencer (UC Santa Cruz) Wilcoxon Test and Calculating Sample Sizes 1 / 33 Differences in the Means of Two Independent Groups When

More information

ST4241 Design and Analysis of Clinical Trials Lecture 9: N. Lecture 9: Non-parametric procedures for CRBD

ST4241 Design and Analysis of Clinical Trials Lecture 9: N. Lecture 9: Non-parametric procedures for CRBD ST21 Design and Analysis of Clinical Trials Lecture 9: Non-parametric procedures for CRBD Department of Statistics & Applied Probability 8:00-10:00 am, Friday, September 9, 2016 Outline Nonparametric tests

More information

= 1 i. normal approximation to χ 2 df > df

= 1 i. normal approximation to χ 2 df > df χ tests 1) 1 categorical variable χ test for goodness-of-fit ) categorical variables χ test for independence (association, contingency) 3) categorical variables McNemar's test for change χ df k (O i 1

More information

Biostatistics Quantitative Data

Biostatistics Quantitative Data Biostatistics Quantitative Data Descriptive Statistics Statistical Models One-sample and Two-Sample Tests Introduction to SAS-ANALYST T- and Rank-Tests using ANALYST Thomas Scheike Quantitative Data This

More information

E509A: Principle of Biostatistics. (Week 11(2): Introduction to non-parametric. methods ) GY Zou.

E509A: Principle of Biostatistics. (Week 11(2): Introduction to non-parametric. methods ) GY Zou. E509A: Principle of Biostatistics (Week 11(2): Introduction to non-parametric methods ) GY Zou gzou@robarts.ca Sign test for two dependent samples Ex 12.1 subj 1 2 3 4 5 6 7 8 9 10 baseline 166 135 189

More information

NON-PARAMETRIC STATISTICS * (http://www.statsoft.com)

NON-PARAMETRIC STATISTICS * (http://www.statsoft.com) NON-PARAMETRIC STATISTICS * (http://www.statsoft.com) 1. GENERAL PURPOSE 1.1 Brief review of the idea of significance testing To understand the idea of non-parametric statistics (the term non-parametric

More information

Background to Statistics

Background to Statistics FACT SHEET Background to Statistics Introduction Statistics include a broad range of methods for manipulating, presenting and interpreting data. Professional scientists of all kinds need to be proficient

More information

Lecture 26. December 19, Department of Biostatistics Johns Hopkins Bloomberg School of Public Health Johns Hopkins University.

Lecture 26. December 19, Department of Biostatistics Johns Hopkins Bloomberg School of Public Health Johns Hopkins University. s Sign s Lecture 26 Department of Biostatistics Johns Hopkins Bloomberg School of Public Health Johns Hopkins University December 19, 2007 s Sign s 1 2 3 s 4 Sign 5 6 7 8 9 10 s s Sign 1 Distribution-free

More information

Nonparametric Independence Tests

Nonparametric Independence Tests Nonparametric Independence Tests Nathaniel E. Helwig Assistant Professor of Psychology and Statistics University of Minnesota (Twin Cities) Updated 04-Jan-2017 Nathaniel E. Helwig (U of Minnesota) Nonparametric

More information

Introduction to Statistical Inference Lecture 10: ANOVA, Kruskal-Wallis Test

Introduction to Statistical Inference Lecture 10: ANOVA, Kruskal-Wallis Test Introduction to Statistical Inference Lecture 10: ANOVA, Kruskal-Wallis Test la Contents The two sample t-test generalizes into Analysis of Variance. In analysis of variance ANOVA the population consists

More information

Types of Statistical Tests DR. MIKE MARRAPODI

Types of Statistical Tests DR. MIKE MARRAPODI Types of Statistical Tests DR. MIKE MARRAPODI Tests t tests ANOVA Correlation Regression Multivariate Techniques Non-parametric t tests One sample t test Independent t test Paired sample t test One sample

More information

N Utilization of Nursing Research in Advanced Practice, Summer 2008

N Utilization of Nursing Research in Advanced Practice, Summer 2008 University of Michigan Deep Blue deepblue.lib.umich.edu 2008-07 536 - Utilization of ursing Research in Advanced Practice, Summer 2008 Tzeng, Huey-Ming Tzeng, H. (2008, ctober 1). Utilization of ursing

More information

Rama Nada. -Ensherah Mokheemer. 1 P a g e

Rama Nada. -Ensherah Mokheemer. 1 P a g e - 9 - Rama Nada -Ensherah Mokheemer - 1 P a g e Quick revision: Remember from the last lecture that chi square is an example of nonparametric test, other examples include Kruskal Wallis, Mann Whitney and

More information

What Are Nonparametric Statistics and When Do You Use Them? Jennifer Catrambone

What Are Nonparametric Statistics and When Do You Use Them? Jennifer Catrambone What Are Nonparametric Statistics and When Do You Use Them? Jennifer Catrambone First, a bit about Parametric Statistics Data are expected to be randomly drawn from a normal population Minimum sample size

More information

STAT 135 Lab 8 Hypothesis Testing Review, Mann-Whitney Test by Normal Approximation, and Wilcoxon Signed Rank Test.

STAT 135 Lab 8 Hypothesis Testing Review, Mann-Whitney Test by Normal Approximation, and Wilcoxon Signed Rank Test. STAT 135 Lab 8 Hypothesis Testing Review, Mann-Whitney Test by Normal Approximation, and Wilcoxon Signed Rank Test. Rebecca Barter March 30, 2015 Mann-Whitney Test Mann-Whitney Test Recall that the Mann-Whitney

More information

Biostatistics 270 Kruskal-Wallis Test 1. Kruskal-Wallis Test

Biostatistics 270 Kruskal-Wallis Test 1. Kruskal-Wallis Test Biostatistics 270 Kruskal-Wallis Test 1 ORIGIN 1 Kruskal-Wallis Test The Kruskal-Wallis is a non-parametric analog to the One-Way ANOVA F-Test of means. It is useful when the k samples appear not to come

More information

Data Analysis: Agonistic Display in Betta splendens I. Betta splendens Research: Parametric or Non-parametric Data?

Data Analysis: Agonistic Display in Betta splendens I. Betta splendens Research: Parametric or Non-parametric Data? Data Analysis: Agonistic Display in Betta splendens By Joanna Weremjiwicz, Simeon Yurek, and Dana Krempels Once you have collected data with your ethogram, you are ready to analyze that data to see whether

More information

STAT 135 Lab 9 Multiple Testing, One-Way ANOVA and Kruskal-Wallis

STAT 135 Lab 9 Multiple Testing, One-Way ANOVA and Kruskal-Wallis STAT 135 Lab 9 Multiple Testing, One-Way ANOVA and Kruskal-Wallis Rebecca Barter April 6, 2015 Multiple Testing Multiple Testing Recall that when we were doing two sample t-tests, we were testing the equality

More information

Statistical Inference Theory Lesson 46 Non-parametric Statistics

Statistical Inference Theory Lesson 46 Non-parametric Statistics 46.1-The Sign Test Statistical Inference Theory Lesson 46 Non-parametric Statistics 46.1 - Problem 1: (a). Let p equal the proportion of supermarkets that charge less than $2.15 a pound. H o : p 0.50 H

More information

Statistics: revision

Statistics: revision NST 1B Experimental Psychology Statistics practical 5 Statistics: revision Rudolf Cardinal & Mike Aitken 29 / 30 April 2004 Department of Experimental Psychology University of Cambridge Handouts: Answers

More information

6 Single Sample Methods for a Location Parameter

6 Single Sample Methods for a Location Parameter 6 Single Sample Methods for a Location Parameter If there are serious departures from parametric test assumptions (e.g., normality or symmetry), nonparametric tests on a measure of central tendency (usually

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

Lecture 7: Hypothesis Testing and ANOVA

Lecture 7: Hypothesis Testing and ANOVA Lecture 7: Hypothesis Testing and ANOVA Goals Overview of key elements of hypothesis testing Review of common one and two sample tests Introduction to ANOVA Hypothesis Testing The intent of hypothesis

More information

psychological statistics

psychological statistics psychological statistics B Sc. Counselling Psychology 011 Admission onwards III SEMESTER COMPLEMENTARY COURSE UNIVERSITY OF CALICUT SCHOOL OF DISTANCE EDUCATION CALICUT UNIVERSITY.P.O., MALAPPURAM, KERALA,

More information

1.0 Hypothesis Testing

1.0 Hypothesis Testing .0 Hypothesis Testing The Six Steps of Hypothesis Testing Rejecting or Accepting the Null Samples and Data. Parametric Tests for Comparing Two Populations Testing Equality of Population Means (T Test!

More information

Ch. 16: Correlation and Regression

Ch. 16: Correlation and Regression Ch. 1: Correlation and Regression With the shift to correlational analyses, we change the very nature of the question we are asking of our data. Heretofore, we were asking if a difference was likely to

More information

UNIT 4 RANK CORRELATION (Rho AND KENDALL RANK CORRELATION

UNIT 4 RANK CORRELATION (Rho AND KENDALL RANK CORRELATION UNIT 4 RANK CORRELATION (Rho AND KENDALL RANK CORRELATION Structure 4.0 Introduction 4.1 Objectives 4. Rank-Order s 4..1 Rank-order data 4.. Assumptions Underlying Pearson s r are Not Satisfied 4.3 Spearman

More information

Business Statistics MEDIAN: NON- PARAMETRIC TESTS

Business Statistics MEDIAN: NON- PARAMETRIC TESTS Business Statistics MEDIAN: NON- PARAMETRIC TESTS CONTENTS Hypotheses on the median The sign test The Wilcoxon signed ranks test Old exam question HYPOTHESES ON THE MEDIAN The median is a central value

More information

STATISTIKA INDUSTRI 2 TIN 4004

STATISTIKA INDUSTRI 2 TIN 4004 STATISTIKA INDUSTRI 2 TIN 4004 Pertemuan 11 & 12 Outline: Nonparametric Statistics Referensi: Walpole, R.E., Myers, R.H., Myers, S.L., Ye, K., Probability & Statistics for Engineers & Scientists, 9 th

More information

Inferences About the Difference Between Two Means

Inferences About the Difference Between Two Means 7 Inferences About the Difference Between Two Means Chapter Outline 7.1 New Concepts 7.1.1 Independent Versus Dependent Samples 7.1. Hypotheses 7. Inferences About Two Independent Means 7..1 Independent

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

Lecture 14: ANOVA and the F-test

Lecture 14: ANOVA and the F-test Lecture 14: ANOVA and the F-test S. Massa, Department of Statistics, University of Oxford 3 February 2016 Example Consider a study of 983 individuals and examine the relationship between duration of breastfeeding

More information

Hypothesis Testing. Hypothesis: conjecture, proposition or statement based on published literature, data, or a theory that may or may not be true

Hypothesis Testing. Hypothesis: conjecture, proposition or statement based on published literature, data, or a theory that may or may not be true Hypothesis esting Hypothesis: conjecture, proposition or statement based on published literature, data, or a theory that may or may not be true Statistical Hypothesis: conjecture about a population parameter

More information

CDA Chapter 3 part II

CDA Chapter 3 part II CDA Chapter 3 part II Two-way tables with ordered classfications Let u 1 u 2... u I denote scores for the row variable X, and let ν 1 ν 2... ν J denote column Y scores. Consider the hypothesis H 0 : X

More information

z and t tests for the mean of a normal distribution Confidence intervals for the mean Binomial tests

z and t tests for the mean of a normal distribution Confidence intervals for the mean Binomial tests z and t tests for the mean of a normal distribution Confidence intervals for the mean Binomial tests Chapters 3.5.1 3.5.2, 3.3.2 Prof. Tesler Math 283 Fall 2018 Prof. Tesler z and t tests for mean Math

More information

Transition Passage to Descriptive Statistics 28

Transition Passage to Descriptive Statistics 28 viii Preface xiv chapter 1 Introduction 1 Disciplines That Use Quantitative Data 5 What Do You Mean, Statistics? 6 Statistics: A Dynamic Discipline 8 Some Terminology 9 Problems and Answers 12 Scales of

More information

Analysis of 2x2 Cross-Over Designs using T-Tests

Analysis of 2x2 Cross-Over Designs using T-Tests Chapter 234 Analysis of 2x2 Cross-Over Designs using T-Tests Introduction This procedure analyzes data from a two-treatment, two-period (2x2) cross-over design. The response is assumed to be a continuous

More information

Central Limit Theorem ( 5.3)

Central Limit Theorem ( 5.3) Central Limit Theorem ( 5.3) Let X 1, X 2,... be a sequence of independent random variables, each having n mean µ and variance σ 2. Then the distribution of the partial sum S n = X i i=1 becomes approximately

More information

Glossary for the Triola Statistics Series

Glossary for the Triola Statistics Series Glossary for the Triola Statistics Series Absolute deviation The measure of variation equal to the sum of the deviations of each value from the mean, divided by the number of values Acceptance sampling

More information

Introduction to Statistical Analysis

Introduction to Statistical Analysis Introduction to Statistical Analysis Changyu Shen Richard A. and Susan F. Smith Center for Outcomes Research in Cardiology Beth Israel Deaconess Medical Center Harvard Medical School Objectives Descriptive

More information

Comparison of Two Population Means

Comparison of Two Population Means Comparison of Two Population Means Esra Akdeniz March 15, 2015 Independent versus Dependent (paired) Samples We have independent samples if we perform an experiment in two unrelated populations. We have

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

Chi-Square. Heibatollah Baghi, and Mastee Badii

Chi-Square. Heibatollah Baghi, and Mastee Badii 1 Chi-Square Heibatollah Baghi, and Mastee Badii Different Scales, Different Measures of Association Scale of Both Variables Nominal Scale Measures of Association Pearson Chi-Square: χ 2 Ordinal Scale

More information

Formulas and Tables. for Elementary Statistics, Tenth Edition, by Mario F. Triola Copyright 2006 Pearson Education, Inc. ˆp E p ˆp E Proportion

Formulas and Tables. for Elementary Statistics, Tenth Edition, by Mario F. Triola Copyright 2006 Pearson Education, Inc. ˆp E p ˆp E Proportion Formulas and Tables for Elementary Statistics, Tenth Edition, by Mario F. Triola Copyright 2006 Pearson Education, Inc. Ch. 3: Descriptive Statistics x Sf. x x Sf Mean S(x 2 x) 2 s Å n 2 1 n(sx 2 ) 2 (Sx)

More information

Pooled Variance t Test

Pooled Variance t Test Pooled Variance t Test Tests means of independent populations having equal variances Parametric test procedure Assumptions Both populations are normally distributed If not normal, can be approximated by

More information

ANOVA: Analysis of Variance

ANOVA: Analysis of Variance ANOVA: Analysis of Variance Marc H. Mehlman marcmehlman@yahoo.com University of New Haven The analysis of variance is (not a mathematical theorem but) a simple method of arranging arithmetical facts so

More information