Hypothesis Testing Student T-Test and Analysis of Variance Chi-Squared Test Contingency Tables

Total Page:16

File Type:pdf, Size:1020Kb

Hypothesis Testing Student T-Test and Analysis of Variance Chi-Squared Test Contingency Tables Simple Hypothesis Testing Student t-test and Analysis of Variance Chi-Squared Test Contingency Tables SYSM 6303: Quantitative Introduction to Risk and Uncertainty in Business Lecture 5: Hypothesis Testing M. Vidyasagar Cecil & Ida Green Chair The University of Texas at Dallas Email: [email protected] October 11, 2014 M. Vidyasagar Modeling Dependencies Simple Hypothesis Testing Student t-test and Analysis of Variance Chi-Squared Test Contingency Tables Outline 1 Simple Hypothesis Testing Accepting or Rejecting a Null Hypothesis Choosing Among Multiple Hypotheses 2 Student t-test and Analysis of Variance Student t-Test Analysis of Variance (ANOVA) 3 Chi-Squared Test 4 Contingency Tables Sensitivity, Specificity, Accuracy Chi-Squared Approximations Fisher's Exact Test M. Vidyasagar Modeling Dependencies Simple Hypothesis Testing Student t-test and Analysis of Variance Chi-Squared Test Contingency Tables Overview One of the major applications of statistical methods is to test various hypotheses, and choose the most likely one. This lecture is devoted to several such applications. Hypotheses can involve either categoricl variables, or numerical variables. Example of categorical variables: The percentage of left-handed men is roughly the same as that of left-handed women. Here the sex and handedness are categorical variables. Example of numerical variable: On average men are taller than women. Here the sex is categorical, but height (which is the quantity being compared) is numerical. M. Vidyasagar Modeling Dependencies Simple Hypothesis Testing Student t-test and Analysis of Variance Accepting or Rejecting a Null Hypothesis Chi-Squared Test Choosing Among Multiple Hypotheses Contingency Tables Outline 1 Simple Hypothesis Testing Accepting or Rejecting a Null Hypothesis Choosing Among Multiple Hypotheses 2 Student t-test and Analysis of Variance Student t-Test Analysis of Variance (ANOVA) 3 Chi-Squared Test 4 Contingency Tables Sensitivity, Specificity, Accuracy Chi-Squared Approximations Fisher's Exact Test M. Vidyasagar Modeling Dependencies Simple Hypothesis Testing Student t-test and Analysis of Variance Accepting or Rejecting a Null Hypothesis Chi-Squared Test Choosing Among Multiple Hypotheses Contingency Tables Outline 1 Simple Hypothesis Testing Accepting or Rejecting a Null Hypothesis Choosing Among Multiple Hypotheses 2 Student t-test and Analysis of Variance Student t-Test Analysis of Variance (ANOVA) 3 Chi-Squared Test 4 Contingency Tables Sensitivity, Specificity, Accuracy Chi-Squared Approximations Fisher's Exact Test M. Vidyasagar Modeling Dependencies Simple Hypothesis Testing Student t-test and Analysis of Variance Accepting or Rejecting a Null Hypothesis Chi-Squared Test Choosing Among Multiple Hypotheses Contingency Tables The Notion of a Null Hypothesis In hypothesis testing, one begins with a \null" hypothesis, which is defined as what one believes in the absence of any information. For instance, given a coin with two faces, we believe the coin is fair. Given a six-sided die, we believe that all six outcomes are equally likely. And so on. As evidence accumulates, we may be able to reject the null hypothesis. Or else we may be unable to reject it, and thus are forced to accept it. M. Vidyasagar Modeling Dependencies Simple Hypothesis Testing Student t-test and Analysis of Variance Accepting or Rejecting a Null Hypothesis Chi-Squared Test Choosing Among Multiple Hypotheses Contingency Tables Coin-Tossing Example We are given a two-faced coin, and the null hypothesis is that it is fair. 100 tosses of the coin produce 60 heads. Question: Do we accept or reject the null hypothesis? Answer: We compute the likelihood of the observation or worse under the null hypothesis. The matlab command T = binopdf(k,n,p) with n = 100; k = 60; p = 0:5 is the likelihood of getting exactly 60 heads in 100 fair coin tosses. But it is more reasonable to compute T = 1 - binocdf(k-1,n,p), which is the likelihood of getting at least 60 heads in 100 fair coin tosses. This returns the answer T = 0:0284. So we are 97.16% sure that the null hypothesis is false. M. Vidyasagar Modeling Dependencies Simple Hypothesis Testing Student t-test and Analysis of Variance Accepting or Rejecting a Null Hypothesis Chi-Squared Test Choosing Among Multiple Hypotheses Contingency Tables Coin-Tossing Example (Cont'd) Usually we set a threshold below which we will reject the null hypothesis. The value of 0:05 is widely used. So in this case we would say that \the null hypothesis is rejected at a 95% level," or in plain English that \we are 95% sure that the null hypothesis is false." This statement means only that the likelihood of the actual outcome is less than 0:95 { it doesn't say what the likelihood is. To eliminate the ambiguity, the phrase \P -value" (or p-value) is used. For this outcome the P -value is 0.0284, which is lower than the threshold we set of 0.05, so the null hypothesis is rejected at a 95% confidence level. M. Vidyasagar Modeling Dependencies Simple Hypothesis Testing Student t-test and Analysis of Variance Accepting or Rejecting a Null Hypothesis Chi-Squared Test Choosing Among Multiple Hypotheses Contingency Tables Coin-Tossing Example (Cont'd) Low P -values lead to the null hypothesis being rejected; but what about high P -values? Suppose the null hypothesis is that the coin is fair, and that 100 tosses result in 47 heads. This time we compute the likelihood of getting 47 or fewer heads. The commant binocdf(k,n,p) with n = 100; k = 47; p = 0:5 returns the value 0:3086. So we are about 30% sure that the null hypothesis is not consistent with the data. But we cannot reject the null hypothesis because this value is above the usual threshold of 0:05. M. Vidyasagar Modeling Dependencies Simple Hypothesis Testing Student t-test and Analysis of Variance Accepting or Rejecting a Null Hypothesis Chi-Squared Test Choosing Among Multiple Hypotheses Contingency Tables Outline 1 Simple Hypothesis Testing Accepting or Rejecting a Null Hypothesis Choosing Among Multiple Hypotheses 2 Student t-test and Analysis of Variance Student t-Test Analysis of Variance (ANOVA) 3 Chi-Squared Test 4 Contingency Tables Sensitivity, Specificity, Accuracy Chi-Squared Approximations Fisher's Exact Test M. Vidyasagar Modeling Dependencies Simple Hypothesis Testing Student t-test and Analysis of Variance Accepting or Rejecting a Null Hypothesis Chi-Squared Test Choosing Among Multiple Hypotheses Contingency Tables Null vs. Alternate Hypotheses A major change in hypothesis testing took place with the introduction of \alternate hypotheses." Instead of having just one hypothesis, namely the null, we have a variety of hypotheses from which to choose. Approach: Compute the likelihood of the data under each of the competing hypotheses, and choose the one with the highest (log) likelihood. M. Vidyasagar Modeling Dependencies Simple Hypothesis Testing Student t-test and Analysis of Variance Accepting or Rejecting a Null Hypothesis Chi-Squared Test Choosing Among Multiple Hypotheses Contingency Tables Coin-Tossing Example (Cont'd) Suppose we have two competing hypotheses: H0: The coin is fair (the null hypothesis). H1: The probability of heads is 0:7. An experiment of 100 tosses produces 60 heads. Which hypothesis do we choose? M. Vidyasagar Modeling Dependencies Simple Hypothesis Testing Student t-test and Analysis of Variance Accepting or Rejecting a Null Hypothesis Chi-Squared Test Choosing Among Multiple Hypotheses Contingency Tables Coin-Tossing Example (Cont'd) The likelihood of the data under H0 is computed as 1 - binocdf(k-1,n,p) with n = 100; k = 60; p = 0:5. This gives L0 = 0:0284. The likelihood of the data under H1 is computed as binocdf(k,n,p) with n = 100; k = 60; p = 0:7. This gives L1 = 0:0210. So we reject H1 and accept H0. Note however that each hypothesis would have been rejected, had it been the only (null) hypothesis! M. Vidyasagar Modeling Dependencies Simple Hypothesis Testing Student t-test and Analysis of Variance Accepting or Rejecting a Null Hypothesis Chi-Squared Test Choosing Among Multiple Hypotheses Contingency Tables Maximum Likelihood Estimation Revisited The previous example shows the potential pitfalls of being \forced" to choose the \least unlikely" hypothesis from a set of hypotheses, all of them unlikely by themselves. Maximum likelihood estimation gets around this difficulty by finding the best possible fit to the data from the given family of models. If n = 100 coin tosses result in k = 60 heads, then the maximum likelihood estimate of the probability of heads is p^ = 60=100 = 0:6. To put this in perspective, this choice maximizes the likelihood binopdf(k,n,p) (not binocdf(k,n,p)) with respect to p, given that n = 100; k = 60. M. Vidyasagar Modeling Dependencies Simple Hypothesis Testing Student t-test and Analysis of Variance Student t-Test Chi-Squared Test Analysis of Variance (ANOVA) Contingency Tables Outline 1 Simple Hypothesis Testing Accepting or Rejecting a Null Hypothesis Choosing Among Multiple Hypotheses 2 Student t-test and Analysis of Variance Student t-Test Analysis of Variance (ANOVA) 3 Chi-Squared Test 4 Contingency Tables Sensitivity, Specificity, Accuracy Chi-Squared Approximations Fisher's Exact Test M. Vidyasagar Modeling Dependencies Simple Hypothesis Testing Student t-test and Analysis of Variance Student t-Test Chi-Squared Test Analysis of Variance (ANOVA) Contingency Tables Outline 1 Simple Hypothesis Testing Accepting or Rejecting a Null Hypothesis Choosing Among Multiple Hypotheses 2 Student t-test and Analysis of Variance Student t-Test Analysis of Variance (ANOVA) 3 Chi-Squared Test 4 Contingency Tables Sensitivity, Specificity, Accuracy Chi-Squared Approximations Fisher's Exact Test M. Vidyasagar Modeling Dependencies Simple Hypothesis Testing Student t-test and Analysis of Variance Student t-Test Chi-Squared Test Analysis of Variance (ANOVA) Contingency Tables Student t-test The \student" t-test refers to a hypothesis-testing procedure first proposed by William Seely Gossett under the pseudonym \Student." It tests whether or not there is a statistically significant difference between the means of two samples.
Recommended publications
  • Chapter 4: Fisher's Exact Test in Completely Randomized Experiments
    1 Chapter 4: Fisher’s Exact Test in Completely Randomized Experiments Fisher (1925, 1926) was concerned with testing hypotheses regarding the effect of treat- ments. Specifically, he focused on testing sharp null hypotheses, that is, null hypotheses under which all potential outcomes are known exactly. Under such null hypotheses all un- known quantities in Table 4 in Chapter 1 are known–there are no missing data anymore. As we shall see, this implies that we can figure out the distribution of any statistic generated by the randomization. Fisher’s great insight concerns the value of the physical randomization of the treatments for inference. Fisher’s classic example is that of the tea-drinking lady: “A lady declares that by tasting a cup of tea made with milk she can discriminate whether the milk or the tea infusion was first added to the cup. ... Our experi- ment consists in mixing eight cups of tea, four in one way and four in the other, and presenting them to the subject in random order. ... Her task is to divide the cups into two sets of 4, agreeing, if possible, with the treatments received. ... The element in the experimental procedure which contains the essential safeguard is that the two modifications of the test beverage are to be prepared “in random order.” This is in fact the only point in the experimental procedure in which the laws of chance, which are to be in exclusive control of our frequency distribution, have been explicitly introduced. ... it may be said that the simple precaution of randomisation will suffice to guarantee the validity of the test of significance, by which the result of the experiment is to be judged.” The approach is clear: an experiment is designed to evaluate the lady’s claim to be able to discriminate wether the milk or tea was first poured into the cup.
    [Show full text]
  • Pearson-Fisher Chi-Square Statistic Revisited
    Information 2011 , 2, 528-545; doi:10.3390/info2030528 OPEN ACCESS information ISSN 2078-2489 www.mdpi.com/journal/information Communication Pearson-Fisher Chi-Square Statistic Revisited Sorana D. Bolboac ă 1, Lorentz Jäntschi 2,*, Adriana F. Sestra ş 2,3 , Radu E. Sestra ş 2 and Doru C. Pamfil 2 1 “Iuliu Ha ţieganu” University of Medicine and Pharmacy Cluj-Napoca, 6 Louis Pasteur, Cluj-Napoca 400349, Romania; E-Mail: [email protected] 2 University of Agricultural Sciences and Veterinary Medicine Cluj-Napoca, 3-5 M ănăş tur, Cluj-Napoca 400372, Romania; E-Mails: [email protected] (A.F.S.); [email protected] (R.E.S.); [email protected] (D.C.P.) 3 Fruit Research Station, 3-5 Horticultorilor, Cluj-Napoca 400454, Romania * Author to whom correspondence should be addressed; E-Mail: [email protected]; Tel: +4-0264-401-775; Fax: +4-0264-401-768. Received: 22 July 2011; in revised form: 20 August 2011 / Accepted: 8 September 2011 / Published: 15 September 2011 Abstract: The Chi-Square test (χ2 test) is a family of tests based on a series of assumptions and is frequently used in the statistical analysis of experimental data. The aim of our paper was to present solutions to common problems when applying the Chi-square tests for testing goodness-of-fit, homogeneity and independence. The main characteristics of these three tests are presented along with various problems related to their application. The main problems identified in the application of the goodness-of-fit test were as follows: defining the frequency classes, calculating the X2 statistic, and applying the χ2 test.
    [Show full text]
  • Notes: Hypothesis Testing, Fisher's Exact Test
    Notes: Hypothesis Testing, Fisher’s Exact Test CS 3130 / ECE 3530: Probability and Statistics for Engineers Novermber 25, 2014 The Lady Tasting Tea Many of the modern principles used today for designing experiments and testing hypotheses were intro- duced by Ronald A. Fisher in his 1935 book The Design of Experiments. As the story goes, he came up with these ideas at a party where a woman claimed to be able to tell if a tea was prepared with milk added to the cup first or with milk added after the tea was poured. Fisher designed an experiment where the lady was presented with 8 cups of tea, 4 with milk first, 4 with tea first, in random order. She then tasted each cup and reported which four she thought had milk added first. Now the question Fisher asked is, “how do we test whether she really is skilled at this or if she’s just guessing?” To do this, Fisher introduced the idea of a null hypothesis, which can be thought of as a “default position” or “the status quo” where nothing very interesting is happening. In the lady tasting tea experiment, the null hypothesis was that the lady could not really tell the difference between teas, and she is just guessing. Now, the idea of hypothesis testing is to attempt to disprove or reject the null hypothesis, or more accurately, to see how much the data collected in the experiment provides evidence that the null hypothesis is false. The idea is to assume the null hypothesis is true, i.e., that the lady is just guessing.
    [Show full text]
  • Fisher's Exact Test for Two Proportions
    PASS Sample Size Software NCSS.com Chapter 194 Fisher’s Exact Test for Two Proportions Introduction This module computes power and sample size for hypothesis tests of the difference, ratio, or odds ratio of two independent proportions using Fisher’s exact test. This procedure assumes that the difference between the two proportions is zero or their ratio is one under the null hypothesis. The power calculations assume that random samples are drawn from two separate populations. Technical Details Suppose you have two populations from which dichotomous (binary) responses will be recorded. The probability (or risk) of obtaining the event of interest in population 1 (the treatment group) is p1 and in population 2 (the control group) is p2 . The corresponding failure proportions are given by q1 = 1− p1 and q2 = 1− p2 . The assumption is made that the responses from each group follow a binomial distribution. This means that the event probability, pi , is the same for all subjects within the group and that the response from one subject is independent of that of any other subject. Random samples of m and n individuals are obtained from these two populations. The data from these samples can be displayed in a 2-by-2 contingency table as follows Group Success Failure Total Treatment a c m Control b d n Total s f N The following alternative notation is also used. Group Success Failure Total Treatment x11 x12 n1 Control x21 x22 n2 Total m1 m2 N 194-1 © NCSS, LLC. All Rights Reserved. PASS Sample Size Software NCSS.com Fisher’s Exact Test for Two Proportions The binomial proportions p1 and p2 are estimated from these data using the formulae a x11 b x21 p1 = = and p2 = = m n1 n n2 Comparing Two Proportions When analyzing studies such as this, one usually wants to compare the two binomial probabilities, p1 and p2 .
    [Show full text]
  • Sample Size Calculation with Gpower
    Sample Size Calculation with GPower Dr. Mark Williamson, Statistician Biostatistics, Epidemiology, and Research Design Core DaCCoTA Purpose ◦ This Module was created to provide instruction and examples on sample size calculations for a variety of statistical tests on behalf of BERDC ◦ The software used is GPower, the premiere free software for sample size calculation that can be used in Mac or Windows https://dl2.macupdate.com/images/icons256/24037.png Background ◦ The Biostatistics, Epidemiology, and Research Design Core (BERDC) is a component of the DaCCoTA program ◦ Dakota Cancer Collaborative on Translational Activity has as its goal to bring together researchers and clinicians with diverse experience from across the region to develop unique and innovative means of combating cancer in North and South Dakota ◦ If you use this Module for research, please reference the DaCCoTA project The Why of Sample Size Calculation ◦ In designing an experiment, a key question is: How many animals/subjects do I need for my experiment? ◦ Too small of a sample size can under-detect the effect of interest in your experiment ◦ Too large of a sample size may lead to unnecessary wasting of resources and animals ◦ Like Goldilocks, we want our sample size to be ‘just right’ ◦ The answer: Sample Size Calculation ◦ Goal: We strive to have enough samples to reasonably detect an effect if it really is there without wasting limited resources on too many samples. https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/The_Three_Bears_- _Project_Gutenberg_eText_17034.jpg/1200px-The_Three_Bears_-_Project_Gutenberg_eText_17034.jpg
    [Show full text]
  • Statistics: a Brief Overview
    Statistics: A Brief Overview Katherine H. Shaver, M.S. Biostatistician Carilion Clinic Statistics: A Brief Overview Course Objectives • Upon completion of the course, you will be able to: – Distinguish among several statistical applications – Select a statistical application suitable for a research question/hypothesis/estimation – Identify basic database structure / organization requirements necessary for statistical testing and interpretation What Can Statistics Do For You? • Make your research results credible • Help you get your work published • Make you an informed consumer of others’ research Categories of Statistics • Descriptive Statistics • Inferential Statistics Descriptive Statistics Used to Summarize a Set of Data – N (size of sample) – Mean, Median, Mode (central tendency) – Standard deviation, 25th and 75th percentiles (variability) – Minimum, Maximum (range of data) – Frequencies (counts, percentages) Example of a Summary Table of Descriptive Statistics Summary Statistics for LDL Cholesterol Std. Lab Parameter N Mean Dev. Min Q1 Median Q3 Max LDL Cholesterol 150 140.8 19.5 98 132 143 162 195 (mg/dl) Scatterplot Box-and-Whisker Plot Histogram Length of Hospital Stay – A Skewed Distribution 60 50 P 40 e r c 30 e n t 20 10 0 2 4 6 8 10 12 14 Length of Hospital Stay (Days) Inferential Statistics • Data from a random sample used to draw conclusions about a larger, unmeasured population • Two Types – Estimation – Hypothesis Testing Types of Inferential Analyses • Estimation – calculate an approximation of a result and the precision of the approximation [associated with confidence interval] • Hypothesis Testing – determine if two or more groups are statistically significantly different from one another [associated with p-value] Types of Data The type of data you have will influence your choice of statistical methods… Types of Data Categorical: • Data that are labels rather than numbers –Nominal – order of the categories is arbitrary (e.g., gender) –Ordinal – natural ordering of the data.
    [Show full text]
  • Biost 517 Applied Biostatistics I Lecture Outline
    Applied Biostatistics I, AUT 2012 November 26, 2012 Lecture Outline Biost 517 • Comparing Independent Proportions – Large Samples (Uncensored) Applied Biostatistics I • Chi Squared Test – Small Samples (Uncensored) Scott S. Emerson, M.D., Ph.D. • Fisher’s Exact Test Professor of Biostatistics University of Washington • Adjusted Chi Squared or Fisher’s Exact Test Lecture 13: Two Sample Inference About Independent Proportions November 26, 2012 1 2 © 2002, 2003, 2005 Scott S. Emerson, M.D., Ph.D. Summary Measures Comparing Independent Proportions • Comparing distributions of binary variables across two groups • Difference of proportions (most common) – Most common Large Samples (Uncensored) – Inference based on difference of estimated proportions • Ratio of proportions – Of most relevance with low probabilities – Often actually use odds ratio 3 4 Part 1:1 Applied Biostatistics I, AUT 2012 November 26, 2012 Data: Contingency Tables Large Sample Distribution • The cross classified counts • With totally independent data, we use the Central Limit Response Theorem Yes No | Tot Group 0 a b | n0 • Proportions are means 1 c d | n1 – Sample proportions are sample means Total m0 m1 | N • Standard error estimates for each group’s estimated proportion based on the mean – variance relationship 5 6 Asymptotic Sampling Distn Asymptotic Confidence Intervals • Comparing two binomial proportions • Confidence interval for difference between two binomial proportions n0 Suppose independent X i ~ B1, p0 X i X ~ B n0 , p0 i1 We want to make inference about
    [Show full text]
  • When to Use Fisher's Exact Test
    When To Use Fisher’s Exact Test by Keith M. Bower, M.S. Reprinted with permission from the American Society for Quality Six Sigma practitioners occasionally conduct studies to assess differences between items such as operators or machines. When the experimental data are measured on a continuous scale (measuring nozzle diameter in microns, for example), a procedure such as “Student’s” two-sample t-test may be appropriate.1 When the response variable is recorded using counts, however, Karl Pearson’s χ 2 test may be employed.2 But when the number of observations obtained for analysis is small, the χ 2 test may produce misleading results. A more appropriate form of analysis (when presented with a 2 * 2 contingency table) is to use R.A. Fisher’s exact test. Example On the Late Show With David Letterman, the host (David) and the show’s musical director (Paul Shaffer) frequently assess whether particular items will or will not float when placed in a tank of water. Let’s assume Letterman guessed correctly for eight of nine items, and Shaffer guessed correctly for only four items. Let’s also assume all the items have the same probability of being guessed. Figure 1 Guessed correctly Guessed incorrectly Total Letterman 8 1 9 Shaffer 4 5 9 Total 12 6 18 You would typically use the χ 2 test when presented with the contingency table results in Figure 1. In this case, the χ 2 test assesses what the expected frequencies would be if the null hypothesis (equal proportions) was true. For example, if there were no difference between Letterman and Shaffer’s guesses, you would expect Letterman to have been correct six times (see Figure 2).
    [Show full text]
  • Statistics for EES and MEME Chi-Square Tests and Fisher's Exact
    Statistics for EES and MEME Chi-square tests and Fisher's exact test Dirk Metzler May 22, 2020 Contents 1 X2 goodness-of-fit test 1 2 X2 test for homogeneity/independence 3 3 Fisher's exact test 6 4 X2 test for fitted models with free parameters 8 1 X2 goodness-of-fit test Mendel's experiments with peas green (recessive) vs. yellow (dominant) round (dominant) vs. wrinkled (recessive) Expected frequencies when crossing double-hybrids: green yellow 1 3 wrinkled 16 16 3 9 round 16 16 Observed in experiment (n = 556): green yellow wrinkled 32 101 round 108 315 Do the observed frequencies agree with the expected ones? Relative frequencies: green/wrink. yell./wrink. green/round yell./round expected 0.0625 0.1875 0.1875 0.5625 observed 0.0576 0.1942 0.1816 0.5665 Can these deviations be well explained by pure random? Measure deviations by X2-statistic: 2 X (Oi − Ei) X2 = E i i 1 where Ei = expected number in class i and Oi = observed number in class i. 2 Why scaling (Oi − Ei) by dividing by Ei = EOi? Let n be the total sample size and pi be the probability (under the null hypothesis) each individual to contribute Oi. Under the null hypothesis, Oi is binomially distributed: n Pr(O = k) = pk · (1 − p )n−k: i k i i Thus, 2 E(Oi − Ei) = Var(Oi) = n · p · (1 − p): If p is rather small, n · p · (1 − p) ≈ n · p and 2 (Oi − Ei) Var(Oi) E = = 1 − p ≈ 1: Ei EOi By the way..
    [Show full text]
  • Statistical Methods I Outline of Topics Types of Data Descriptive Statistics
    Outline of Topics Statistical Methods I Tamekia L. Jones, Ph.D. I. Descriptive Statistics ([email protected]) II. Hypothesis Testing Research Assistant Professor III. Parametric Statistical Tests Children’s Oncology Group Statistics & Data Center IV. Nonparametric Statistical Tests Department of Biostatistics V. Correlation and Regression Colleges of Medicine and Public Health & Health Professions 2 Types of Data Descriptive Statistics • Nominal Data – Gender: Male, Female • Descriptive statistical measurements are used in medical literature to summarize data or • Ordinal Data describe the attributes of a set of data – Strongly disagree, Disagree, Slightly disagree, Neutral,,gyg,g, Slightly agree, Agree, Strong gygly agree • Nominal data – summarize using rates/i/proportions. • Interval Data – e.g. % males, % females on a clinical study – Numeric data: Birth weight Can also be used for Ordinal data 3 4 1 Descriptive Statistics (contd) Measures of Central Tendency • Summary Statistics that describe the • Two parameters used most frequently in location of the center of a distribution of clinical medicine numerical or ordinal measurements where – Measures of Central Tendency - A distribution consists of values of a characteristic – Measures of Dispersion and the frequency of their occurrence – Example: Serum Cholesterol levels (mmol/L) 6.8 5.1 6.1 4.4 5.0 7.1 5.5 3.8 4.4 5 6 Measures of Central Tendency (contd) Measures of Central Tendency (contd) Mean (Arithmetic Average) Mean – used for numerical data and for symmetric distributions Median
    [Show full text]
  • 2 X 2 Contingency Chi-Square
    Newsom Psy 521/621 Univariate Quantitative Methods, Fall 2020 1 2 X 2 Contingency Chi-square The 2 X 2 contingency chi-square is used for the comparison of two groups with a dichotomous dependent variable. We might compare males and females on a yes/no response scale, for instance. The contingency chi-square is based on the same principles as the simple chi-square analysis in which we examine the expected vs. the observed frequencies. The computation is quite similar, except that the estimate of the expected frequency is a little harder to determine. Let’s use the Quinnipiac University poll data to examine the extent to which independents (non-party affiliated voters) support Biden and Trump.1 Here are the frequencies: Trump Biden Party affiliated 338 363 701 Independent 125 156 281 463 519 982 To answer the question whether Biden or Trump have a higher proportion of independent voters, we are making a comparison of the proportion of Biden supporters who are independents, 156/519 = .30, or 30.0%, to the proportion of Trump supporters who are independents, 125/463 = .27, or 27.0%. So, the table appears to suggest that Biden's supporters are more likely to be independents then Trump's supporters. Notice that this is a comparison of the conditional proportions, which correspond to column percentages in cross-tabulation 2 output. First, we need to compute the expected frequencies for each cell. R1 is the frequency for row 1, C1 is the frequency for row 2, and N is the total sample size. The first cell is: RC (701)( 463) E =11 = = 330.51 11
    [Show full text]
  • HST 190: Introduction to Biostatistics
    HST 190: Introduction to Biostatistics Lecture 6: Methods for binary data 1 HST 190: Intro to Biostatistics Binary data • So far, we have focused on setting where outcome is continuous • Now, we consider the setting where our outcome of interest is binary, meaning it takes values 1 or 0. § In particular, we consider the 2x2 contingency table tabulating pairs of binary observations (�#, �#), … , (�(, �() 2 HST 190: Intro to Biostatistics • Consider two populations § IV drug users who report sharing needles § IV drug users who do not report sharing needles • Is the rate of positive tuberculin skin test equal in both populations? § To address this question, we sample 40 patients who report and 60 patients who do not to compare rates of positive tuberculin test § Data cross-classified according to these two binary variables 2x2 table Positive Negative Total Report sharing 12 28 40 Don’t report 11 49 60 sharing Total 23 77 100 3 HST 190: Intro to Biostatistics Chi-square test for contingency tables • The Chi-square test is a test of association between two categorical variables. • In general, its null and alternative hypotheses are § �*: the relative proportions of individuals in each category of variable #1 are the same across all categories of variable #2; that is, the variables are not associated (i.e., statistically independent). § �# : the variables are associated o Notice the alternative is always two-sided • In our example, this means § �*: reported needle sharing is not associated with PPD 4 HST 190: Intro to Biostatistics • The Chi-square test compares observed counts in the table to counts expected if no association (i.e., �*) § Expected counts are obtained using the marginal totals of the table.
    [Show full text]