Parametric Statistics: Exploring Assumptions

Total Page:16

File Type:pdf, Size:1020Kb

Parametric Statistics: Exploring Assumptions Parametric Statistics: Exploring Assumptions http://www.pelagicos.net/classes_biometry_fa20.htm PSA – Quiz #3 Probability that a given snail would be a given size, if - in fact - it belongs to a given population “Large” species Find a snail = “Small” species Mean = 12mm, STD = 2 7mm long. What Mean = 4mm, STD = 1 species is it? Size Range: Size Range: (12 – 4) to (12 + 4) (4 – 2) to (4 + 2) 96% from 8 to 16 96% from 2 to 6 Z = (7 – 12) / 2 Z = (7 – 4) / 1 Z = -5 / 2 Z = 3 / 1 Z = -2.5 Z = +3 R Assignment #2 - PSA Question1: What happens if you type this command in the console: > Arbuthnot Explain why ? > Arbuthnot Error: object 'Arbuthnot' not found HINT: Arbuthnot is different from Arbuthnot Why? R is case sensitive Question 18: Describe the streak length distributions: What is the most common streak length in kobe dataset? What is the maximum streak length in kobe dataset? Paste the plot of the kobe dataset >table(kobe_streak) > kobe_streak 0 1 2 3 4 39 24 6 6 1 The most common streak length is “0”, which means kobe missed his first shot. The largest streak is “4” which means kobe made up to 4 shots in a row. Question 18: Describe the streak length distributions: What is the most common streak length in cold dataset? What is the maximum streak length in cold dataset? Paste the plot of the kobe dataset >table(cold_streak) > cold_streak 0 1 2 3 4 5 37 12 9 5 4 1 The most common streak length is “0”, which means a cold hand player would miss the first shot. The largest streak is “5” which means the cold hand player would make up to 5 shots in a row. Question 20: Do you think Kobe has a “hold hand”? Explain your reasoning of why / why not? For full credit, use the evidence you obtained from the data and the model prediction. It is hard to tell how different the model results (expected results) are from the observations (observed results): Some statistics agree and some disagree What summary statistics can we use to compare these two data distributions? mean, median, S.D., IQR > mean(kobe_streak) > mean(cold_streak) [1] 0.7631579 [1] 0.9705882 > sd(kobe_streak) > sd(cold_streak) [1] 0.9915432 [1] 1.326769 > median(kobe_streak) > median(cold_streak) [1] 0 [1] 0 > IQR(kobe_streak) > IQR(cold_streak) [1] 1 [1] 2 Comparing Two Sets of Categorical Variables Kobe Model Rcmdr> fisher.test (.Table) Fisher's Exact p-value = 0.1983 R Packages Used in This Chapter For this chapter, you will use the following packages: Start Rcmdr install.packages(“car”); install.packages(“ggplot2”); install.packages(“pastecs”); install.packages(“psych”); library(car); library(ggplot2); library(pastecs); library(psych); NOTE: red font indicates Rcmdr dependencies Definition – (Non)Parametric Parametric statistics assume that data come from a specific probability distribution (a normal distribution) and make inferences about parameters of the distribution. Non-parametric statistics involves: - distribution free techniques do not rely on data belonging to a particular distribution. For instance, randomization tests, whereby observations are shuffled. - non-parametric statistics whose interpretation does not depend on fitting any parameterized distribution. For instance, statistics based on ranks of observations are in the core of many non-parametric approaches. Parametric Statistics Benefits and Costs: - Because parametric statistics require a normal probability distribution, they are not distribution-free. - Parametric methods make more assumptions than non- parametric methods. If the extra assumptions are correct, parametric methods have more statistical power (produce more accurate and precise estimates.) - However, if those assumptions are incorrect, parametric methods can be very misleading. They can cause false positives (type –I errors). Thus, they are often not considered robust. Parametric Statistics Suggested Approach: - Use parametric tests – whenever possible. -Take care to examine diagnostic statistics and to determine if extra assumptions are met. - Perform the matching non-parametric test and compare results. What causes disagreements? Exploring Assumptions • Parametric tests based on the normal distribution assume: – Independent Observations – Interval or Ratio Data (not binomial / nominal) – Normally Distributed • Sampling Distribution • Residuals of Tests – Many tests: Homogeneity of Variances Exploring Assumptions • Assumptions of parametric tests based on the normal distribution • Aim of this chapter: • Quantify the assumption of normality o Graphical displays o Skew o Kurtosis o Normality tests • Quantify the homogeneity of variances (when dealing with 2 or more samples): Levene’s test Assessing Normality • We do not have access to sample the entire biological population, so we test the observed data • 1) Central Limit Theorem – If N < 25, sampling distribution rarely normal • 2) Graphical Displays – Histogram – Q-Q plot • 3) Skewness / Kurtosis (point estimate +/- SE) – Do they overlap with 0 ? (normal distribution) Assessing Normality • 4) Performing Statistical Tests o Shapiro – Wilk Test –Tests if data differ from a normal distribution Significant = non-Normal data Non-Significant = Normal data o Equal Variances (for 2 or more samples) Tests if the data distributions have equal variances Significant = different variances Non-Significant = equal variances Assessing Normality - Graphically Characteristics of Normal Distributions Unimodal, Symmetrical, Bell-shaped Assessing Normality - Graphically Comparing observations against a cumulative normal distribution (same mean and S.D.) Assessing Normality - Graphically 3.5 3.0 3.0 2.5 2.5 2.0 2.0 e l e l p p m m a a s s 1.5 1.5 1.0 1.0 0.5 0.5 0.0 -3 -2 -1 0 1 2 3 -2 -1 0 1 2 theoretical theoretical The percentiles denote the proportion of cases (observations) that fall below a certain value. Compared observed percentiles to percentiles we would expect from a normal distribution. Example: Festival Data Set Biologist worried about potential health effects of music festivals. Measured hygiene of 810 concert-goers over the three days of a music festival. Hygiene measured using standardized index (from 0 to 4): 0 = you smell terribly 4 = you smell beautifully Download and Import Festival Data (MusicFestival.xlsx) For ease of use, rename the Data Set “Festival” > Festival <- DownloadFestival Explore Data Graphically: RCmdr day1 day2 day3 histogram density histogram Graphs in Rcmdr – Quantiles Graphically compares an observed Normal Distribution is the Default (empirical) distribution (points) with a chosen Identifies Max / Min as Default theoretical expectation (line) Identify Points: Automatic or Interactive Graphs in Rcmdr – Quantiles The solid red line day1 is the expected pattern a normal distribution with the same mean and SD and the sampled data. Points outside of the dashed line envelope suggest significant deviations Graphs in Rcmdr – Quantiles day 2 day 3 Note: The straight line represents the expected pattern for a normal distribution Explore Festival Data Set We can also explore the summary statistics describing the three datasets (day1, day2, day3) using Rcmdr: > numSummary(Festival[,c("day1", "day2", "day3"), drop=FALSE], statistics=c("mean", "sd", "IQR", "quantiles", "skewness", "kurtosis"), quantiles=c(0,.25,.5,.75,1), type="2") Explore Festival Data Set We can also explore the summary statistics describing the three datasets (day1, day2, day3) using Rcmdr: NOTE: multiple datasets can be analyzed at once What statistics would you use to assess data normality? Explore Festival Data Set Exploring the summary statistics describing the three datasets (day1, day2, day3) using Rcmdr: > numSummary(Festival[,c("day1", "day2", "day3"), drop=FALSE], statistics=c("mean", "quantiles", "skewness", "kurtosis"), quantiles=c(.5), type="2") mean skewness kurtosis 50% n NA day1 1.7933580 8.865312 170.4502658 1.79 810 0 day2 0.9609091 1.095226 0.8222057 0.79 264 546 day3 0.9765041 1.032868 0.7315003 0.76 123 687 Further Explore Festival Data Set Exploring additional datasets using other functions: describe() function in psych package > describe(Festival$day1) vars n mean sd median skew kurtosis 1 810 1.79 0.94 1.79 8.83 168.97 trimmed mad min max range se 1.77 0.7 0.02 20.02 20 0.03 Further Explore Festival Data Set Exploring additional datasets using other functions: stat.desc() function in pastecs package > stat.desc(Festival$day1, basic = FALSE, norm = TRUE) basic argument: Basic statistics included if TRUE (Note: FALSE is the default) norm argument: Statistics relating to normal distribution included if TRUE (Note: FALSE is the default) Further Explore Festival Data Set > stat.desc(Festival$day1, basic = FALSE, norm = TRUE) median mean 1.790000e+00 1.793358e+00 SE.mean C.I.mean.0.95 3.318617e-02 6.514115e-02 var std.dev 8.920705e-01 9.444949e-01 coef.var 5.266627e-01 Explore Festival Data Set We can also explore the summary statistics describing the three datasets (day1, day2, day3) using RCmdr: > numSummary(Festival[,c("day1", "day2", "day3"), drop=FALSE], statistics=c("mean", "sd", "IQR", "quantiles", "skewness", "kurtosis"), quantiles=c(0,.25,.5,.75,1), type="2") Further Explore Festival Data Set > stat.desc(Festival$day1, basic = FALSE, norm = TRUE) skewness skew.2SE skew.2SE: 8.832504e+00 5.140707e+01 Skew divided by 2 SE kurtosis kurt.2SE kurtosis.2SE: 1.689671e+02 4.923139e+02 Kurtosis divided by 2 SE • How can we interpret these results? Z= (observed value – theoretical value) / (SE of value) Further Explore Festival Data Set skewness skew.2SE skew.2SE: 8.832504e+00 5.140707e+01 Skew
Recommended publications
  • Parametric and Non-Parametric Statistics for Program Performance Analysis and Comparison Julien Worms, Sid Touati
    Parametric and Non-Parametric Statistics for Program Performance Analysis and Comparison Julien Worms, Sid Touati To cite this version: Julien Worms, Sid Touati. Parametric and Non-Parametric Statistics for Program Performance Anal- ysis and Comparison. [Research Report] RR-8875, INRIA Sophia Antipolis - I3S; Université Nice Sophia Antipolis; Université Versailles Saint Quentin en Yvelines; Laboratoire de mathématiques de Versailles. 2017, pp.70. hal-01286112v3 HAL Id: hal-01286112 https://hal.inria.fr/hal-01286112v3 Submitted on 29 Jun 2017 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Public Domain Parametric and Non-Parametric Statistics for Program Performance Analysis and Comparison Julien WORMS, Sid TOUATI RESEARCH REPORT N° 8875 Mar 2016 Project-Teams "Probabilités et ISSN 0249-6399 ISRN INRIA/RR--8875--FR+ENG Statistique" et AOSTE Parametric and Non-Parametric Statistics for Program Performance Analysis and Comparison Julien Worms∗, Sid Touati† Project-Teams "Probabilités et Statistique" et AOSTE Research Report n° 8875 — Mar 2016 — 70 pages Abstract: This report is a continuation of our previous research effort on statistical program performance analysis and comparison [TWB10, TWB13], in presence of program performance variability. In the previous study, we gave a formal statistical methodology to analyse program speedups based on mean or median performance metrics: execution time, energy consumption, etc.
    [Show full text]
  • Non Parametric Test: Chi Square Test of Contingencies
    Weblinks http://www:stat.sc.edu/_west/applets/chisqdemo1.html http://2012books.lardbucket.org/books/beginning-statistics/s15-chi-square-tests-and-f- tests.html www.psypress.com/spss-made-simple Suggested Readings Siegel, S. & Castellan, N.J. (1988). Non Parametric Statistics for the Behavioral Sciences (2nd edn.). McGraw Hill Book Company: New York. Clark- Carter, D. (2010). Quantitative psychological research: a student’s handbook (3rd edn.). Psychology Press: New York. Myers, J.L. & Well, A.D. (1991). Research Design and Statistical analysis. New York: Harper Collins. Agresti, A. 91996). An introduction to categorical data analysis. New York: Wiley. PSYCHOLOGY PAPER No.2 : Quantitative Methods MODULE No. 15: Non parametric test: chi square test of contingencies Zimmerman, D. & Zumbo, B.D. (1993). The relative power of parametric and non- parametric statistics. In G. Karen & C. Lewis (eds.), A handbook for data analysis in behavioral sciences: Methodological issues (pp. 481- 517). Hillsdale, NJ: Lawrence Earlbaum Associates, Inc. Field, A. (2005). Discovering statistics using SPSS (2nd ed.). London: Sage. Biographic Sketch Description 1894 Karl Pearson(1857-1936) was the first person to use the term “standard deviation” in one of his lectures. contributed to statistical studies by discovering Chi square. Founded statistical laboratory in 1911 in England. http://www.swlearning.com R.A. Fisher (1890- 1962) Father of modern statistics was educated at Harrow and Cambridge where he excelled in mathematics. He later became interested in theory of errors and ultimately explored statistical problems like: designing of experiments, analysis of variance. He developed methods suitable for small samples and discovered precise distributions of many sample statistics.
    [Show full text]
  • Pitfalls and Options in Hypothesis Testing for Comparing Differences in Means
    Annals of Nuclear Cardiology Vol. 4 No. 1 83-87 REVIEW ARTICLE Statistics in Nuclear Cardiology: So, What’s the Difference? The t-Test: Pitfalls and Options in Hypothesis Testing for Comparing Differences in Means David N. Williams, PhD1), Kathryn A. Williams, MS2) and Michael Monuteaux, ScD3) Received: June 18, 2018/Revised manuscript received: July 19, 2018/Accepted: July 30, 2018 ○C The Japanese Society of Nuclear Cardiology 2018 Abstract Decisions related to differences of the measures of central tendency of population parameters are an important part of clinical research. Choice of the appropriate statistical test is critical to avoiding errors when making those decisions. All statistical tests require that one or more assumptions be met. The t-test is one of the most widely used tools but is not appropriate when assumptions such as normality are not met, especially when small samples, <40, are used. Non-parametric tests, such as the Wilcoxon rank sum and others, offer effective alternatives when there are questions about meeting assumptions. When normality is in question, the Wilcoxon non-parametric tests offer substantially higher levels of power and an reliable alternative to the t-test. Keywords: Assumptions, Difference of means, Mann-Whitney, Non-parametric, t-test, Violations, Wilcoxon Ann Nucl Cardiol 2018; 4(1): 83 -87 ome of the most important studies in clinical research and what degree those assumptions are violated should be an S decision-making are those related to differences in important step in analysis but one that is often left un-done (2). measures of central tendency of population parameters i.e.
    [Show full text]
  • Inferential Statistics Katie Rommel-Esham Education 604 Probability
    Inferential Statistics Katie Rommel-Esham Education 604 Probability • Probability is the scientific way of stating the degree of confidence we have in predicting something • Tossing coins and rolling dice are examples of probability experiments • The concepts and procedures of inferential statistics provide us with the language we need to address the probabilistic nature of the research we conduct in the field of education From Samples to Populations • Probability comes into play in educational research when we try to estimate a population mean from a sample mean • Samples are used to generate the data, and inferential statistics are used to generalize that information to the population, a process in which error is inherent • Different samples are likely to generate different means. How do we determine which is “correct?” The Role of the Normal Distribution • If you were to take samples repeatedly from the same population, it is likely that, when all the means are put together, their distribution will resemble the normal curve. • The resulting normal distribution will have its own mean and standard deviation. • This distribution is called the sampling distribution and the corresponding standard deviation is known as the standard error. Remember me? Sampling Distributions • As before, with the sampling distribution, approximately 68% of the means lie within 1 standard deviation of the distribution mean and 96% would lie within 2 standard deviations • We now know the probable range of means, although individual means might vary somewhat The Probability-Inferential Statistics Connection • Armed with this information, a researcher can be fairly certain that, 68% of the time, the population mean that is generated from any given sample will be within 1 standard deviation of the mean of the sampling distribution.
    [Show full text]
  • A Monte Carlo Method for Comparing Generalized Estimating Equations to Conventional Statistical Techniques Tor Discounting Data
    HHS Public Access Author manuscript Author ManuscriptAuthor Manuscript Author J Exp Anal Manuscript Author Behav. Author Manuscript Author manuscript; available in PMC 2019 March 20. Published in final edited form as: J Exp Anal Behav. 2019 March ; 111(2): 207–224. doi:10.1002/jeab.497. A Monte Carlo Method for Comparing Generalized Estimating Equations to Conventional Statistical Techniques tor Discounting Data Jonathan E. Friedel1, William B. DeHart2, Anne M. Foreman1, and Michael E. Andrew1 1National Institute for Occupational Safety and Health 2Virginia Tech Carillion Research Institute Abstract Discounting is the process by which outcomes lose value. Much of discounting research has focused on differences in the degree of discounting across various groups. This research has relied heavily on conventional null hypothesis significance testing that is familiar to psychology in general such as t-tests and ANOVAs. As discounting research questions have become more complex by simultaneously focusing on within-subject and between-group differences conventional statistical testing is often not appropriate for the obtained data. Generalized estimating equations (GEE) are one type of mixed-effects model that are designed to handle autocorrelated data, such as within-subject repeated-measures data, and are therefore more appropriate for discounting data. To determine if GEE provides similar results as conventional statistical tests, were compared the techniques across 2,000 simulated data sets. The data sets were created using a Monte Carlo method based of an existing data set. Across the simulated data sets, the GEE and the conventional statistical tests generally provided similar patterns of results. As the GEE and more conventional statistical tests provide the same pattern of result, we suggest researchers use the GEE because it was designed to handle data that has the structure that is typical of discounting data.
    [Show full text]
  • Nonparametric Permutation Testing
    NONPARAMETRIC PERMUTATION TESTING CHAPTER 33 TONY YE WHAT IS PERMUTATION TESTING? Framework for assessing the statistical significance of EEG results. Advantages: • Does not rely on distribution assumptions • Corrections for multiple comparisons are easy to incorporate • Highly appropriate for correcting multiple comparisons in EEG data WHAT IS PARAMETRIC STATISTICAL TESTING? The test statistic is compared against a theoretical distribution of test statistics expected under the H0. • t-value • χ2-value • Correlation coefficient The probability (p-value) of obtaining a statistic under the H0 is at least as large as the observed statistic. [INSERT 33.1A] NONPARAMETRIC PERMUTATION TESTING No assumptions are made about the theoretical underlying distribution of test statistics under the H0. • Instead, the distribution is created from the data that you have! How is this done? • Shuffling condition labels over trials • Within-subject analyses • Shuffling condition labels over subjects • Group-level analyses • Recomputing the test statistic NULL-HYPOTHESIS DISTRIBUTION Evaluating your hypothesis using a t-test of alpha power between two conditions. Two types of tests: • Discrete tests • Compare conditions • Continuous tests • Correlating two continuous variables DISCRETE TESTS Compare EEG activity between Condition A & B • H0 = No difference between conditions • Random relabeling of conditions • Test Statistic (TS) = as large as the TS BEFORE the random relabeling. Steps 1. Randomly swap condition labels from many trials 2. Compute t-test across conditions 3. If TS ≠ 0, there is sampling error or outliers CONTINOUS TESTS The idea: • Testing statistical significance of a correlation coefficient What’s the difference between this and discrete tests? • TS is created by swapping data points instead of labels SIMILARITIES The data are not altered • The “mapping” of data are shuffled around.
    [Show full text]
  • Paper Presented at the Annual Meeting of the American Educational Research Association, New York, New York, February 1971
    DOCUMENT RESUME ED 048 371 TM 000 463 AUTHOR Porter, Andrew C.; 'McSweeney, Maryellen TITLE Comparison of Pank Analysis of Covariance and Nonparametric Randomized Blocks Analysis. PUB DATE Jan 71 NOTE 35p.; Paper presented at the Annual Meeting of the American Educational Research Association, New York, New York, February 1971 EDRS PRIC. EDRS Price M7-$0.65 EC-$3.29 DESCRIPTORS *Analysis cf Covariance, *Analysis of Variance, *Goodness of Fit, Hypothesis Testing, *Nonparametric Statistics, Predictor Variables, *Research Design, Sampling, Statistical Analysis ABSTRACT The relative power of three possible experimental designs under the condition that data is to be analyzed by nonparametric techniques; the comparison of the power of each nonparametric technique to its parametric analogue; and the comparison of relative powers using nonparametric and parametric techniques are discussed. The three nonparametric techniques concerned are the Kruskal-Wallis test on data where experimental units have been randomly assigned to levels of the independent variable, Friedman's rank analysis of variance (ANOVA) on data in a randomized blocks design, and a nonparametric analysis of covariance (ANCOVA). The parametric counterparts are respectively; one way analysis of variance (ANOVA) ,two-way ANOVt, and parametric ANCOVA. Sine: the nonparametric tests are based on large sample approximations, the goodness of fit for small samples is also of concern. Statements of asymptotic relative efficiency and imprecision are reviewed as suggestive of small sample powers of the designs and statistics investigated. Results of a Monte Carlo investigation are provided to further illustrate small sample power and to provide data on goodness of fit.(Author/CK) U.S. DEPARTMENT OF HEALTH.
    [Show full text]
  • Scales and Statistics: Parametric and Nonparametric1 Norman H
    Psychological Bulletin 1961, Vol. 58, No. 4, 305-316 SCALES AND STATISTICS: PARAMETRIC AND NONPARAMETRIC1 NORMAN H. ANDERSON University of California, Los Angeles The recent rise of interest in the use since the former do not apply to of nonparametric tests stems from strictly categorical data (but see two main sources. One is the concern Cochran, 1954). Second, parametric about the use of parametric tests tests will mean tests of significance when the underlying assumptions are which assume equinormality, i.e., not met. The other is the problem of normality and some form of homo- whether or not the measurement scale geneity of variance. For convenience, is suitable for application of paramet- parametric test, F test, and analysis ric procedures. On both counts of variance will be used synony- parametric tests are generally more in mously. Although this usage is not danger than nonparametric tests. strictly correct, it should be noted Because of this, and because of a that the t test and regression analysis natural enthusiasm for a new tech- may be considered as special applica- nique, there has been a sometimes tions of F. Nonparametric tests will uncritical acceptance of nonparamet- refer to significance tests which make ric procedures. By now a certain considerably weaker distributional degree of agreement concerning the assumptions as exemplified by rank more practical aspects involved in the order tests such as the Wilcoxon T, choice of tests appears to have been the Kruskal-Wallis H, and by the reached. However, the measurement various median-type tests. Third, the theoretical issue has been less clearly main focus of the article is on tests of resolved.
    [Show full text]
  • Guiding Principles for Monte Carlo Analysis (Pdf)
    EPA/630/R-97/001 March 1997 Guiding Principles for Monte Carlo Analysis Technical Panel Office of Prevention, Pesticides, and Toxic Substances Michael Firestone (Chair) Penelope Fenner-Crisp Office of Policy, Planning, and Evaluation Timothy Barry Office of Solid Waste and Emergency Response David Bennett Steven Chang Office of Research and Development Michael Callahan Regional Offices AnneMarie Burke (Region I) Jayne Michaud (Region I) Marian Olsen (Region II) Patricia Cirone (Region X) Science Advisory Board Staff Donald Barnes Risk Assessment Forum Staff William P. Wood Steven M. Knott Risk Assessment Forum U.S. Environmental Protection Agency Washington, DC 20460 DISCLAIMER This document has been reviewed in accordance with U.S. Environmental Protection Agency policy and approved for publication. Mention of trade names or commercial products does not constitute endorsement or recommendation for use. ii TABLE OF CONTENTS Preface . iv Introduction ...............................................................1 Fundamental Goals and Challenges ..............................................3 When a Monte Carlo Analysis Might Add Value to a Quantitative Risk Assessment . 5 Key Terms and Their Definitions ...............................................6 Preliminary Issues and Considerations ............................................9 Defining the Assessment Questions ........................................9 Selection and Development of the Conceptual and Mathematical Models ...........10 Selection and Evaluation of Available Data .................................10
    [Show full text]
  • Parametric Vs. Non-Parametric Statistics of Low Resolution Electromagnetic Tomography (LORETA)
    CLINICAL EEG and NEUROSCIENCE ©2005 VOL. 36 NO. 1 Parametric vs. Non-Parametric Statistics of Low Resolution Electromagnetic Tomography (LORETA) R. W. Thatcher, D. North and C. Biver Key Words positives of the 2,394 gray matter pixels for any cross-val- EEG Inverse Solutions idated normal subject. LORETA Parametric Statistics In conclusion, adequate approximation to Gaussian Non-parametric Statistics and high cross-validation can be achieved by the Key Institute’s LORETA programs by using a log10 transform ABSTRACT and parametric statistics, and parametric normative com- This study compared the relative statistical sensitivity parisons had lower false positive rates than the non-para- of non-parametric and parametric statistics of 3-dimen- metric tests. sional current sources as estimated by the EEG inverse INTRODUCTION solution Low Resolution Electromagnetic Tomography Both non-parametric1,2 and parametric3-10 statistics have (LORETA). One would expect approximately 5% false pos- been used in studies of Low Resolution Electromagnetic itives (classification of a normal as abnormal) at the P < Tomography or LORETA,11,12 however, the relative sensitiv- .025 level of probability (two tailed test) and approximately ity of parametric vs. non-parametric statistics has not been 1% false positives at the P < .005 level. systematically evaluated. Non-parametric statistics have EEG digital samples (2 second intervals sampled 128 the advantage of being distribution independent as well as Hz, 1 to 2 minutes eyes closed) from 43 normal adult sub- insensitive to extreme values or outliers. The disadvantage jects were imported into the Key Institute’s LORETA pro- of non-parametric statistics is the complexity, lower power gram and then used the Key Institute’s cross-spectrum and time required for computation.
    [Show full text]
  • An Interesting Reading "History of Statistics on Timeline"
    History of Statistics on Timeline V.K. Gupta, B.N. Mandal and Rajender Parsad ICAR-Indian Agricultural Statistics Research Institute Libray Avenue, Pusa, New Delhi – 110012, INDIA ____________________________________________________________________________________________________________________ SUMMARY The purpose of this article is to give the historical developments in the theory and applications of Statistics starting from pre-historic times till the beginning of the 20th century when the foundations of modern statistics were laid. Some selected contributions of prominent Indian statisticians have also been listed. The development of some selected statistical journals on the time line is also given. No claim is being made on the coverage being exhaustive. Keywords: Statistics in the ancient times, Modern statistics, Important selected journals. ____________________________________________________________________________________________________________________ Corresponding author: B.N. Mandal Email address: [email protected] 1. HISTORY OF STATISTICS ON TIME LINE Note: BCE ~ Before Common Era (or BC ~ Before Christ); CE ~ Common Era (or AD ~ Anno Domini) Time Contributor Contribution Dwaparyuga ‒ Mahabharata; Vana Prarva; Nala and king Bhangasuri were moving in a chariot through a forest. Bhangasuri told Kalayuga Nala – Damyanti Akhyan Nala that if he can count how many fallen leaves and fruits are there, he (Bhangasuri) can tell the number of fruits and leaves on two strongest branches of Vibhitak tree. One above one hundred are the number of leaves and one fruit informed Nala after counting the fallen leaves and fruit. Bhangasuri avers 2095 fruits and five ten million leaves on the two strongest branches of the tree (actually it is 5 koti leaves and 1 koti is 10 million). Nala counts all night and is duly amazed by morning.
    [Show full text]
  • Unit 1 Parametric and Non- Parametric Statistics
    UNIT 1 PARAMETRIC AND NON- PARAMETRIC STATISTICS Structure 1.0 Introduction 1.1 Objectives 1.2 Definition of Parametric and Non-parametric Statistics 1.3 Assumptions of Parametric and Non-parametric Statistics 1.3.1 Assumptions of Parametric Statistics 1.3.2 Assumptions of Non-parametric Statistics 1.4 Advantages of Non-parametric Statistics 1.5 Disadvantages of Non-parametric Statistical Tests 1.6 Parametric Statistical Tests for Different Samples 1.7 Parametric Statistical Measures for Calculating the Difference Between Means 1.7.1 Significance of Difference Between the Means of Two Independent Large and Small Samples 1.7.2 Significance of the Difference Between the Means of Two Dependent Samples 1.7.3 Significance of the Difference Between the Means of Three or More Samples 1.8 Parametric Statistics Measures Related to Pearson’s ‘r’ 1.8.1 Non-parametric Tests Used for Inference 1.9 Some Non-parametric Tests for Related Samples 1.10 Let Us Sum Up 1.11 Unit End Questions 1.12 Glossary 1.13 Suggested Readings 1.0 INTRODUCTION In this unit you will be able to know the various aspects of parametric and non- parametric statistics. A parametric statistical test specifies certain conditions such as the data should be normally distributed etc. The non-parametric statistics does not require the conditions of parametric stats. In fact non-parametric tests are known as distribution free tests. In this unit we will study the nature of quantitative data and various descriptive statistical measures which are used in the analysis of such data. These include measures of central tendency, variability, relative position and relationships of normal probability curve etc.
    [Show full text]