Things you always wanted to know about statistics but were afraid to ask

Size: px
Start display at page:

Download "Things you always wanted to know about statistics but were afraid to ask"

Transcription

1 Things you always wanted to know about statistics but were afraid to ask Christoph Amma Felix Putze Design and Evaluation of Innovative User Interfaces /43

2 Overview In the last lecture, we learned about statistical analysis T-tests to compare mean of two samples During this analysis, some questions arise: T-tests assumes normal distribution How can we learn about the distribution of the data? What to do if data does not follow normal distribution? How to handle study designs with more than two cells? How do we know our sample contains enough participants to yield useful results? 2/43

3 Literature There are numerous books on statistics Besides the mathematically profound ones, this is an interesting read, if it comes to practical problems: Intuitive Biostatistics A nonmathematical Guide to Statistical Thinking, Harvey Motulsky 3/43

4 Analyzing distributions Often Statistical Methods depend on the specific distribution of random variables E.g. t-test assumes normal distribution Do we know the underlying distribution of experimental data? We might in rare conditions In our use cases we don t know Is there an underlying theoretical distribution? In most cases, we can only approximate our data by a theoretical distribution Can tell if datasets are sampled from different distributions? How can we find out which to choose? Can we prove that our data is close to a theoretical distribution? 4/43

5 Histograms The first step is to look at the data Histograms show the distribution of our data We can get a first impression of a possible underlying distribution Sample data set: mean = 4.3 stddev = /43

6 QQ-Plots A more accurate and expressive method are QQ-Plots QQ-Plots can be used to Compare two samples Compare a sample with a theoretical distribution Quantiles of both distributions are plotted against each other Remember: The p-quantile is the value of the sample for which p 100% of the data is smaller inf{ x R : F( x) p} Compute the same quantiles for both distributions (e.g. 0.1, 0.2, 0.3,..) Plot against each other 6/43

7 QQ-Plots: Construction Compute p-quantiles of both distributions Plot each quantile against corresponding other If distributions are equal, all points are approximately on y=x Sample is the same as the one used for histogram Theoretical distribution is a normal distribution with mean and variance estimated from the sample data 7/43

8 QQ-Plots: Example 8/43

9 Equality of Distributions Statistical tests to test how well two distributions fit together Two distributions can be tested on equality Empirical vs. theoretical Empirical vs. empirical Kolmogorov-Smirnow test Continuous distributions χ²-test Discrete distributions Both make no assumptions on underlying distribution 9/43

10 Kolmogorov-Smirnow Test The test uses the maximum distance between two distributions as test statistics Two sample test: Two samples are drawn from the same distribution One sample test: One sample is compared to a reference distribution Parameters of theoretical distribution must not be estimated from data ( solution: Lilliefors-Test as variant of KS-Test) 10/43

11 Given: two distributions Kolmogorov-Smirnow Test and F1 2 Null hypothesis: distributions are equal The test is based on the maximum distance between the two distributions D x For sample data, we use the empirical distribution function F max ( F ( x) F2 ( 1 x ) ) Fˆ ( x) 1 n n i 1 x i { x i x} x i ( x) 1, x { xi} 0, x { xi} 11/43

12 Kolmogorov-Smirnow Test D is a random variable of which we observe d D follows Kolmogorovs distribution We can compute p = P(D d) = 1 P(D < d) by evaluating the distribution Example: Two samples ks.test(data1, data2) Two-sample Kolmogorov-Smirnov test data: data1 and data2 D = , p-value = 1.653e-05 12/43

13 χ² Test Data is binned Works on discrete distributions Continuous distributions must be binned Tests an empirical vs. a theoretical distribution This test uses the difference between the observed and theoretical frequencies of each outcome 13/43

14 χ² Test Given: Empirical distribution F (x), theoretical distribution T(x) H₀: F(x) = T(x) (distributions are equal) with F(x) being the underlying distribution of F (x) test statistics: i 1 ( O E E n 2 2 i i ) i O E n i i obs ervedfrequencie s es timatedfrequencie s numberof bins(nots amples) Compute p-value from the χ² distribution 2 p 1 ( k) ( x) k denotes degrees-offreedom and is k=n-1 14/43

15 Testing for Normality t-test assumes normal distribution Can we assume, that our data is normal distributed? We could test this hypothesis with the Lilliefor Variant of the Kolmogorov-Smirnow Test Correctly: We test if our data is consistent with the assumption of sampling from a gaussian distribution Why not KS Test: We must estimate mean/var from data There are specialized tests for this task with greater power Do not use the KS Test for testing for normality Many tests with different properties Shapiro-Wilk D'Agostino-Pearson Available in R 15/43

16 Interpreting the p-value The p-value answers: If you randomly sample from a Gaussian population, what is the probability of obtaining a sample that deviates from a Gaussian distribution as much or more as this sample does? High p-value Data is not inconsistent with Gaussian distribution No proof that data is drawn from a Gaussian distribution Low p-value Data is not sampled from a Gaussian distribution What to do: Check for other distribution Maybe outliers cause the normality test to fail Look at the data again, maybe you can ignore it (large dataset tend to produce low p-values even for mild deviations from Gaussian?) Switch to non-parametric tests 16/43

17 Wilcoxon signed-rank test What to do, if our sample does not approximately follow a normal distribution? What to do, if our sample is ordinal scaled (ordered values) We cannot apply a t-test in this case The Wilcoxon signed-rank test can do it Non- parametric test (no assumption of underlying probability) Works on ordinal scaled values (tests for equality of the median) 17/43

18 Wilcoxon signed-rank test The test follows the well known scheme for statistical tests We have sampled X and Y from distributions A and B Our hypothesis H1 is: A and B differ The null hypothesis H0 is: A and B are equal Assumptions Values are ordered (ordinally scaled) All observations from both groups are independent of each other A and B differ only by A(x) = B(x + m) otherwise the null hypothesis can only be formulated as: The propability that a sample from A is greater or equal than a sample from B is 0.5 Mann-Whitney U Test is equivalent, but uses the U statistics 18/43

19 Wilcoxon rank-sum test Test statistics 1. Order all observations in ascending sequence and rank them In case of equal values in both samples: Compute ordering as usual with arbitrary sequence of equal values Compute the mean rank for all equal values Assign all equal values this mean rank 2. Compute rank sums for both samples Add up ranks R1 which came from A Add up ranks R2 which came from B The invariant R1+R2 = N(N+1)/2, N = A + B must hold Test statistics W is the smaller of these two sums 3. Compute p value from distribution of W (distribution of W is given dependent of sizes of A and B) The U statistics of the can be computed from W (Mann-Whitney) 19/43

20 Wilcoxon rank-sum test: example Example: Two groups perform a task with a user interface A = [3,5,8,10,20] B = [2,5,7,9,11] Ranked Sequence: 1:2, 2:3, 3.5:5, 3.5:5, 5:7, 6:8, 7:9, 8:10, 9:11, 10:20 equal values Rank sums: A: =29.5 B: =25.5 A + B = 55 = 10*(10+1)/2 W = 25.5 p = /43

21 Wilcoxon rank-sum test: special example Consider the following dataset: X = (1,..., 50, 151,,200) Y = (51, 150) Do they differ? Wilcoxon signed-rank test says: W = for both datasets p = 1.0 H0 holds What did we do wrong? We missed an assumption of the test To support the given H0, A and B must only differ by a shift in location A(x) = B(x + m) Otherwise H0 is weaker 21/43

22 Wilcoxon rank-sum test: special example So what should have been our way to go? First check, if X and Y are likely to have the same underlying distribution (except of shift in location) Visually inspect! Make a Kolmogorov-Smirnow Test 22/43

23 Multiple t-tests? Often in an experiment, we have several independent variables or independent variables with more than two values Results in more than two cells/samples we need to compare Reminder: In [Nass, 2000], we had two independent variables: System personality (values: introvert or extrovert) User personality (values: introvert or extrovert) Hypothesis was: Evaluation of system differs between those groups 4 cells in factorial design 6 pairs of cells to compare Perform 6 independent t-tests? With an α of 0.05, there is a 5% chance of wrongly rejecting a null hypothesis for one test When doing multiple pair-wise t-tests, this probability accumulates to up to 26.5%! 23/43

24 Another illustrative example Publication which deliberately demonstrates problems which occur from multiple testing (Bennett et al., 2009) Context: fmri-based analysis of emotional activation Present affective stimuli invoking different valence (images, videos, ) fmri measures brain activity based on oxygen concentration Good spatial resolution fmri yields 100,000s of small voxels Researchers performed experiment but replaced human subject with dead salmon Result: Found cluster of three adjacent voxels in the fish s brain which related significantly to the emotional stimulation Observation: Without controlling for multiple testing, a large number of tests will almost surely yield significant results 24/43

25 ANOVA: Analysis of Variance Analysis of Variance (ANOVA) can handle designs with more than two cells Tests whether there exists a difference between any two groups But not: Between which groups (needs further analysis) One-way ANOVA: One factor with multiple (>2) levels Two-way ANOVA: Two factors with multiple levels More factors are possible, analysis gets more and more complicated Idea: Variance within groups vs. variance between groups In this lecture, we will present basic ideas, not full formulas Consult statistical textbook for details Good starting point with detailed explanations and examples: 25/43

26 One-Way ANOVA ANOVA is another statistical test, like the t-test Requirements: All populations are normally distributed All populations have the same variance The samples are of equal size Test statistic F: F Between - group scatter Within - group scatter Estimate* between-group scatter as Estimate* within-group scatter as k ( X i i X 1 k i SD 1 i ² If H 0 (no differences between any two populations) is true, F is distributed according to the F-distribution Proceed as for t-test (calculate critical values, compare with observed F-value) )² *) Formulas are just for explanation and not complete! 26/43

27 ANOVA vs. t-test For one factor with two levels, ANOVA is equivalent to a t-test Reminder: T X-Y X Y X Y measures the scatter between groups σ X Y measures the scatter within groups 27/43

28 Two-Way ANOVA Extension of one-way ANOVA Handles two factors with multiple levels We can now observe two types of effects: Main effects: Consistent significant difference when manipulating only one factor (e.g. both introvert and extravert users prefer the extravert system) Interaction effects: Significant difference when changing multiple factors (e.g. introverts prefer the introvert system, extraverts prefer the extravert system) Augment model of one-way ANOVA by changing the definitions of the between-group scatter to differentiate between variance caused by main effects and interaction effects (no details here) 28/43

29 Main effect vs. interaction effect Dep. Variable X F1 Y X Y F2: Value 1 = red, Value 2 = green F2 Main effect: F1 influences the dependent variable averaged over all values of F2 Interaction effect: Simultaneous effect of F1 and F2 on dependent variable is not additive 29/43

30 ANCOVA ANOVA has many variants which cover for common problems and questions Analysis of Co-Variance (ANCOVA) Can be used to eliminate effect of confounding variables Despite random allocation of participants to groups, those can differ in relevant variables Age, gender, intelligence, attitude, mood, Confounding variables can artificially inflate or deflate effects Can we remove the effect of those confounding variables from the ANOVA? General approach: ANCOVA calculates linear influence of confounding variable on dependent variable regardless of class Removing this influence reduces within-group scatter Be careful when covariates actually are related to the factors of the design 30/43

31 Which cells are significantly different? Often, we are not only interested in the existence of some difference but want to know which cells differ significantly We already saw that multiple unmodified t-tests are not advisable A number of tests is designed for this purpose Scheffé-test Turkey s honest significance test All those tests use some method to control for multiple testing Those approaches are also relevant outside of a-posteriori analysis of ANOVA 31/43

32 Bonferroni/Sidak Correction Adjust α to account for the global null hypothesis H 0 = All tests show no significant effect Replace α by correction factor α depending on the number of tests performed and the originally desired significance level For independent tests (Sidak): Correction factor: α = 1 (1 α) 1 n For arbitrary tests (Bonferroni): Use Boole s inequality (prob. of a union of events sum of single probabilities) P(at least one test significant) nα Correction factor: α = α n 32/43

33 Bonferroni-Holm Method Bonferroni correction yields binary result We do not learn which or how many of the null-hypotheses are wrongly rejected Does not take differentiate between large and small p-values Improvement: Bonferroni-Holm method Sort p-values such that p 1 p N Set i = 1 and iterate: If p i α (N i + 1), reject corresponding null hypothesis and continue (for i=1, this corresponds to simple Bonferroni correction) Else, stop and do not reject any of the following null hypotheses Still does not take interdependence of tests into account If a test is significant, a similar test is more likely to also yield a significant result Benjamini-Hochberg procedure (1995) extends this method with more precise bounds for every iteration 33/43

34 Evaluation of correction methods Very conservative approaches (especially the simple ones) high probability of rejecting valid hypotheses ( low power ) Bonferroni-Holm strictly better than original Bonferroni method Practical issue: Which hypotheses to include? Obviously irrelevant ones? Tests planned for future investigations? Tests by others on the same data set? Family Wise Error Rate: Probability of wrongly rejecting the joint null hypothesis of related tests (in terms of content or use) Do not routinely apply correction for every test performed Typical use cases for correction: Applying different procedures for measuring the same construct Investigating many (artificial) subgroups of the sample Explorative analysis, e.g. speculative application of large number of tests 34/43

35 Larger Sample = better? Probability for α-error depends on size of sample Larger sample smaller error probability Should we therefore collect as much data as possible? Tests will give significant results for the tiniest effect! Tests becomes prone to small jitter in the data We need to know how large the effect is we are looking for! Collect enough data to identify the desired effect as significant Do not collect more data than necessary Consequence: Significance level α must be fixed in advance It is not instrumental to report by how much the test beats the predefined α 35/43

36 Effect Size The size of an effect depends on the the standard deviation of the underlying distribution For comparison of two distribution means (e.g. with a t-test), we can measure effect size as (note that there are other methods): ES = μ X μ Y σ According to Cohen (1988), we can classify effect size as follows: ES = 0.2 small ES = 0.5 medium ES = 0.8 large The smaller the effect size, the harder it is to detect in a sample The smaller the effect size, the larger the sample has to be (for fixed α) How do you know? Pilot experiments, comparable data 36/43

37 Power We often choose α = 0.05 because of convention For medical applications, α is traditionally much lower What is the effect of modifying α? A smaller α reduces the probability of α-errors (wrongly rejecting the null hypothesis) improves reliability As a side effect, we also reduce our chances to actually find any significant effect (e.g. if the effect size is small)! Power: 1 β is called the power of an experiment β is the probability of a β-error ( false negative ) It is not possible to optimize both α and 1 β as increasing one parameter decreases the other one 37/43

38 The big picture of experiment design Four parameters describe an experiment design: Significance level α Power 1 β Effect size ES Sample size n From three given parameters, we can derive the (optimal value of the) fourth one Which parameters are given depends on the situation Not all situations are equally desirable 38/43

39 Types of Analysis (1) A priori Analysis Significance level, Power and effect size are given (Significance level and power are selected, ES is estimated beforehand) Estimate optimal sample size Perform this analysis during the planning step of an experiment Generate a sample of exactly this size to avoid undesired effects Post-hoc Analysis Significance level, effect size and sample size are given Estimate achieved power Performed after experiment design or execution How high is/was the risk of not observing the effect? 39/43

40 Types of Analysis (2) Sensitivity Analysis Significance level, power and sample size are given Estimate required effect size Performed after an experiment design or execution Typically performed when no significant effect was found (Effects of which size did we have a chance to find?) Criterion Analysis Power, effect size and sample size are given Estimate required significance level Rarely executed, significance level is typically fixed in advance 40/43

41 G*Power Free tool maintained by university of Düsseldorf Available for Windows and Mac (created by psychologists, after all) Performs power analysis for a number of test paradigms t-tests (including regression) F-tests (ANOVA, ) Allows to perform all types of analysis Of course, R and other statistic toolboxes have comparable capabilities of power analysis 41/43

42 Example Assume we are compare efficiency of our user interface for our traditional baseline interface A our innovative interface B Efficiency is measuring in seconds to solve a given task We set the significance level α to the traditional level of 0.05 We set the power 1 β to 0.95 We estimate missing an opportunity for optimimization and overestimating the improvement as equally harmful From a pilot study we estimate the effect size to be 0.5 We might also be not interested in smaller effects as the new interface is more expensive We design a between-subject experiment and evaluate the data using a t-test to test whether B is more efficient than A Independent samples, one-sided t-test 42/43

43 Overpowered and Underpowered Experiments A priori analysis yields an optimal sample size of participants per group What would happen if we could do a within-subject design? What happens if we collect less data? Study is underpowered We must assume that we cannot reject H 0 for the expected effect size What happens if we collect more data? Study is overpowered Tiny effects (e.g. participants are a little more reluctant on a Monday than on a Friday) may create a significant result Should we stop collecting data, even if more is available? Expect to have some outliers and/or corrupt data points Subgroup analysis may require a larger corpus 43/43

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

Data Analysis and Statistical Methods Statistics 651

Data Analysis and Statistical Methods Statistics 651 Data Analysis and Statistical Methods Statistics 65 http://www.stat.tamu.edu/~suhasini/teaching.html Suhasini Subba Rao Review In the previous lecture we considered the following tests: The independent

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

Turning a research question into a statistical question.

Turning a research question into a statistical question. Turning a research question into a statistical question. IGINAL QUESTION: Concept Concept Concept ABOUT ONE CONCEPT ABOUT RELATIONSHIPS BETWEEN CONCEPTS TYPE OF QUESTION: DESCRIBE what s going on? DECIDE

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

Hypothesis testing, part 2. With some material from Howard Seltman, Blase Ur, Bilge Mutlu, Vibha Sazawal

Hypothesis testing, part 2. With some material from Howard Seltman, Blase Ur, Bilge Mutlu, Vibha Sazawal Hypothesis testing, part 2 With some material from Howard Seltman, Blase Ur, Bilge Mutlu, Vibha Sazawal 1 CATEGORICAL IV, NUMERIC DV 2 Independent samples, one IV # Conditions Normal/Parametric Non-parametric

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

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

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

Review of Statistics 101

Review of Statistics 101 Review of Statistics 101 We review some important themes from the course 1. Introduction Statistics- Set of methods for collecting/analyzing data (the art and science of learning from data). Provides methods

More information

COMPARING SEVERAL MEANS: ANOVA

COMPARING SEVERAL MEANS: ANOVA LAST UPDATED: November 15, 2012 COMPARING SEVERAL MEANS: ANOVA Objectives 2 Basic principles of ANOVA Equations underlying one-way ANOVA Doing a one-way ANOVA in R Following up an ANOVA: Planned contrasts/comparisons

More information

H0: Tested by k-grp ANOVA

H0: Tested by k-grp ANOVA Pairwise Comparisons ANOVA for multiple condition designs Pairwise comparisons and RH Testing Alpha inflation & Correction LSD & HSD procedures Alpha estimation reconsidered H0: Tested by k-grp ANOVA Regardless

More information

Physics 509: Non-Parametric Statistics and Correlation Testing

Physics 509: Non-Parametric Statistics and Correlation Testing Physics 509: Non-Parametric Statistics and Correlation Testing Scott Oser Lecture #19 Physics 509 1 What is non-parametric statistics? Non-parametric statistics is the application of statistical tests

More information

This is particularly true if you see long tails in your data. What are you testing? That the two distributions are the same!

This is particularly true if you see long tails in your data. What are you testing? That the two distributions are the same! Two sample tests (part II): What to do if your data are not distributed normally: Option 1: if your sample size is large enough, don't worry - go ahead and use a t-test (the CLT will take care of non-normal

More information

Lecture 21: October 19

Lecture 21: October 19 36-705: Intermediate Statistics Fall 2017 Lecturer: Siva Balakrishnan Lecture 21: October 19 21.1 Likelihood Ratio Test (LRT) To test composite versus composite hypotheses the general method is to use

More information

Chapter Fifteen. Frequency Distribution, Cross-Tabulation, and Hypothesis Testing

Chapter Fifteen. Frequency Distribution, Cross-Tabulation, and Hypothesis Testing Chapter Fifteen Frequency Distribution, Cross-Tabulation, and Hypothesis Testing Copyright 2010 Pearson Education, Inc. publishing as Prentice Hall 15-1 Internet Usage Data Table 15.1 Respondent Sex Familiarity

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

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

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

THE ROYAL STATISTICAL SOCIETY HIGHER CERTIFICATE

THE ROYAL STATISTICAL SOCIETY HIGHER CERTIFICATE THE ROYAL STATISTICAL SOCIETY 004 EXAMINATIONS SOLUTIONS HIGHER CERTIFICATE PAPER II STATISTICAL METHODS The Society provides these solutions to assist candidates preparing for the examinations in future

More information

Degrees of freedom df=1. Limitations OR in SPSS LIM: Knowing σ and µ is unlikely in large

Degrees of freedom df=1. Limitations OR in SPSS LIM: Knowing σ and µ is unlikely in large Z Test Comparing a group mean to a hypothesis T test (about 1 mean) T test (about 2 means) Comparing mean to sample mean. Similar means = will have same response to treatment Two unknown means are different

More information

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

Chapte The McGraw-Hill Companies, Inc. All rights reserved. er15 Chapte Chi-Square Tests d Chi-Square Tests for -Fit Uniform Goodness- Poisson Goodness- Goodness- ECDF Tests (Optional) Contingency Tables A contingency table is a cross-tabulation of n paired observations

More information

Difference in two or more average scores in different groups

Difference in two or more average scores in different groups ANOVAs Analysis of Variance (ANOVA) Difference in two or more average scores in different groups Each participant tested once Same outcome tested in each group Simplest is one-way ANOVA (one variable as

More information

Analysis of Variance (ANOVA)

Analysis of Variance (ANOVA) Analysis of Variance (ANOVA) Two types of ANOVA tests: Independent measures and Repeated measures Comparing 2 means: X 1 = 20 t - test X 2 = 30 How can we Compare 3 means?: X 1 = 20 X 2 = 30 X 3 = 35 ANOVA

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

Specific Differences. Lukas Meier, Seminar für Statistik

Specific Differences. Lukas Meier, Seminar für Statistik Specific Differences Lukas Meier, Seminar für Statistik Problem with Global F-test Problem: Global F-test (aka omnibus F-test) is very unspecific. Typically: Want a more precise answer (or have a more

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

H0: Tested by k-grp ANOVA

H0: Tested by k-grp ANOVA Analyses of K-Group Designs : Omnibus F, Pairwise Comparisons & Trend Analyses ANOVA for multiple condition designs Pairwise comparisons and RH Testing Alpha inflation & Correction LSD & HSD procedures

More information

Business Statistics. Lecture 10: Course Review

Business Statistics. Lecture 10: Course Review Business Statistics Lecture 10: Course Review 1 Descriptive Statistics for Continuous Data Numerical Summaries Location: mean, median Spread or variability: variance, standard deviation, range, percentiles,

More information

Practical Statistics

Practical Statistics Practical Statistics Lecture 1 (Nov. 9): - Correlation - Hypothesis Testing Lecture 2 (Nov. 16): - Error Estimation - Bayesian Analysis - Rejecting Outliers Lecture 3 (Nov. 18) - Monte Carlo Modeling -

More information

Power Analysis. Ben Kite KU CRMDA 2015 Summer Methodology Institute

Power Analysis. Ben Kite KU CRMDA 2015 Summer Methodology Institute Power Analysis Ben Kite KU CRMDA 2015 Summer Methodology Institute Created by Terrence D. Jorgensen, 2014 Recall Hypothesis Testing? Null Hypothesis Significance Testing (NHST) is the most common application

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

BIOL Biometry LAB 6 - SINGLE FACTOR ANOVA and MULTIPLE COMPARISON PROCEDURES

BIOL Biometry LAB 6 - SINGLE FACTOR ANOVA and MULTIPLE COMPARISON PROCEDURES BIOL 458 - Biometry LAB 6 - SINGLE FACTOR ANOVA and MULTIPLE COMPARISON PROCEDURES PART 1: INTRODUCTION TO ANOVA Purpose of ANOVA Analysis of Variance (ANOVA) is an extremely useful statistical method

More information

Intuitive Biostatistics: Choosing a statistical test

Intuitive Biostatistics: Choosing a statistical test pagina 1 van 5 < BACK Intuitive Biostatistics: Choosing a statistical This is chapter 37 of Intuitive Biostatistics (ISBN 0-19-508607-4) by Harvey Motulsky. Copyright 1995 by Oxfd University Press Inc.

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

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

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

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

Cheat Sheet: ANOVA. Scenario. Power analysis. Plotting a line plot and a box plot. Pre-testing assumptions

Cheat Sheet: ANOVA. Scenario. Power analysis. Plotting a line plot and a box plot. Pre-testing assumptions Cheat Sheet: ANOVA Measurement and Evaluation of HCC Systems Scenario Use ANOVA if you want to test the difference in continuous outcome variable vary between multiple levels (A, B, C, ) of a nominal variable

More information

STAT 461/561- Assignments, Year 2015

STAT 461/561- Assignments, Year 2015 STAT 461/561- Assignments, Year 2015 This is the second set of assignment problems. When you hand in any problem, include the problem itself and its number. pdf are welcome. If so, use large fonts and

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

Chapter 13 Section D. F versus Q: Different Approaches to Controlling Type I Errors with Multiple Comparisons

Chapter 13 Section D. F versus Q: Different Approaches to Controlling Type I Errors with Multiple Comparisons Explaining Psychological Statistics (2 nd Ed.) by Barry H. Cohen Chapter 13 Section D F versus Q: Different Approaches to Controlling Type I Errors with Multiple Comparisons In section B of this chapter,

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

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

Mitosis Data Analysis: Testing Statistical Hypotheses By Dana Krempels, Ph.D. and Steven Green, Ph.D.

Mitosis Data Analysis: Testing Statistical Hypotheses By Dana Krempels, Ph.D. and Steven Green, Ph.D. Mitosis Data Analysis: Testing Statistical Hypotheses By Dana Krempels, Ph.D. and Steven Green, Ph.D. The number of cells in various stages of mitosis in your treatment and control onions are your raw

More information

Statistics Boot Camp. Dr. Stephanie Lane Institute for Defense Analyses DATAWorks 2018

Statistics Boot Camp. Dr. Stephanie Lane Institute for Defense Analyses DATAWorks 2018 Statistics Boot Camp Dr. Stephanie Lane Institute for Defense Analyses DATAWorks 2018 March 21, 2018 Outline of boot camp Summarizing and simplifying data Point and interval estimation Foundations of statistical

More information

Data Mining. CS57300 Purdue University. March 22, 2018

Data Mining. CS57300 Purdue University. March 22, 2018 Data Mining CS57300 Purdue University March 22, 2018 1 Hypothesis Testing Select 50% users to see headline A Unlimited Clean Energy: Cold Fusion has Arrived Select 50% users to see headline B Wedding War

More information

Statistics Toolbox 6. Apply statistical algorithms and probability models

Statistics Toolbox 6. Apply statistical algorithms and probability models Statistics Toolbox 6 Apply statistical algorithms and probability models Statistics Toolbox provides engineers, scientists, researchers, financial analysts, and statisticians with a comprehensive set of

More information

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

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

More information

LECTURE 5. Introduction to Econometrics. Hypothesis testing

LECTURE 5. Introduction to Econometrics. Hypothesis testing LECTURE 5 Introduction to Econometrics Hypothesis testing October 18, 2016 1 / 26 ON TODAY S LECTURE We are going to discuss how hypotheses about coefficients can be tested in regression models We will

More information

Nonparametric tests. Mark Muldoon School of Mathematics, University of Manchester. Mark Muldoon, November 8, 2005 Nonparametric tests - p.

Nonparametric tests. Mark Muldoon School of Mathematics, University of Manchester. Mark Muldoon, November 8, 2005 Nonparametric tests - p. Nonparametric s Mark Muldoon School of Mathematics, University of Manchester Mark Muldoon, November 8, 2005 Nonparametric s - p. 1/31 Overview The sign, motivation The Mann-Whitney Larger Larger, in pictures

More information

STAT 263/363: Experimental Design Winter 2016/17. Lecture 1 January 9. Why perform Design of Experiments (DOE)? There are at least two reasons:

STAT 263/363: Experimental Design Winter 2016/17. Lecture 1 January 9. Why perform Design of Experiments (DOE)? There are at least two reasons: STAT 263/363: Experimental Design Winter 206/7 Lecture January 9 Lecturer: Minyong Lee Scribe: Zachary del Rosario. Design of Experiments Why perform Design of Experiments (DOE)? There are at least two

More information

Statistical Inference: Estimation and Confidence Intervals Hypothesis Testing

Statistical Inference: Estimation and Confidence Intervals Hypothesis Testing Statistical Inference: Estimation and Confidence Intervals Hypothesis Testing 1 In most statistics problems, we assume that the data have been generated from some unknown probability distribution. We desire

More information

Contrasts and Multiple Comparisons Supplement for Pages

Contrasts and Multiple Comparisons Supplement for Pages Contrasts and Multiple Comparisons Supplement for Pages 302-323 Brian Habing University of South Carolina Last Updated: July 20, 2001 The F-test from the ANOVA table allows us to test the null hypothesis

More information

Multiple t Tests. Introduction to Analysis of Variance. Experiments with More than 2 Conditions

Multiple t Tests. Introduction to Analysis of Variance. Experiments with More than 2 Conditions Introduction to Analysis of Variance 1 Experiments with More than 2 Conditions Often the research that psychologists perform has more conditions than just the control and experimental conditions You might

More information

Hypothesis T e T sting w ith with O ne O One-Way - ANOV ANO A V Statistics Arlo Clark Foos -

Hypothesis T e T sting w ith with O ne O One-Way - ANOV ANO A V Statistics Arlo Clark Foos - Hypothesis Testing with One-Way ANOVA Statistics Arlo Clark-Foos Conceptual Refresher 1. Standardized z distribution of scores and of means can be represented as percentile rankings. 2. t distribution

More information

Chapter 1 Statistical Inference

Chapter 1 Statistical Inference Chapter 1 Statistical Inference causal inference To infer causality, you need a randomized experiment (or a huge observational study and lots of outside information). inference to populations Generalizations

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

Analyses of Variance. Block 2b

Analyses of Variance. Block 2b Analyses of Variance Block 2b Types of analyses 1 way ANOVA For more than 2 levels of a factor between subjects ANCOVA For continuous co-varying factor, between subjects ANOVA for factorial design Multiple

More information

Group comparison test for independent samples

Group comparison test for independent samples Group comparison test for independent samples The purpose of the Analysis of Variance (ANOVA) is to test for significant differences between means. Supposing that: samples come from normal populations

More information

Black White Total Observed Expected χ 2 = (f observed f expected ) 2 f expected (83 126) 2 ( )2 126

Black White Total Observed Expected χ 2 = (f observed f expected ) 2 f expected (83 126) 2 ( )2 126 Psychology 60 Fall 2013 Practice Final Actual Exam: This Wednesday. Good luck! Name: To view the solutions, check the link at the end of the document. This practice final should supplement your studying;

More information

Introduction to inferential statistics. Alissa Melinger IGK summer school 2006 Edinburgh

Introduction to inferential statistics. Alissa Melinger IGK summer school 2006 Edinburgh Introduction to inferential statistics Alissa Melinger IGK summer school 2006 Edinburgh Short description Prereqs: I assume no prior knowledge of stats This half day tutorial on statistical analysis will

More information

Non-specific filtering and control of false positives

Non-specific filtering and control of false positives Non-specific filtering and control of false positives Richard Bourgon 16 June 2009 bourgon@ebi.ac.uk EBI is an outstation of the European Molecular Biology Laboratory Outline Multiple testing I: overview

More information

Big Data Analysis with Apache Spark UC#BERKELEY

Big Data Analysis with Apache Spark UC#BERKELEY Big Data Analysis with Apache Spark UC#BERKELEY This Lecture: Relation between Variables An association A trend» Positive association or Negative association A pattern» Could be any discernible shape»

More information

Probability and Statistics

Probability and Statistics Probability and Statistics Kristel Van Steen, PhD 2 Montefiore Institute - Systems and Modeling GIGA - Bioinformatics ULg kristel.vansteen@ulg.ac.be CHAPTER 4: IT IS ALL ABOUT DATA 4a - 1 CHAPTER 4: IT

More information

Chapter 9. Non-Parametric Density Function Estimation

Chapter 9. Non-Parametric Density Function Estimation 9-1 Density Estimation Version 1.2 Chapter 9 Non-Parametric Density Function Estimation 9.1. Introduction We have discussed several estimation techniques: method of moments, maximum likelihood, and least

More information

Correlation and Simple Linear Regression

Correlation and Simple Linear Regression Correlation and Simple Linear Regression Sasivimol Rattanasiri, Ph.D Section for Clinical Epidemiology and Biostatistics Ramathibodi Hospital, Mahidol University E-mail: sasivimol.rat@mahidol.ac.th 1 Outline

More information

Chapter 9. Non-Parametric Density Function Estimation

Chapter 9. Non-Parametric Density Function Estimation 9-1 Density Estimation Version 1.1 Chapter 9 Non-Parametric Density Function Estimation 9.1. Introduction We have discussed several estimation techniques: method of moments, maximum likelihood, and least

More information

Review. One-way ANOVA, I. What s coming up. Multiple comparisons

Review. One-way ANOVA, I. What s coming up. Multiple comparisons Review One-way ANOVA, I 9.07 /15/00 Earlier in this class, we talked about twosample z- and t-tests for the difference between two conditions of an independent variable Does a trial drug work better than

More information

Introduction to Statistics with GraphPad Prism 7

Introduction to Statistics with GraphPad Prism 7 Introduction to Statistics with GraphPad Prism 7 Outline of the course Power analysis with G*Power Basic structure of a GraphPad Prism project Analysis of qualitative data Chi-square test Analysis of quantitative

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

Basics on t-tests Independent Sample t-tests Single-Sample t-tests Summary of t-tests Multiple Tests, Effect Size Proportions. Statistiek I.

Basics on t-tests Independent Sample t-tests Single-Sample t-tests Summary of t-tests Multiple Tests, Effect Size Proportions. Statistiek I. Statistiek I t-tests John Nerbonne CLCG, Rijksuniversiteit Groningen http://www.let.rug.nl/nerbonne/teach/statistiek-i/ John Nerbonne 1/46 Overview 1 Basics on t-tests 2 Independent Sample t-tests 3 Single-Sample

More information

Distribution-Free Procedures (Devore Chapter Fifteen)

Distribution-Free Procedures (Devore Chapter Fifteen) Distribution-Free Procedures (Devore Chapter Fifteen) MATH-5-01: Probability and Statistics II Spring 018 Contents 1 Nonparametric Hypothesis Tests 1 1.1 The Wilcoxon Rank Sum Test........... 1 1. Normal

More information

Kumaun University Nainital

Kumaun University Nainital Kumaun University Nainital Department of Statistics B. Sc. Semester system course structure: 1. The course work shall be divided into six semesters with three papers in each semester. 2. Each paper in

More information

One sided tests. An example of a two sided alternative is what we ve been using for our two sample tests:

One sided tests. An example of a two sided alternative is what we ve been using for our two sample tests: One sided tests So far all of our tests have been two sided. While this may be a bit easier to understand, this is often not the best way to do a hypothesis test. One simple thing that we can do to get

More information

Physics 509: Bootstrap and Robust Parameter Estimation

Physics 509: Bootstrap and Robust Parameter Estimation Physics 509: Bootstrap and Robust Parameter Estimation Scott Oser Lecture #20 Physics 509 1 Nonparametric parameter estimation Question: what error estimate should you assign to the slope and intercept

More information

Correlation and Regression

Correlation and Regression Correlation and Regression Dr. Bob Gee Dean Scott Bonney Professor William G. Journigan American Meridian University 1 Learning Objectives Upon successful completion of this module, the student should

More information

Multiple Comparisons

Multiple Comparisons Multiple Comparisons Error Rates, A Priori Tests, and Post-Hoc Tests Multiple Comparisons: A Rationale Multiple comparison tests function to tease apart differences between the groups within our IV when

More information

Psych 230. Psychological Measurement and Statistics

Psych 230. Psychological Measurement and Statistics Psych 230 Psychological Measurement and Statistics Pedro Wolf December 9, 2009 This Time. Non-Parametric statistics Chi-Square test One-way Two-way Statistical Testing 1. Decide which test to use 2. State

More information

Introduction to Bayesian Learning. Machine Learning Fall 2018

Introduction to Bayesian Learning. Machine Learning Fall 2018 Introduction to Bayesian Learning Machine Learning Fall 2018 1 What we have seen so far What does it mean to learn? Mistake-driven learning Learning by counting (and bounding) number of mistakes PAC learnability

More information

4.1. Introduction: Comparing Means

4.1. Introduction: Comparing Means 4. Analysis of Variance (ANOVA) 4.1. Introduction: Comparing Means Consider the problem of testing H 0 : µ 1 = µ 2 against H 1 : µ 1 µ 2 in two independent samples of two different populations of possibly

More information

Sequential Analysis & Testing Multiple Hypotheses,

Sequential Analysis & Testing Multiple Hypotheses, Sequential Analysis & Testing Multiple Hypotheses, CS57300 - Data Mining Spring 2016 Instructor: Bruno Ribeiro 2016 Bruno Ribeiro This Class: Sequential Analysis Testing Multiple Hypotheses Nonparametric

More information

Interpreting Regression Results

Interpreting Regression Results Interpreting Regression Results Carlo Favero Favero () Interpreting Regression Results 1 / 42 Interpreting Regression Results Interpreting regression results is not a simple exercise. We propose to split

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

Lecture 5: ANOVA and Correlation

Lecture 5: ANOVA and Correlation Lecture 5: ANOVA and Correlation Ani Manichaikul amanicha@jhsph.edu 23 April 2007 1 / 62 Comparing Multiple Groups Continous data: comparing means Analysis of variance Binary data: comparing proportions

More information

A Better Way to Do R&R Studies

A Better Way to Do R&R Studies The Evaluating the Measurement Process Approach Last month s column looked at how to fix some of the Problems with Gauge R&R Studies. This month I will show you how to learn more from your gauge R&R data

More information

LECTURE NOTE #3 PROF. ALAN YUILLE

LECTURE NOTE #3 PROF. ALAN YUILLE LECTURE NOTE #3 PROF. ALAN YUILLE 1. Three Topics (1) Precision and Recall Curves. Receiver Operating Characteristic Curves (ROC). What to do if we do not fix the loss function? (2) The Curse of Dimensionality.

More information

Lecture 6 April

Lecture 6 April Stats 300C: Theory of Statistics Spring 2017 Lecture 6 April 14 2017 Prof. Emmanuel Candes Scribe: S. Wager, E. Candes 1 Outline Agenda: From global testing to multiple testing 1. Testing the global null

More information

CPSC 340: Machine Learning and Data Mining. Regularization Fall 2017

CPSC 340: Machine Learning and Data Mining. Regularization Fall 2017 CPSC 340: Machine Learning and Data Mining Regularization Fall 2017 Assignment 2 Admin 2 late days to hand in tonight, answers posted tomorrow morning. Extra office hours Thursday at 4pm (ICICS 246). Midterm

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

ANALYSIS OF VARIANCE OF BALANCED DAIRY SCIENCE DATA USING SAS

ANALYSIS OF VARIANCE OF BALANCED DAIRY SCIENCE DATA USING SAS ANALYSIS OF VARIANCE OF BALANCED DAIRY SCIENCE DATA USING SAS Ravinder Malhotra and Vipul Sharma National Dairy Research Institute, Karnal-132001 The most common use of statistics in dairy science is testing

More information

One-way between-subjects ANOVA. Comparing three or more independent means

One-way between-subjects ANOVA. Comparing three or more independent means One-way between-subjects ANOVA Comparing three or more independent means Data files SpiderBG.sav Attractiveness.sav Homework: sourcesofself-esteem.sav ANOVA: A Framework Understand the basic principles

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

Testing for Normality

Testing for Normality Testing for Normality For each mean and standard deviation combination a theoretical normal distribution can be determined. This distribution is based on the proportions shown below. This theoretical normal

More information

Course Introduction and Overview Descriptive Statistics Conceptualizations of Variance Review of the General Linear Model

Course Introduction and Overview Descriptive Statistics Conceptualizations of Variance Review of the General Linear Model Course Introduction and Overview Descriptive Statistics Conceptualizations of Variance Review of the General Linear Model EPSY 905: Multivariate Analysis Lecture 1 20 January 2016 EPSY 905: Lecture 1 -

More information

Course Review. Kin 304W Week 14: April 9, 2013

Course Review. Kin 304W Week 14: April 9, 2013 Course Review Kin 304W Week 14: April 9, 2013 1 Today s Outline Format of Kin 304W Final Exam Course Review Hand back marked Project Part II 2 Kin 304W Final Exam Saturday, Thursday, April 18, 3:30-6:30

More information

Solutions exercises of Chapter 7

Solutions exercises of Chapter 7 Solutions exercises of Chapter 7 Exercise 1 a. These are paired samples: each pair of half plates will have about the same level of corrosion, so the result of polishing by the two brands of polish are

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

An Analysis of College Algebra Exam Scores December 14, James D Jones Math Section 01

An Analysis of College Algebra Exam Scores December 14, James D Jones Math Section 01 An Analysis of College Algebra Exam s December, 000 James D Jones Math - Section 0 An Analysis of College Algebra Exam s Introduction Students often complain about a test being too difficult. Are there

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