Inference beyond significance testing: a gentle primer of model based inference

Size: px
Start display at page:

Download "Inference beyond significance testing: a gentle primer of model based inference"

Transcription

1 Inference beyond significance testing: a gentle primer of model based inference Junpeng Lao, PhD Fribourg Day of Cognition 2017/10/04

2 An old tale: the problem of p-value

3 new battle

4

5 The great divide in statistical inference is not between Frequentist and Bayesian, but between those doing test versus those building models.

6 Inference beyond significance testing Take home message: Build (Bayesian) probabilistic model Think generatively Care about the estimation (validate the fit) Prediction, Prediction, Prediction Make realistic assumption (more is more) A small primer of how to do statistical inference by building probabilistic model.

7 Ugly inference using tests

8 Box s loop First gather data from some real-world phenomena. Then cycle through Box s loop (Blei, 2014). 1. Build a probabilistic model of the phenomena. 2. Reason about the phenomena given model and data. 3. Criticize the model, revise and repeat. Beautiful inference using models. Blei, D. M. (2014). Build, compute, critique, repeat: Data analysis with latent variable models. Annual Review of Statistics and Its Application, 1, Box, G. E. (1976). Science and statistics. Journal of the American Statistical Association, 71(356),

9 A model-based Inference workflow Blei, D. M. (2014). Build, compute, critique, repeat: Data analysis with latent variable models. Annual Review of Statistics and Its Application, 1, Box, G. E. (1976). Science and statistics. Journal of the American Statistical Association, 71(356),

10 Example 1: BEST In [1]: scipy.stats.ttest_ind(y1, y2, equal_var = False) Out[1]: Ttest_indResult(statistic=5.466, pvalue=5.129e-07) Kruschke, J. K. (2013). Bayesian estimation supersedes the t test. Journal of Experimental Psychology: General, 142(2), 573.

11 Data generation process In [2]: scipy.stats.norm.rvs(loc=101, scale=1., size=100)

12 Data generation y ~ Gaussian(mean, std) mean is between - and + std is a positive real number Model y ~ Gaussian(mean, std) mean ~ Uniform(95, 130) std around 5.2 Bayesian Model

13 Something to generate the observed data: with pm.model() as model: # drug μ1 = pm.uniform('μ1', lower=95., upper=130.) σ1 = pm.uniform('σ1', lower=0., upper=10.) group1 = pm.normal('drug', mu=μ1, sd=σ1, observed=y1) # placebo μ2 = pm.uniform('μ2', lower=95., upper=130.) σ2 = pm.uniform('σ2', lower=0., upper=10.) group2 = pm.normal('placebo', mu=μ2, sd=σ2, observed=y2)

14 Model with pm.model() as model_flat: # drug μ1 = pm.flat('μ1') σ1 = pm.halfflat('σ1') group1 = pm.normal('drug', mu=μ1, sd=σ1, observed=y1) # placebo μ2 = pm.flat('μ2') σ2 = pm.halfflat('σ2') group2 = pm.normal('placebo', mu=μ2, sd=σ2, observed=y2)

15 You can get more from a Bayesian model

16 BEST

17 Is the difference meaningful? e.g., Effect size? with pm.model() as model: diff_of_means = pm.deterministic('μ1-μ2', μ1 - μ2) diff_of_stds = pm.deterministic('σ1-σ2', σ1 - σ2) effect_size = pm.deterministic('effect size', diff_of_means / np.sqrt((σ1**2 + σ2**2) / 2))

18 It s better be uncertain of a right answer than certain about a wrong answer. I prefer uncertainty

19 Lee and Wagenmakers' Bayesian Cognitive Modeling - A Pratical Course Chapter 8.3 Reparameterization

20 Extension: Linear Model The big linear model family a wider class of linear model repeated measurement ANOVA and HLM are specific cases of LMM

21 Generalised Linear Model y = Xβ + ε, E(y) =X = µ, E(Á) =0, cov(y) =cov(á) = 2 V.

22 Example 2: Hierarchical Linear Regression Gelman et al.'s (2007) radon dataset Gelman et al. s (2007) radon dataset is a classic for hierarchical modeling. In this dataset the amount of the radioactive gas radon has been measured among different households in all counties of several states. Radon gas is known to be the highest cause of lung cancer in non-smokers. It is believed to be more strongly present in households containing a basement and to differ in amount present among types of soil. Here we ll investigate this differences and try to make predictions of radonlevels in different counties based on the county itself and the presence of a basement. In this example we ll look at Minnesota, a state that contains 85 counties in which different measurements are taken, ranging from 2 to 116 measurements per county.

23 Conventional approaches: Complete pooling or No pooling The EPA did a study of radon levels in 80,000 houses. Two important predictors: measurement in basement or first floor (radon higher in basements) county uranium level (positive correlation with radon levels)

24 Conventional approaches: Complete pooling or No pooling Response Response Predictor Predictor

25 Neither of these models are satisfactory: - if we are trying to identify high-radon counties, pooling is useless - we do not trust extreme unpooled estimates produced by models using few observations

26 Multilevel (hierarchical) models Partial pooling

27 Multilevel (hierarchical) models Partial pooling

28 Multilevel (hierarchical) models Partial pooling

29 Example 3: Smoothing

30 What is smoothing, really?

31

32 Making prediction

33 Making prediction

34 Making prediction

35 A few things to keep in mind: Modelling is natural Cross-validation Reconstruct the quantity of interested, inspect their uncertainty Model fitting is not automatic Writing down the model doesn't means you can fit it Don t throw away information! (Prior matters)

36 Tool for building modern Bayesian Model mc-stan.org docs.pymc.io

37 Further reading

38 All models are wrong, but some are useful. George E. P. Box An approximate answer to the right problem is worth a good deal more than an exact answer to an approximate problem. John Tukey Reference: Box & Draper (1987), Empirical model-building and response surfaces, Wiley, p. 424.

MS&E 226: Small Data

MS&E 226: Small Data MS&E 226: Small Data Lecture 10: Introduction to inference (v2) Ramesh Johari ramesh.johari@stanford.edu 1 / 17 What is inference? 2 / 17 Where did our data come from? Recall our sample is: Y, the vector

More information

Chapter 19. Confidence Intervals for Proportions. Copyright 2010 Pearson Education, Inc.

Chapter 19. Confidence Intervals for Proportions. Copyright 2010 Pearson Education, Inc. Chapter 19 Confidence Intervals for Proportions Copyright 2010 Pearson Education, Inc. Standard Error Both of the sampling distributions we ve looked at are Normal. For proportions For means SD pˆ pq n

More information

Undesirable Optimality Results in Multiple Testing? Charles Lewis Dorothy T. Thayer

Undesirable Optimality Results in Multiple Testing? Charles Lewis Dorothy T. Thayer Undesirable Optimality Results in Multiple Testing? Charles Lewis Dorothy T. Thayer 1 Intuitions about multiple testing: - Multiple tests should be more conservative than individual tests. - Controlling

More information

UNLOCKING VALUE WITH DATA SCIENCE BAYES APPROACH: MAKING DATA WORK HARDER

UNLOCKING VALUE WITH DATA SCIENCE BAYES APPROACH: MAKING DATA WORK HARDER UNLOCKING VALUE WITH DATA SCIENCE BAYES APPROACH: MAKING DATA WORK HARDER 2016 DELIVERING VALUE WITH DATA SCIENCE BAYES APPROACH - MAKING DATA WORK HARDER The Ipsos MORI Data Science team increasingly

More information

Chapter 19. Confidence Intervals for Proportions. Copyright 2010, 2007, 2004 Pearson Education, Inc.

Chapter 19. Confidence Intervals for Proportions. Copyright 2010, 2007, 2004 Pearson Education, Inc. Chapter 19 Confidence Intervals for Proportions Copyright 2010, 2007, 2004 Pearson Education, Inc. Standard Error Both of the sampling distributions we ve looked at are Normal. For proportions For means

More information

Bayesian Models for Combining Data Across Subjects and Studies in Predictive fmri Data Analysis

Bayesian Models for Combining Data Across Subjects and Studies in Predictive fmri Data Analysis Bayesian Models for Combining Data Across Subjects and Studies in Predictive fmri Data Analysis Thesis Proposal Indrayana Rustandi April 3, 2007 Outline Motivation and Thesis Preliminary results: Hierarchical

More information

STATISTICAL INFERENCE 1 Richard A. Johnson Professor Emeritus Department of Statistics University of Wisconsin

STATISTICAL INFERENCE 1 Richard A. Johnson Professor Emeritus Department of Statistics University of Wisconsin STATISTICAL INFERENCE 1 Richard A. Johnson Professor Emeritus Department of Statistics University of Wisconsin Key words : Bayesian approach, classical approach, confidence interval, estimation, randomization,

More information

Sheila Barron Statistics Outreach Center 2/8/2011

Sheila Barron Statistics Outreach Center 2/8/2011 Sheila Barron Statistics Outreach Center 2/8/2011 What is Power? When conducting a research study using a statistical hypothesis test, power is the probability of getting statistical significance when

More information

Bayesian Joint Modelling of Benefit and Risk in Drug Development

Bayesian Joint Modelling of Benefit and Risk in Drug Development Bayesian Joint Modelling of Benefit and Risk in Drug Development EFSPI/PSDM Safety Statistics Meeting Leiden 2017 Disclosure is an employee and shareholder of GSK Data presented is based on human research

More information

Application of Local Control Strategy in analyses of the effects of Radon on Lung Cancer Mortality for 2,881 US Counties

Application of Local Control Strategy in analyses of the effects of Radon on Lung Cancer Mortality for 2,881 US Counties Application of Local Control Strategy in analyses of the effects of Radon on Lung Cancer Mortality for 2,881 US Counties Bob Obenchain, Risk Benefit Statistics, August 2015 Our motivation for using a Cut-Point

More information

Bayesian and Frequentist Approaches

Bayesian and Frequentist Approaches Bayesian and Frequentist Approaches G. Jogesh Babu Penn State University http://sites.stat.psu.edu/ babu http://astrostatistics.psu.edu All models are wrong But some are useful George E. P. Box (son-in-law

More information

Review Statistics review 2: Samples and populations Elise Whitley* and Jonathan Ball

Review Statistics review 2: Samples and populations Elise Whitley* and Jonathan Ball Available online http://ccforum.com/content/6/2/143 Review Statistics review 2: Samples and populations Elise Whitley* and Jonathan Ball *Lecturer in Medical Statistics, University of Bristol, UK Lecturer

More information

Chapter 1 Data Types and Data Collection. Brian Habing Department of Statistics University of South Carolina. Outline

Chapter 1 Data Types and Data Collection. Brian Habing Department of Statistics University of South Carolina. Outline STAT 515 Statistical Methods I Chapter 1 Data Types and Data Collection Brian Habing Department of Statistics University of South Carolina Redistribution of these slides without permission is a violation

More information

Language: English Course level: Doctoral level

Language: English Course level: Doctoral level Course Description: Bayesian data analysis and multilevel modeling 7.5hp Course leader Marco Tullio Liuzza Phone: 08-164601 Teachers Marco Tullio Liuzza Phone: 08-164601 Mats Nilsson Phone: 08-16 46 05

More information

Previously, when making inferences about the population mean,, we were assuming the following simple conditions:

Previously, when making inferences about the population mean,, we were assuming the following simple conditions: Chapter 17 Inference about a Population Mean Conditions for inference Previously, when making inferences about the population mean,, we were assuming the following simple conditions: (1) Our data (observations)

More information

Citation for published version (APA): Ebbes, P. (2004). Latent instrumental variables: a new approach to solve for endogeneity s.n.

Citation for published version (APA): Ebbes, P. (2004). Latent instrumental variables: a new approach to solve for endogeneity s.n. University of Groningen Latent instrumental variables Ebbes, P. IMPORTANT NOTE: You are advised to consult the publisher's version (publisher's PDF) if you wish to cite from it. Please check the document

More information

What's always coming but yet never arrives?

What's always coming but yet never arrives? What's always coming but yet never arrives? What's always coming but yet never arrives? The Scientific Method Guiding Questions Scientific explanations must meet certain criteria: they should be logical,

More information

Convincing Evidence. Andrew Gelman Keith O Rourke 25 June 2013

Convincing Evidence. Andrew Gelman Keith O Rourke 25 June 2013 Convincing Evidence Andrew Gelman Keith O Rourke 25 June 2013 Abstract Textbooks on statistics emphasize care and precision, via concepts such as reliability and validity in measurement, random sampling

More information

Individual Differences in Attention During Category Learning

Individual Differences in Attention During Category Learning Individual Differences in Attention During Category Learning Michael D. Lee (mdlee@uci.edu) Department of Cognitive Sciences, 35 Social Sciences Plaza A University of California, Irvine, CA 92697-5 USA

More information

Applications with Bayesian Approach

Applications with Bayesian Approach Applications with Bayesian Approach Feng Li feng.li@cufe.edu.cn School of Statistics and Mathematics Central University of Finance and Economics Outline 1 Missing Data in Longitudinal Studies 2 FMRI Analysis

More information

Chapter 23. Inference About Means. Copyright 2010 Pearson Education, Inc.

Chapter 23. Inference About Means. Copyright 2010 Pearson Education, Inc. Chapter 23 Inference About Means Copyright 2010 Pearson Education, Inc. Getting Started Now that we know how to create confidence intervals and test hypotheses about proportions, it d be nice to be able

More information

Radon may also be present in well water, and can be released into the air in your home when water is used for showering and other household uses.

Radon may also be present in well water, and can be released into the air in your home when water is used for showering and other household uses. What Is Radon? Radon is a tasteless, odorless, invisible gas that occurs naturally throughout the earth's crust. It is a by-product of the breakdown of uranium in the soil, rock, and water. Over time,

More information

Data harmonization tutorial:teaser for FH2019

Data harmonization tutorial:teaser for FH2019 Data harmonization tutorial:teaser for FH2019 Alden Gross, Johns Hopkins Rich Jones, Brown University Friday Harbor Tahoe 22 Aug. 2018 1 / 50 Outline Outline What is harmonization? Approach Prestatistical

More information

Analysis of Variance (ANOVA)

Analysis of Variance (ANOVA) Research Methods and Ethics in Psychology Week 4 Analysis of Variance (ANOVA) One Way Independent Groups ANOVA Brief revision of some important concepts To introduce the concept of familywise error rate.

More information

Response to the ASA s statement on p-values: context, process, and purpose

Response to the ASA s statement on p-values: context, process, and purpose Response to the ASA s statement on p-values: context, process, purpose Edward L. Ionides Alexer Giessing Yaacov Ritov Scott E. Page Departments of Complex Systems, Political Science Economics, University

More information

The Scientific Method

The Scientific Method The Scientific Method Objectives 1. To understand the central role of hypothesis testing in the modern scientific process. 2. To design and conduct an experiment using the scientific method. 3. To learn

More information

Bayesian Hierarchical Models for Fitting Dose-Response Relationships

Bayesian Hierarchical Models for Fitting Dose-Response Relationships Bayesian Hierarchical Models for Fitting Dose-Response Relationships Ketra A. Schmitt Battelle Memorial Institute Mitchell J. Small and Kan Shao Carnegie Mellon University Dose Response Estimates using

More information

When Your Partner s Actions Seem Selfish, Inconsiderate, Immature, Inappropriate, or Bad in Some Other Way

When Your Partner s Actions Seem Selfish, Inconsiderate, Immature, Inappropriate, or Bad in Some Other Way When Your Partner s Actions Seem Selfish, Inconsiderate, Immature, Inappropriate, or Bad in Some Other Way Brent J. Atkinson, Ph.D. In the article, Habits of People Who Know How to Get their Partners to

More information

Retrospective power analysis using external information 1. Andrew Gelman and John Carlin May 2011

Retrospective power analysis using external information 1. Andrew Gelman and John Carlin May 2011 Retrospective power analysis using external information 1 Andrew Gelman and John Carlin 2 11 May 2011 Power is important in choosing between alternative methods of analyzing data and in deciding on an

More information

CHAPTER 4 Designing Studies

CHAPTER 4 Designing Studies CHAPTER 4 Designing Studies 4.2 Experiments The Practice of Statistics, 5th Edition Starnes, Tabor, Yates, Moore Bedford Freeman Worth Publishers Experiments Learning Objectives After this section, you

More information

An Introduction to Bayesian Statistics

An Introduction to Bayesian Statistics An Introduction to Bayesian Statistics Robert Weiss Department of Biostatistics UCLA Fielding School of Public Health robweiss@ucla.edu Sept 2015 Robert Weiss (UCLA) An Introduction to Bayesian Statistics

More information

Dan Byrd UC Office of the President

Dan Byrd UC Office of the President Dan Byrd UC Office of the President 1. OLS regression assumes that residuals (observed value- predicted value) are normally distributed and that each observation is independent from others and that the

More information

ST440/550: Applied Bayesian Statistics. (10) Frequentist Properties of Bayesian Methods

ST440/550: Applied Bayesian Statistics. (10) Frequentist Properties of Bayesian Methods (10) Frequentist Properties of Bayesian Methods Calibrated Bayes So far we have discussed Bayesian methods as being separate from the frequentist approach However, in many cases methods with frequentist

More information

Data Analysis Using Regression and Multilevel/Hierarchical Models

Data Analysis Using Regression and Multilevel/Hierarchical Models Data Analysis Using Regression and Multilevel/Hierarchical Models ANDREW GELMAN Columbia University JENNIFER HILL Columbia University CAMBRIDGE UNIVERSITY PRESS Contents List of examples V a 9 e xv " Preface

More information

What is Psychology? chapter 1

What is Psychology? chapter 1 What is Psychology? chapter 1 Overview! The science of psychology! What psychologists do! Critical and scientific thinking! Correlational studies! The experiment! Evaluating findings What is psychology?

More information

The Human Side of Science: I ll Take That Bet! Balancing Risk and Benefit. Uncertainty, Risk and Probability: Fundamental Definitions and Concepts

The Human Side of Science: I ll Take That Bet! Balancing Risk and Benefit. Uncertainty, Risk and Probability: Fundamental Definitions and Concepts The Human Side of Science: I ll Take That Bet! Balancing Risk and Benefit Uncertainty, Risk and Probability: Fundamental Definitions and Concepts What Is Uncertainty? A state of having limited knowledge

More information

Patrick Breheny. January 28

Patrick Breheny. January 28 Confidence intervals Patrick Breheny January 28 Patrick Breheny Introduction to Biostatistics (171:161) 1/19 Recap Introduction In our last lecture, we discussed at some length the Public Health Service

More information

Psychology is in crisis!

Psychology is in crisis! Or: Research in the time of Open Science The replication crisis: is it the Ghost of Psychology future? Junpeng Lao, PhD Fribourg Day of Cognition 2016/10/05 Psychology is in crisis! Replication problem,

More information

Creative Commons Attribution-NonCommercial-Share Alike License

Creative Commons Attribution-NonCommercial-Share Alike License Author: Brenda Gunderson, Ph.D., 05 License: Unless otherwise noted, this material is made available under the terms of the Creative Commons Attribution- NonCommercial-Share Alike 3.0 Unported License:

More information

Inference About Magnitudes of Effects

Inference About Magnitudes of Effects invited commentary International Journal of Sports Physiology and Performance, 2008, 3, 547-557 2008 Human Kinetics, Inc. Inference About Magnitudes of Effects Richard J. Barker and Matthew R. Schofield

More information

Confidence Intervals On Subsets May Be Misleading

Confidence Intervals On Subsets May Be Misleading Journal of Modern Applied Statistical Methods Volume 3 Issue 2 Article 2 11-1-2004 Confidence Intervals On Subsets May Be Misleading Juliet Popper Shaffer University of California, Berkeley, shaffer@stat.berkeley.edu

More information

Statistical Techniques. Masoud Mansoury and Anas Abulfaraj

Statistical Techniques. Masoud Mansoury and Anas Abulfaraj Statistical Techniques Masoud Mansoury and Anas Abulfaraj What is Statistics? https://www.youtube.com/watch?v=lmmzj7599pw The definition of Statistics The practice or science of collecting and analyzing

More information

5/10/2010. ISPOR Good Research Practices for Comparative Effectiveness Research: Indirect Treatment Comparisons Task Force

5/10/2010. ISPOR Good Research Practices for Comparative Effectiveness Research: Indirect Treatment Comparisons Task Force ISPOR Good Research Practices for Comparative Effectiveness Research: Indirect Treatment Comparisons Task Force Presentation of Two Draft Reports 17 May 2010 ITC Task Force: Leadership Team Lieven Annemans

More information

Empirical Tools of Public Finance. 131 Undergraduate Public Economics Emmanuel Saez UC Berkeley

Empirical Tools of Public Finance. 131 Undergraduate Public Economics Emmanuel Saez UC Berkeley Empirical Tools of Public Finance 131 Undergraduate Public Economics Emmanuel Saez UC Berkeley 1 DEFINITIONS Empirical public finance: The use of data and statistical methods to measure the impact of government

More information

CHAPTER 8 Estimating with Confidence

CHAPTER 8 Estimating with Confidence CHAPTER 8 Estimating with Confidence 8.1b Confidence Intervals: The Basics The Practice of Statistics, 5th Edition Starnes, Tabor, Yates, Moore Bedford Freeman Worth Publishers Confidence Intervals: The

More information

Small Cell Lung Cancer Causes, Risk Factors, and Prevention

Small Cell Lung Cancer Causes, Risk Factors, and Prevention Small Cell Lung Cancer Causes, Risk Factors, and Prevention Risk Factors A risk factor is anything that affects your chance of getting a disease such as cancer. Learn more about the risk factors for small

More information

What Science Is and Is Not

What Science Is and Is Not What Is Science? Key Questions What are the goals of science? What procedures are at the core of scientific methodology? Vocabulary science observation inference hypothesis controlled experiment independent

More information

III. WHAT ANSWERS DO YOU EXPECT?

III. WHAT ANSWERS DO YOU EXPECT? III. WHAT ANSWERS DO YOU EXPECT? IN THIS CHAPTER: Theories and Hypotheses: Definitions Similarities and Differences Why Theories Cannot be Verified The Importance of Theories Types of Hypotheses Hypotheses

More information

Endogeneity is a fancy word for a simple problem. So fancy, in fact, that the Microsoft Word spell-checker does not recognize it.

Endogeneity is a fancy word for a simple problem. So fancy, in fact, that the Microsoft Word spell-checker does not recognize it. Jesper B Sørensen August 2012 Endogeneity is a fancy word for a simple problem. So fancy, in fact, that the Microsoft Word spell-checker does not recognize it. Technically, in a statistical model you have

More information

7 Statistical Issues that Researchers Shouldn t Worry (So Much) About

7 Statistical Issues that Researchers Shouldn t Worry (So Much) About 7 Statistical Issues that Researchers Shouldn t Worry (So Much) About By Karen Grace-Martin Founder & President About the Author Karen Grace-Martin is the founder and president of The Analysis Factor.

More information

Bayesian Inference Bayes Laplace

Bayesian Inference Bayes Laplace Bayesian Inference Bayes Laplace Course objective The aim of this course is to introduce the modern approach to Bayesian statistics, emphasizing the computational aspects and the differences between the

More information

Lec 02: Estimation & Hypothesis Testing in Animal Ecology

Lec 02: Estimation & Hypothesis Testing in Animal Ecology Lec 02: Estimation & Hypothesis Testing in Animal Ecology Parameter Estimation from Samples Samples We typically observe systems incompletely, i.e., we sample according to a designed protocol. We then

More information

STATS8: Introduction to Biostatistics. Overview. Babak Shahbaba Department of Statistics, UCI

STATS8: Introduction to Biostatistics. Overview. Babak Shahbaba Department of Statistics, UCI STATS8: Introduction to Biostatistics Overview Babak Shahbaba Department of Statistics, UCI The role of statistical analysis in science This course discusses some biostatistical methods, which involve

More information

f WILEY ANOVA and ANCOVA A GLM Approach Second Edition ANDREW RUTHERFORD Staffordshire, United Kingdom Keele University School of Psychology

f WILEY ANOVA and ANCOVA A GLM Approach Second Edition ANDREW RUTHERFORD Staffordshire, United Kingdom Keele University School of Psychology ANOVA and ANCOVA A GLM Approach Second Edition ANDREW RUTHERFORD Keele University School of Psychology Staffordshire, United Kingdom f WILEY A JOHN WILEY & SONS, INC., PUBLICATION Contents Acknowledgments

More information

Module 28 - Estimating a Population Mean (1 of 3)

Module 28 - Estimating a Population Mean (1 of 3) Module 28 - Estimating a Population Mean (1 of 3) In "Estimating a Population Mean," we focus on how to use a sample mean to estimate a population mean. This is the type of thinking we did in Modules 7

More information

Bias Adjustment: Local Control Analysis of Radon and Ozone

Bias Adjustment: Local Control Analysis of Radon and Ozone Bias Adjustment: Local Control Analysis of Radon and Ozone S. Stanley Young Robert Obenchain Goran Krstic NCSU 19Oct2016 Abstract Bias Adjustment: Local control analysis of Radon and ozone S. Stanley Young,

More information

Historical controls in clinical trials: the meta-analytic predictive approach applied to over-dispersed count data

Historical controls in clinical trials: the meta-analytic predictive approach applied to over-dispersed count data Historical controls in clinical trials: the meta-analytic predictive approach applied to over-dispersed count data Sandro Gsteiger, Beat Neuenschwander, and Heinz Schmidli Novartis Pharma AG Bayes Pharma,

More information

How many speakers? How many tokens?:

How many speakers? How many tokens?: 1 NWAV 38- Ottawa, Canada 23/10/09 How many speakers? How many tokens?: A methodological contribution to the study of variation. Jorge Aguilar-Sánchez University of Wisconsin-La Crosse 2 Sample size in

More information

Mastering Emotions. 1. Physiology

Mastering Emotions. 1. Physiology Mastering Emotions Emotional mastery is the key to living a life that you direct. The ability to have absolute direct power over what you feel in every single moment no matter what happens around you is

More information

Carrying out an Empirical Project

Carrying out an Empirical Project Carrying out an Empirical Project Empirical Analysis & Style Hint Special program: Pre-training 1 Carrying out an Empirical Project 1. Posing a Question 2. Literature Review 3. Data Collection 4. Econometric

More information

Chapter 8 Estimating with Confidence

Chapter 8 Estimating with Confidence Chapter 8 Estimating with Confidence Introduction Our goal in many statistical settings is to use a sample statistic to estimate a population parameter. In Chapter 4, we learned if we randomly select the

More information

Reducing distress and building resilience in the talking therapies: a case study. Ian Norman & D Rosier

Reducing distress and building resilience in the talking therapies: a case study. Ian Norman & D Rosier Reducing distress and building resilience in the talking therapies: a case study Ian Norman & D Rosier Session Aims To present a case study based upon our clinical experience of building resilience through

More information

AP Statistics. Semester One Review Part 1 Chapters 1-5

AP Statistics. Semester One Review Part 1 Chapters 1-5 AP Statistics Semester One Review Part 1 Chapters 1-5 AP Statistics Topics Describing Data Producing Data Probability Statistical Inference Describing Data Ch 1: Describing Data: Graphically and Numerically

More information

Machine Learning Statistical Learning. Prof. Matteo Matteucci

Machine Learning Statistical Learning. Prof. Matteo Matteucci Machine Learning Statistical Learning Pro. Matteo Matteucci Statistical Learning Outline o What Is Statistical Learning? Why estimate? How do we estimate? The trade-o between prediction accuracy & model

More information

Why Mixed Effects Models?

Why Mixed Effects Models? Why Mixed Effects Models? Mixed Effects Models Recap/Intro Three issues with ANOVA Multiple random effects Categorical data Focus on fixed effects What mixed effects models do Random slopes Link functions

More information

On Test Scores (Part 2) How to Properly Use Test Scores in Secondary Analyses. Structural Equation Modeling Lecture #12 April 29, 2015

On Test Scores (Part 2) How to Properly Use Test Scores in Secondary Analyses. Structural Equation Modeling Lecture #12 April 29, 2015 On Test Scores (Part 2) How to Properly Use Test Scores in Secondary Analyses Structural Equation Modeling Lecture #12 April 29, 2015 PRE 906, SEM: On Test Scores #2--The Proper Use of Scores Today s Class:

More information

PEER REVIEW HISTORY ARTICLE DETAILS VERSION 1 - REVIEW. Ball State University

PEER REVIEW HISTORY ARTICLE DETAILS VERSION 1 - REVIEW. Ball State University PEER REVIEW HISTORY BMJ Open publishes all reviews undertaken for accepted manuscripts. Reviewers are asked to complete a checklist review form (see an example) and are provided with free text boxes to

More information

Inferential Statistics: An Introduction. What We Will Cover in This Section. General Model. Population. Sample

Inferential Statistics: An Introduction. What We Will Cover in This Section. General Model. Population. Sample Inferential Statistics: An Introduction 10/13/2003 P225 Inferential Statistics 1 What We Will Cover in This Section Introduction. Probability and the Normal Curve. Probability and Sampling Means. The Z-test.

More information

We Can Test the Experience Machine. Response to Basil SMITH Can We Test the Experience Machine? Ethical Perspectives 18 (2011):

We Can Test the Experience Machine. Response to Basil SMITH Can We Test the Experience Machine? Ethical Perspectives 18 (2011): We Can Test the Experience Machine Response to Basil SMITH Can We Test the Experience Machine? Ethical Perspectives 18 (2011): 29-51. In his provocative Can We Test the Experience Machine?, Basil Smith

More information

Study Guide #2: MULTIPLE REGRESSION in education

Study Guide #2: MULTIPLE REGRESSION in education Study Guide #2: MULTIPLE REGRESSION in education What is Multiple Regression? When using Multiple Regression in education, researchers use the term independent variables to identify those variables that

More information

How do we combine two treatment arm trials with multiple arms trials in IPD metaanalysis? An Illustration with College Drinking Interventions

How do we combine two treatment arm trials with multiple arms trials in IPD metaanalysis? An Illustration with College Drinking Interventions 1/29 How do we combine two treatment arm trials with multiple arms trials in IPD metaanalysis? An Illustration with College Drinking Interventions David Huh, PhD 1, Eun-Young Mun, PhD 2, & David C. Atkins,

More information

UNESCO EOLSS. This article deals with risk-defusing behavior. It is argued that this forms a central part in decision processes.

UNESCO EOLSS. This article deals with risk-defusing behavior. It is argued that this forms a central part in decision processes. RISK-DEFUSING BEHAVIOR Oswald Huber University of Fribourg, Switzerland Keywords: cognitive bias, control, cost of risk-defusing operators, decision making, effect of risk-defusing operators, lottery,

More information

What Causes war? C h. 1 : T e r m i n o l o g y & Methodology. Notes by Denis Bašić

What Causes war? C h. 1 : T e r m i n o l o g y & Methodology. Notes by Denis Bašić What Causes war? C h. 1 : T e r m i n o l o g y & Methodology Notes by Denis Bašić What is called wisdom is concerned with primary causes. Aristotle The Scientific Method: Theory Theories in the social

More information

9 research designs likely for PSYC 2100

9 research designs likely for PSYC 2100 9 research designs likely for PSYC 2100 1) 1 factor, 2 levels, 1 group (one group gets both treatment levels) related samples t-test (compare means of 2 levels only) 2) 1 factor, 2 levels, 2 groups (one

More information

Designing Experiments. Scientific Method Review Parts of a Controlled Experiment Writing Hypotheses

Designing Experiments. Scientific Method Review Parts of a Controlled Experiment Writing Hypotheses Designing Experiments Scientific Method Review Parts of a Controlled Experiment Writing Hypotheses The Scientific Method The Arab scientist Alhazen stressed the importance of experimentation in his Book

More information

Practice First Midterm Exam

Practice First Midterm Exam Practice First Midterm Exam Statistics 200 (Pfenning) This is a closed book exam worth 150 points. You are allowed to use a calculator and a two-sided sheet of notes. There are 9 problems, with point values

More information

PSY 216: Elementary Statistics Exam 4

PSY 216: Elementary Statistics Exam 4 Name: PSY 16: Elementary Statistics Exam 4 This exam consists of multiple-choice questions and essay / problem questions. For each multiple-choice question, circle the one letter that corresponds to the

More information

Advanced Bayesian Models for the Social Sciences

Advanced Bayesian Models for the Social Sciences Advanced Bayesian Models for the Social Sciences Jeff Harden Department of Political Science, University of Colorado Boulder jeffrey.harden@colorado.edu Daniel Stegmueller Department of Government, University

More information

The following is a brief summary of the main points of the book.

The following is a brief summary of the main points of the book. In their book The Resilience Factor (Broadway Books 2002), Reivich and Shatte describe the characteristics, assumptions and thinking patterns of resilient people and show how you can develop these characteristics

More information

Correlations and Multiple Comparisons in Functional Imaging. a Statistical Perspective

Correlations and Multiple Comparisons in Functional Imaging. a Statistical Perspective Correlations and Multiple Comparisons in Functional Imaging a Statistical Perspective Martin A. Lindquist and Andrew Gelman Department of Statistics, Columbia University, New York, NY, 10027 ADDRESS: Martin

More information

Introduction. Patrick Breheny. January 10. The meaning of probability The Bayesian approach Preview of MCMC methods

Introduction. Patrick Breheny. January 10. The meaning of probability The Bayesian approach Preview of MCMC methods Introduction Patrick Breheny January 10 Patrick Breheny BST 701: Bayesian Modeling in Biostatistics 1/25 Introductory example: Jane s twins Suppose you have a friend named Jane who is pregnant with twins

More information

Bayesian hierarchical modelling

Bayesian hierarchical modelling Bayesian hierarchical modelling Matthew Schofield Department of Mathematics and Statistics, University of Otago Bayesian hierarchical modelling Slide 1 What is a statistical model? A statistical model:

More information

Bias in regression coefficient estimates when assumptions for handling missing data are violated: a simulation study

Bias in regression coefficient estimates when assumptions for handling missing data are violated: a simulation study STATISTICAL METHODS Epidemiology Biostatistics and Public Health - 2016, Volume 13, Number 1 Bias in regression coefficient estimates when assumptions for handling missing data are violated: a simulation

More information

BAYESIAN HYPOTHESIS TESTING WITH SPSS AMOS

BAYESIAN HYPOTHESIS TESTING WITH SPSS AMOS Sara Garofalo Department of Psychiatry, University of Cambridge BAYESIAN HYPOTHESIS TESTING WITH SPSS AMOS Overview Bayesian VS classical (NHST or Frequentist) statistical approaches Theoretical issues

More information

Dr. Kelly Bradley Final Exam Summer {2 points} Name

Dr. Kelly Bradley Final Exam Summer {2 points} Name {2 points} Name You MUST work alone no tutors; no help from classmates. Email me or see me with questions. You will receive a score of 0 if this rule is violated. This exam is being scored out of 00 points.

More information

George B. Ploubidis. The role of sensitivity analysis in the estimation of causal pathways from observational data. Improving health worldwide

George B. Ploubidis. The role of sensitivity analysis in the estimation of causal pathways from observational data. Improving health worldwide George B. Ploubidis The role of sensitivity analysis in the estimation of causal pathways from observational data Improving health worldwide www.lshtm.ac.uk Outline Sensitivity analysis Causal Mediation

More information

Non-Small Cell Lung Cancer Causes, Risk Factors, and Prevention

Non-Small Cell Lung Cancer Causes, Risk Factors, and Prevention Non-Small Cell Lung Cancer Causes, Risk Factors, and Prevention Risk Factors A risk factor is anything that affects your chance of getting a disease such as cancer. Learn more about the risk factors for

More information

Hazard 8: Radiation. Healthy Home Rating System (HHRS)

Hazard 8: Radiation. Healthy Home Rating System (HHRS) Hazard 8: Radiation Healthy Home Rating System (HHRS) 2015 1 Description of the Hazard This hazard covers the threats to health caused by exposure to radiation. Radiation is the process of energy emission

More information

Bayesian graphical models for combining multiple data sources, with applications in environmental epidemiology

Bayesian graphical models for combining multiple data sources, with applications in environmental epidemiology Bayesian graphical models for combining multiple data sources, with applications in environmental epidemiology Sylvia Richardson 1 sylvia.richardson@imperial.co.uk Joint work with: Alexina Mason 1, Lawrence

More information

Introduction: Statistics and Engineering

Introduction: Statistics and Engineering Introduction: Statistics and Engineering STAT:2020 Probability and Statistics for Engineering and Physical Sciences Week 1 - Lecture 1 Book Sections 1.1-1.2.4, 1.3: Introduction 1 / 13 Where do engineering

More information

Multiple Regression Analysis

Multiple Regression Analysis Multiple Regression Analysis Basic Concept: Extend the simple regression model to include additional explanatory variables: Y = β 0 + β1x1 + β2x2 +... + βp-1xp + ε p = (number of independent variables

More information

Bayesian performance

Bayesian performance Bayesian performance In this section we will study the statistical properties of Bayesian estimates. Major topics include: The likelihood principle Decision theory/bayes rules Shrinkage estimators Frequentist

More information

Assessing Studies Based on Multiple Regression. Chapter 7. Michael Ash CPPA

Assessing Studies Based on Multiple Regression. Chapter 7. Michael Ash CPPA Assessing Studies Based on Multiple Regression Chapter 7 Michael Ash CPPA Assessing Regression Studies p.1/20 Course notes Last time External Validity Internal Validity Omitted Variable Bias Misspecified

More information

BOOTSTRAPPING CONFIDENCE LEVELS FOR HYPOTHESES ABOUT QUADRATIC (U-SHAPED) REGRESSION MODELS

BOOTSTRAPPING CONFIDENCE LEVELS FOR HYPOTHESES ABOUT QUADRATIC (U-SHAPED) REGRESSION MODELS BOOTSTRAPPING CONFIDENCE LEVELS FOR HYPOTHESES ABOUT QUADRATIC (U-SHAPED) REGRESSION MODELS 12 June 2012 Michael Wood University of Portsmouth Business School SBS Department, Richmond Building Portland

More information

Depression- Information and a self-help guide

Depression- Information and a self-help guide Depression- Information and a self-help guide Depression Depression is a very common problem which can affect us in many ways. We can become very low and tearful, have difficulties with our sleep, become

More information

Bayesian methods in health economics

Bayesian methods in health economics Bayesian methods in health economics Gianluca Baio University College London Department of Statistical Science g.baio@ucl.ac.uk Seminar Series of the Master in Advanced Artificial Intelligence Madrid,

More information

Neuro-Inspired Statistical. Rensselaer Polytechnic Institute National Science Foundation

Neuro-Inspired Statistical. Rensselaer Polytechnic Institute National Science Foundation Neuro-Inspired Statistical Pi Prior Model lfor Robust Visual Inference Qiang Ji Rensselaer Polytechnic Institute National Science Foundation 1 Status of Computer Vision CV has been an active area for over

More information

The research process is a fascinating method for increasing the understanding of our world.

The research process is a fascinating method for increasing the understanding of our world. 1 THE BIG PICTURE The research process is a fascinating method for increasing the understanding of our world. The research objectives we may pursue using the research process are virtually limitless. Those

More information

Index. Springer International Publishing Switzerland 2017 T.J. Cleophas, A.H. Zwinderman, Modern Meta-Analysis, DOI /

Index. Springer International Publishing Switzerland 2017 T.J. Cleophas, A.H. Zwinderman, Modern Meta-Analysis, DOI / Index A Adjusted Heterogeneity without Overdispersion, 63 Agenda-driven bias, 40 Agenda-Driven Meta-Analyses, 306 307 Alternative Methods for diagnostic meta-analyses, 133 Antihypertensive effect of potassium,

More information

An Instrumental Variable Consistent Estimation Procedure to Overcome the Problem of Endogenous Variables in Multilevel Models

An Instrumental Variable Consistent Estimation Procedure to Overcome the Problem of Endogenous Variables in Multilevel Models An Instrumental Variable Consistent Estimation Procedure to Overcome the Problem of Endogenous Variables in Multilevel Models Neil H Spencer University of Hertfordshire Antony Fielding University of Birmingham

More information