Matt Laidler, MPH, MA Acute and Communicable Disease Program Oregon Health Authority. SOSUG, April 17, 2014

Size: px
Start display at page:

Download "Matt Laidler, MPH, MA Acute and Communicable Disease Program Oregon Health Authority. SOSUG, April 17, 2014"

Transcription

1 Matt Laidler, MPH, MA Acute and Communicable Disease Program Oregon Health Authority SOSUG, April 17, 2014

2 The conditional probability of being assigned to a particular treatment given a vector of observed covariates (Rosenbaum and Rubin, 1983) The probability of treatment assignment conditional on observed characteristics (Austin, 2011)

3 When you want to estimate the effect (i.e., difference in means, difference in proportions, risk reduction) of a treatment/intervention/exposure on an outcome among individuals, and you [only] have observational data Examples: Does Medication X prevent Disease Y? Did Program A reduce alcohol consumption among Population K?

4 In a nutshell: emulates randomized controlled trials (RCTs) Observational studies vs. RCTs Causality Reduce or eliminate confounding (selection bias) Balance treatment groups on covariates Can allow direct comparison of effects between treatment subjects (versus regression adjustment of measured covariates)

5 Propensity score-matched analysis (PSM) Stratified analysis (stratified on the PS) Covariate adjustment or regression models

6 Estimate the scores Match (treatment and non-treatment pair) Check for balance of treatment groups Calculate effect of treatment/intervention/exposure Check sensitivity of effect

7 Estimate a logistic regression model Treatment is the response variable (treatment=1, non-treatment=0) Measured covariates are the predictors proc logistic data= treatments descend; class agecat race bmi; model treatment= agecat race sex bmi chronicdis1 chronicdis2 chronicdis3 chronicdis4 chronicdis5; output out=allscores prob=prob; run;

8 What covariates (predictor variables) to select? All measured baseline covariates Variables that might effect the outcome, treatment assignment, or both Interactions (?) Model significance, diagnostics? Outcome: a dataset with the estimated propensity scores

9 proc univariate data= allscores plot; var prob; class treatment; histogram; run;

10 Match 1 treated subject to N non-treated subjects (i.e., 1:1, 1:M) Matched subjects have similar values of estimated PS Greedy (nearest best match), or Optimal (minimizes within-pair difference on PS) Replacement, or no replacement? Use macros widely available

11 %gmatch and %vmatch (Mayo Clinic, %OneToManyMTCH (Parsons, %mahalanobis (Wuwei et al, search/pr05.pdf)

12 %MACRO OneToManyMTCH ( Lib, /* Library Name */ Dataset, /* Data set of all your study subjects */ depend, /* Dependent variable that indicates Tx group, 1 for Tx, 0 for no Tx*/ SiteN, /* Site or Hospital ID */ PatientN, /* Patient ID */ matches, /* Output data set of matched pairs */ NoContrls); /* Number of controls to match to each case */ /* just to show the macro parameters that are required this macro assumes your propensity score variable is called prob, but you can change the code of course */ %OneToManyMTCH(work,allscores,treatment,site,patientn,Matches_1,1);

13

14 d= (p treatment p control )/ ((p treatment (1- p treatment ) + p control (1- p control )) /2) p treatment and p control are the prevalence of the dichotomous variable in the treated and untreated groups Compares prevalence of a baseline covariate between treatment groups in the matched sample Standard difference < 0.1 suggests insignificant difference in the prevalence of a covariate between treated and untreated groups (i.e., Balance ) Not influenced by sample size Only dichotomous formula shown here. For continuous formula, see Austin, 2011 (full reference on last slide)

15 /*macro for standard diff for dichotomous variables*/ %macro binsd(var=); proc means mean data=matches_1 noprint; var &var; by treatment; output out=outmean (keep = treatment mean) mean = mean; run; data treatment 20; set outmean; if treatment = 0; mean_0 = mean; keep mean_0; run; data treatment 21; set outmean; if treatment = 1; mean_1 = mean; keep mean_1; run; data balance; length label $ 30; merge treatment 20 treatment 21; d1 = (mean_1 - mean_0)/ sqrt((mean_1*(1- mean_1) + mean_0*(1-mean_0))/2); d2 = round(abs(d1),0.001); keep d2 ; run; proc append data= balance base=j force; run; %mend binsd; /*call the macro do this for each dichotomous variable*/ %binsd(var=bmi); proc print data=j; title 'Standard differences, PS matched sample'; run; Code adapted from: Analysis of Observational Health Care Data Using SAS. By Douglas E. Faries, Robert L. Obenchain, Josep Maria Haro, and Andrew C. Leon. 2010, SAS institute.

16 Treatment (N & (%)) No treatment (N & (%)) Standard Difference StandardDifference (matched) (unmatched) Age categories < 35 5 (0.75) 6 (0.90) (2.84) 11 (1.64) (8.06) 56 (8.36) (13.58) 93 (13.88) (74.78) 504 (75.22) Sex Female 349 (47.91) 380 (56.72) - - Male 321(52.09) 290 (43.28) Race White 535 (79.85) 535 (79.85) Black 107 (15.97) 106 (15.82) Other 29 (4.33) 30 (4.48) Etc., etc.,.

17 Matching: matched pairs are more like each other than randomly selected subjects.outcomes should not be considered independent within matched pairs Methods that assume independence should probably be avoided

18 Dichotomous outcome variable: McNemar s test, Kaplan- Meier log rank test, Cox regression for matched data (if time to event data), relative risk (Agresti and Min, 2004), number needed to treat (NNT) Continuous: Paired t-test, Wilcoxon Signed Rank test (nonparametric)

19 *Restructure your data first!; data treat1 treat2; set matches_1; if treatment = 1 then output treat1; if treatment = 0 then output treat2; run; /*then sort these datasets (code not shown) */ data comparison_matched; merge treat1(rename = (hospitalized= hospitalized1 died=died1/* etc., do this for each outcome variable in the dataset*/) treat2(rename = (hospitalized= hospitalized2 died=died2 /* etc., do this for each outcome variable in the dataset*/) by match_1; run;

20 proc freq data=comparison_matched; exact agree; tables died1*died2 /agree ; title "McNemar's test for comparing outcomes among matched pairs"; run;

21

22 Answers: could an unmeasured covariate bias the results of the study? Gamma, (Rosenbaum, 2005) If there was an unmeasured variable that increased the odds of treatment (Gamma) by X%, could this variable potentially account for the treatment effect? Sensitivity Analysis in Observational Studies. By Paul R. Rosenbaum. In Encyclopedia of Statistics in Behavioral Science, 2005, John Wiley & Sons, LTD %let a= /*sum of the discordant pairs*/; %let b= /*number of pairs where untreated had outcome (e.g. death), treated did not*/; data g; do gamma_init = 0 to 50; gamma = 1 + gamma_init/20; p_plus = gamma/(1 + gamma); p_neg = 1/(1 + gamma); p_upper = 2*(1 - probbnml(p_plus,&a, &b) ); p_lower = 2*(1 - probbnml(p_neg,&a, &b) ); output; end; run; proc print data=g noobs; var gamma p_lower p_upper; title "Sensitivity analysis for McNemar's test"; run; Adapted from: Analysis of Observational Health Care Data Using SAS. By Douglas E. Faries, Robert L. Obenchain, Josep Maria Haro, and Andrew C. Leon. 2010, SAS institute.

23

24 You can still adjust for covariates (but, do you need to?) Expectation of balance between measured and unmeasured covariates (like RCTs) using PS methods.but doesn t guarantee all bias is eliminated. Unmeasured covariates a reason to check sensitivity. PS methods assume that all covariates that effect treatment assignment have been measured (however, regression-based approaches also assume this ).

25 Austin PC. An Introduction to Propensity Score Methods for Reducing the Effects of Confounding in Observational Studies. Multivariate Behav Res May;46(3): Analysis of Observational Health Care Data Using SAS. By Douglas E. Faries, Robert L. Obenchain, Josep Maria Haro, and Andrew C. Leon. 2010, SAS institute. Parsons LS, Performing a 1:N Case-Control Match on Propensity Score. SUGI 29, paper

26 Questions?

Contents. Part 1 Introduction. Part 2 Cross-Sectional Selection Bias Adjustment

Contents. Part 1 Introduction. Part 2 Cross-Sectional Selection Bias Adjustment From Analysis of Observational Health Care Data Using SAS. Full book available for purchase here. Contents Preface ix Part 1 Introduction Chapter 1 Introduction to Observational Studies... 3 1.1 Observational

More information

Propensity Score Methods to Adjust for Bias in Observational Data SAS HEALTH USERS GROUP APRIL 6, 2018

Propensity Score Methods to Adjust for Bias in Observational Data SAS HEALTH USERS GROUP APRIL 6, 2018 Propensity Score Methods to Adjust for Bias in Observational Data SAS HEALTH USERS GROUP APRIL 6, 2018 Institute Institute for Clinical for Clinical Evaluative Evaluative Sciences Sciences Overview 1.

More information

BIOSTATISTICAL METHODS

BIOSTATISTICAL METHODS BIOSTATISTICAL METHODS FOR TRANSLATIONAL & CLINICAL RESEARCH PROPENSITY SCORE Confounding Definition: A situation in which the effect or association between an exposure (a predictor or risk factor) and

More information

A Practical Guide to Getting Started with Propensity Scores

A Practical Guide to Getting Started with Propensity Scores Paper 689-2017 A Practical Guide to Getting Started with Propensity Scores Thomas Gant, Keith Crowland Data & Information Management Enhancement (DIME) Kaiser Permanente ABSTRACT This paper gives tools

More information

Propensity Score Methods for Causal Inference with the PSMATCH Procedure

Propensity Score Methods for Causal Inference with the PSMATCH Procedure Paper SAS332-2017 Propensity Score Methods for Causal Inference with the PSMATCH Procedure Yang Yuan, Yiu-Fai Yung, and Maura Stokes, SAS Institute Inc. Abstract In a randomized study, subjects are randomly

More information

Methods to control for confounding - Introduction & Overview - Nicolle M Gatto 18 February 2015

Methods to control for confounding - Introduction & Overview - Nicolle M Gatto 18 February 2015 Methods to control for confounding - Introduction & Overview - Nicolle M Gatto 18 February 2015 Learning Objectives At the end of this confounding control overview, you will be able to: Understand how

More information

PubH 7405: REGRESSION ANALYSIS. Propensity Score

PubH 7405: REGRESSION ANALYSIS. Propensity Score PubH 7405: REGRESSION ANALYSIS Propensity Score INTRODUCTION: There is a growing interest in using observational (or nonrandomized) studies to estimate the effects of treatments on outcomes. In observational

More information

Propensity score methods to adjust for confounding in assessing treatment effects: bias and precision

Propensity score methods to adjust for confounding in assessing treatment effects: bias and precision ISPUB.COM The Internet Journal of Epidemiology Volume 7 Number 2 Propensity score methods to adjust for confounding in assessing treatment effects: bias and precision Z Wang Abstract There is an increasing

More information

Logistic Regression Predicting the Chances of Coronary Heart Disease. Multivariate Solutions

Logistic Regression Predicting the Chances of Coronary Heart Disease. Multivariate Solutions Logistic Regression Predicting the Chances of Coronary Heart Disease Multivariate Solutions What is Logistic Regression? Logistic regression in a nutshell: Logistic regression is used for prediction of

More information

Inverse Probability of Censoring Weighting for Selective Crossover in Oncology Clinical Trials.

Inverse Probability of Censoring Weighting for Selective Crossover in Oncology Clinical Trials. Paper SP02 Inverse Probability of Censoring Weighting for Selective Crossover in Oncology Clinical Trials. José Luis Jiménez-Moro (PharmaMar, Madrid, Spain) Javier Gómez (PharmaMar, Madrid, Spain) ABSTRACT

More information

Joseph W Hogan Brown University & AMPATH February 16, 2010

Joseph W Hogan Brown University & AMPATH February 16, 2010 Joseph W Hogan Brown University & AMPATH February 16, 2010 Drinking and lung cancer Gender bias and graduate admissions AMPATH nutrition study Stratification and regression drinking and lung cancer graduate

More information

Supplementary Appendix

Supplementary Appendix Supplementary Appendix This appendix has been provided by the authors to give readers additional information about their work. Supplement to: Weintraub WS, Grau-Sepulveda MV, Weiss JM, et al. Comparative

More information

Propensity score analysis with the latest SAS/STAT procedures PSMATCH and CAUSALTRT

Propensity score analysis with the latest SAS/STAT procedures PSMATCH and CAUSALTRT Propensity score analysis with the latest SAS/STAT procedures PSMATCH and CAUSALTRT Yuriy Chechulin, Statistician Modeling, Advanced Analytics What is SAS Global Forum One of the largest global analytical

More information

ABSTRACT INTRODUCTION COVARIATE EXAMINATION. Paper

ABSTRACT INTRODUCTION COVARIATE EXAMINATION. Paper Paper 11420-2016 Integrating SAS and R to Perform Optimal Propensity Score Matching Lucy D Agostino McGowan and Robert Alan Greevy, Jr., Vanderbilt University, Department of Biostatistics ABSTRACT In studies

More information

Applied Medical. Statistics Using SAS. Geoff Der. Brian S. Everitt. CRC Press. Taylor Si Francis Croup. Taylor & Francis Croup, an informa business

Applied Medical. Statistics Using SAS. Geoff Der. Brian S. Everitt. CRC Press. Taylor Si Francis Croup. Taylor & Francis Croup, an informa business Applied Medical Statistics Using SAS Geoff Der Brian S. Everitt CRC Press Taylor Si Francis Croup Boca Raton London New York CRC Press is an imprint of the Taylor & Francis Croup, an informa business A

More information

Effects of propensity score overlap on the estimates of treatment effects. Yating Zheng & Laura Stapleton

Effects of propensity score overlap on the estimates of treatment effects. Yating Zheng & Laura Stapleton Effects of propensity score overlap on the estimates of treatment effects Yating Zheng & Laura Stapleton Introduction Recent years have seen remarkable development in estimating average treatment effects

More information

An Introduction to Propensity Score Methods for Reducing the Effects of Confounding in Observational Studies

An Introduction to Propensity Score Methods for Reducing the Effects of Confounding in Observational Studies Multivariate Behavioral Research, 46:399 424, 2011 Copyright Taylor & Francis Group, LLC ISSN: 0027-3171 print/1532-7906 online DOI: 10.1080/00273171.2011.568786 An Introduction to Propensity Score Methods

More information

Peter C. Austin Institute for Clinical Evaluative Sciences and University of Toronto

Peter C. Austin Institute for Clinical Evaluative Sciences and University of Toronto Multivariate Behavioral Research, 46:119 151, 2011 Copyright Taylor & Francis Group, LLC ISSN: 0027-3171 print/1532-7906 online DOI: 10.1080/00273171.2011.540480 A Tutorial and Case Study in Propensity

More information

Biostatistics II

Biostatistics II Biostatistics II 514-5509 Course Description: Modern multivariable statistical analysis based on the concept of generalized linear models. Includes linear, logistic, and Poisson regression, survival analysis,

More information

Matched Cohort designs.

Matched Cohort designs. Matched Cohort designs. Stefan Franzén PhD Lund 2016 10 13 Registercentrum Västra Götaland Purpose: improved health care 25+ 30+ 70+ Registries Employed Papers Statistics IT Project management Registry

More information

Utilizing Propensity Score Analyses to Adjust for Selection Bias: A Study of Adolescent Mental Illness and Substance Use

Utilizing Propensity Score Analyses to Adjust for Selection Bias: A Study of Adolescent Mental Illness and Substance Use Paper 11901-2016 Utilizing Propensity Score Analyses to Adjust for Selection Bias: A Study of Adolescent Mental Illness and Substance Use Deanna Schreiber-Gregory, National University Abstract An important

More information

The SAS contrasttest Macro

The SAS contrasttest Macro The SAS contrasttest Macro Molin Wang, Ruifeng Li, and Donna Spiegelman September 17, 2014 Abstract The %contrasttest macro conducts heterogeneity test for comparing the exposure-disease associations obtained

More information

Is Hospital Admission Useful for Syncope Patients? Preliminary Results of a Multicenter Cohort

Is Hospital Admission Useful for Syncope Patients? Preliminary Results of a Multicenter Cohort Is Hospital Admission Useful for Syncope Patients? Preliminary Results of a Multicenter Cohort F. Dipaola, E. Pivetta, G. Costantino, G. Casazza, M.J. Reed, B. Sun, M. Solbiati, F. Barbic, D. Shiffer,

More information

Introducing a SAS macro for doubly robust estimation

Introducing a SAS macro for doubly robust estimation Introducing a SAS macro for doubly robust estimation 1Michele Jonsson Funk, PhD, 1Daniel Westreich MSPH, 2Marie Davidian PhD, 3Chris Weisen PhD 1Department of Epidemiology and 3Odum Institute for Research

More information

Linear Regression in SAS

Linear Regression in SAS 1 Suppose we wish to examine factors that predict patient s hemoglobin levels. Simulated data for six patients is used throughout this tutorial. data hgb_data; input id age race $ bmi hgb; cards; 21 25

More information

Application of Propensity Score Models in Observational Studies

Application of Propensity Score Models in Observational Studies Paper 2522-2018 Application of Propensity Score Models in Observational Studies Nikki Carroll, Kaiser Permanente Colorado ABSTRACT Treatment effects from observational studies may be biased as patients

More information

TRIPLL Webinar: Propensity score methods in chronic pain research

TRIPLL Webinar: Propensity score methods in chronic pain research TRIPLL Webinar: Propensity score methods in chronic pain research Felix Thoemmes, PhD Support provided by IES grant Matching Strategies for Observational Studies with Multilevel Data in Educational Research

More information

Comparison And Application Of Methods To Address Confounding By Indication In Non- Randomized Clinical Studies

Comparison And Application Of Methods To Address Confounding By Indication In Non- Randomized Clinical Studies University of Massachusetts Amherst ScholarWorks@UMass Amherst Masters Theses 1911 - February 2014 Dissertations and Theses 2013 Comparison And Application Of Methods To Address Confounding By Indication

More information

Methodology for Non-Randomized Clinical Trials: Propensity Score Analysis Dan Conroy, Ph.D., inventiv Health, Burlington, MA

Methodology for Non-Randomized Clinical Trials: Propensity Score Analysis Dan Conroy, Ph.D., inventiv Health, Burlington, MA PharmaSUG 2014 - Paper SP08 Methodology for Non-Randomized Clinical Trials: Propensity Score Analysis Dan Conroy, Ph.D., inventiv Health, Burlington, MA ABSTRACT Randomized clinical trials serve as the

More information

INTRODUCTION TO SURVIVAL CURVES

INTRODUCTION TO SURVIVAL CURVES SURVIVAL CURVES WITH NON-RANDOMIZED DESIGNS: HOW TO ADDRESS POTENTIAL BIAS AND INTERPRET ADJUSTED SURVIVAL CURVES Workshop W25, Wednesday, May 25, 2016 ISPOR 21 st International Meeting, Washington, DC,

More information

How should the propensity score be estimated when some confounders are partially observed?

How should the propensity score be estimated when some confounders are partially observed? How should the propensity score be estimated when some confounders are partially observed? Clémence Leyrat 1, James Carpenter 1,2, Elizabeth Williamson 1,3, Helen Blake 1 1 Department of Medical statistics,

More information

Causal Methods for Observational Data Amanda Stevenson, University of Texas at Austin Population Research Center, Austin, TX

Causal Methods for Observational Data Amanda Stevenson, University of Texas at Austin Population Research Center, Austin, TX Causal Methods for Observational Data Amanda Stevenson, University of Texas at Austin Population Research Center, Austin, TX ABSTRACT Comparative effectiveness research often uses non-experimental observational

More information

Introduction to Observational Studies. Jane Pinelis

Introduction to Observational Studies. Jane Pinelis Introduction to Observational Studies Jane Pinelis 22 March 2018 Outline Motivating example Observational studies vs. randomized experiments Observational studies: basics Some adjustment strategies Matching

More information

Propensity Score Analysis to compare effects of radiation and surgery on survival time of lung cancer patients from National Cancer Registry (SEER)

Propensity Score Analysis to compare effects of radiation and surgery on survival time of lung cancer patients from National Cancer Registry (SEER) Propensity Score Analysis to compare effects of radiation and surgery on survival time of lung cancer patients from National Cancer Registry (SEER) Yan Wu Advisor: Robert Pruzek Epidemiology and Biostatistics

More information

By: Mei-Jie Zhang, Ph.D.

By: Mei-Jie Zhang, Ph.D. Propensity Scores By: Mei-Jie Zhang, Ph.D. Medical College of Wisconsin, Division of Biostatistics Friday, March 29, 2013 12:00-1:00 pm The Medical College of Wisconsin is accredited by the Accreditation

More information

Assessing the impact of unmeasured confounding: confounding functions for causal inference

Assessing the impact of unmeasured confounding: confounding functions for causal inference Assessing the impact of unmeasured confounding: confounding functions for causal inference Jessica Kasza jessica.kasza@monash.edu Department of Epidemiology and Preventive Medicine, Monash University Victorian

More information

Practice Pattern Instrumental Variables for Comparative Effectiveness

Practice Pattern Instrumental Variables for Comparative Effectiveness Practice Pattern Instrumental Variables for Comparative Effectiveness Carol Conell. Division of Research. Kaiser Permanente Northern California, Oakland, CA Alexander C. Flint. Department of Neuroscience.

More information

Combining machine learning and matching techniques to improve causal inference in program evaluation

Combining machine learning and matching techniques to improve causal inference in program evaluation bs_bs_banner Journal of Evaluation in Clinical Practice ISSN1365-2753 Combining machine learning and matching techniques to improve causal inference in program evaluation Ariel Linden DrPH 1,2 and Paul

More information

Supplementary Methods

Supplementary Methods Supplementary Materials for Suicidal Behavior During Lithium and Valproate Medication: A Withinindividual Eight Year Prospective Study of 50,000 Patients With Bipolar Disorder Supplementary Methods We

More information

Content. Basic Statistics and Data Analysis for Health Researchers from Foreign Countries. Research question. Example Newly diagnosed Type 2 Diabetes

Content. Basic Statistics and Data Analysis for Health Researchers from Foreign Countries. Research question. Example Newly diagnosed Type 2 Diabetes Content Quantifying association between continuous variables. Basic Statistics and Data Analysis for Health Researchers from Foreign Countries Volkert Siersma siersma@sund.ku.dk The Research Unit for General

More information

A Comparison of Methods of Analysis to Control for Confounding in a Cohort Study of a Dietary Intervention

A Comparison of Methods of Analysis to Control for Confounding in a Cohort Study of a Dietary Intervention Virginia Commonwealth University VCU Scholars Compass Theses and Dissertations Graduate School 2012 A Comparison of Methods of Analysis to Control for Confounding in a Cohort Study of a Dietary Intervention

More information

Propensity Score Analysis: Its rationale & potential for applied social/behavioral research. Bob Pruzek University at Albany

Propensity Score Analysis: Its rationale & potential for applied social/behavioral research. Bob Pruzek University at Albany Propensity Score Analysis: Its rationale & potential for applied social/behavioral research Bob Pruzek University at Albany Aims: First, to introduce key ideas that underpin propensity score (PS) methodology

More information

CHL 5225 H Advanced Statistical Methods for Clinical Trials. CHL 5225 H The Language of Clinical Trials

CHL 5225 H Advanced Statistical Methods for Clinical Trials. CHL 5225 H The Language of Clinical Trials CHL 5225 H Advanced Statistical Methods for Clinical Trials Two sources for course material 1. Electronic blackboard required readings 2. www.andywillan.com/chl5225h code of conduct course outline schedule

More information

Simple Sensitivity Analyses for Matched Samples Thomas E. Love, Ph.D. ASA Course Atlanta Georgia https://goo.

Simple Sensitivity Analyses for Matched Samples Thomas E. Love, Ph.D. ASA Course Atlanta Georgia https://goo. Goal of a Formal Sensitivity Analysis To replace a general qualitative statement that applies in all observational studies the association we observe between treatment and outcome does not imply causation

More information

Moving beyond regression toward causality:

Moving beyond regression toward causality: Moving beyond regression toward causality: INTRODUCING ADVANCED STATISTICAL METHODS TO ADVANCE SEXUAL VIOLENCE RESEARCH Regine Haardörfer, Ph.D. Emory University rhaardo@emory.edu OR Regine.Haardoerfer@Emory.edu

More information

Part 8 Logistic Regression

Part 8 Logistic Regression 1 Quantitative Methods for Health Research A Practical Interactive Guide to Epidemiology and Statistics Practical Course in Quantitative Data Handling SPSS (Statistical Package for the Social Sciences)

More information

SAS Macros for Estimating the Attributable Benefit of an Optimal Treatment Regime Jason Brinkley, East Carolina University, Greenville, NC

SAS Macros for Estimating the Attributable Benefit of an Optimal Treatment Regime Jason Brinkley, East Carolina University, Greenville, NC Paper SDA-05 SAS Macros for Estimating the Attributable Benefit of an Optimal Treatment Regime Jason Brinkley, East Carolina University, Greenville, NC ABSTRACT It is sometimes the case there is no general

More information

Types of Statistics. Censored data. Files for today (June 27) Lecture and Homework INTRODUCTION TO BIOSTATISTICS. Today s Outline

Types of Statistics. Censored data. Files for today (June 27) Lecture and Homework INTRODUCTION TO BIOSTATISTICS. Today s Outline INTRODUCTION TO BIOSTATISTICS FOR GRADUATE AND MEDICAL STUDENTS Files for today (June 27) Lecture and Homework Descriptive Statistics and Graphically Visualizing Data Lecture #2 (1 file) PPT presentation

More information

Endocarditis: Medical vs. Surgical Treatment. Nabin K. Shrestha, MD, MPH Infectious Diseases

Endocarditis: Medical vs. Surgical Treatment. Nabin K. Shrestha, MD, MPH Infectious Diseases Endocarditis: Medical vs. Surgical Treatment Nabin K. Shrestha, MD, MPH Infectious Diseases Conflicts of interest Nothing to disclose 2 Complications of infective endocarditis Local complications Heart

More information

Using Propensity Score Matching in Clinical Investigations: A Discussion and Illustration

Using Propensity Score Matching in Clinical Investigations: A Discussion and Illustration 208 International Journal of Statistics in Medical Research, 2015, 4, 208-216 Using Propensity Score Matching in Clinical Investigations: A Discussion and Illustration Carrie Hosman 1,* and Hitinder S.

More information

List of Figures. List of Tables. Preface to the Second Edition. Preface to the First Edition

List of Figures. List of Tables. Preface to the Second Edition. Preface to the First Edition List of Figures List of Tables Preface to the Second Edition Preface to the First Edition xv xxv xxix xxxi 1 What Is R? 1 1.1 Introduction to R................................ 1 1.2 Downloading and Installing

More information

Supplementary Online Content

Supplementary Online Content 1 Supplementary Online Content Friedman DJ, Piccini JP, Wang T, et al. Association between left atrial appendage occlusion and readmission for thromboembolism among patients with atrial fibrillation undergoing

More information

The SAS SUBTYPE Macro

The SAS SUBTYPE Macro The SAS SUBTYPE Macro Aya Kuchiba, Molin Wang, and Donna Spiegelman April 8, 2014 Abstract The %SUBTYPE macro examines whether the effects of the exposure(s) vary by subtypes of a disease. It can be applied

More information

Optimal full matching for survival outcomes: a method that merits more widespread use

Optimal full matching for survival outcomes: a method that merits more widespread use Research Article Received 3 November 2014, Accepted 6 July 2015 Published online 6 August 2015 in Wiley Online Library (wileyonlinelibrary.com) DOI: 10.1002/sim.6602 Optimal full matching for survival

More information

Time-varying confounding and marginal structural model

Time-varying confounding and marginal structural model Time-varying confounding and marginal structural model By David Chyou Overview An overview of time-varying confounding. Marginal structural model. Weighing regression by propensity score. Future prospective.

More information

Using machine learning to assess covariate balance in matching studies

Using machine learning to assess covariate balance in matching studies bs_bs_banner Journal of Evaluation in Clinical Practice ISSN1365-2753 Using machine learning to assess covariate balance in matching studies Ariel Linden, DrPH 1,2 and Paul R. Yarnold, PhD 3 1 President,

More information

Stat Wk 8: Continuous Data

Stat Wk 8: Continuous Data Stat 342 - Wk 8: Continuous Data proc iml Loading and saving to datasets proc means proc univariate proc sgplot proc corr Stat 342 Notes. Week 3, Page 1 / 71 PROC IML - Reading other datasets. If you want

More information

How to analyze correlated and longitudinal data?

How to analyze correlated and longitudinal data? How to analyze correlated and longitudinal data? Niloofar Ramezani, University of Northern Colorado, Greeley, Colorado ABSTRACT Longitudinal and correlated data are extensively used across disciplines

More information

What s New in SUDAAN 11

What s New in SUDAAN 11 What s New in SUDAAN 11 Angela Pitts 1, Michael Witt 1, Gayle Bieler 1 1 RTI International, 3040 Cornwallis Rd, RTP, NC 27709 Abstract SUDAAN 11 is due to be released in 2012. SUDAAN is a statistical software

More information

BIOSTATISTICAL METHODS AND RESEARCH DESIGNS. Xihong Lin Department of Biostatistics, University of Michigan, Ann Arbor, MI, USA

BIOSTATISTICAL METHODS AND RESEARCH DESIGNS. Xihong Lin Department of Biostatistics, University of Michigan, Ann Arbor, MI, USA BIOSTATISTICAL METHODS AND RESEARCH DESIGNS Xihong Lin Department of Biostatistics, University of Michigan, Ann Arbor, MI, USA Keywords: Case-control study, Cohort study, Cross-Sectional Study, Generalized

More information

Propensity score methods : a simulation and case study involving breast cancer patients.

Propensity score methods : a simulation and case study involving breast cancer patients. University of Louisville ThinkIR: The University of Louisville's Institutional Repository Electronic Theses and Dissertations 5-2016 Propensity score methods : a simulation and case study involving breast

More information

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

Influence of Lymphadenectomy on Survival for Early-Stage Endometrial Cancer

Influence of Lymphadenectomy on Survival for Early-Stage Endometrial Cancer Influence of Lymphadenectomy on Survival for Early-Stage Endometrial Cancer Jason D. Wright, MD, Yongemei Huang, MD/PhD, William M. Burke, MD, et al. Journal Club March 16, 2016 Blaine Campbell-PGY2 Objective

More information

A COMPARISON OF IMPUTATION METHODS FOR MISSING DATA IN A MULTI-CENTER RANDOMIZED CLINICAL TRIAL: THE IMPACT STUDY

A COMPARISON OF IMPUTATION METHODS FOR MISSING DATA IN A MULTI-CENTER RANDOMIZED CLINICAL TRIAL: THE IMPACT STUDY A COMPARISON OF IMPUTATION METHODS FOR MISSING DATA IN A MULTI-CENTER RANDOMIZED CLINICAL TRIAL: THE IMPACT STUDY Lingqi Tang 1, Thomas R. Belin 2, and Juwon Song 2 1 Center for Health Services Research,

More information

Statistical Methods for the Evaluation of Treatment Effectiveness in the Presence of Competing Risks

Statistical Methods for the Evaluation of Treatment Effectiveness in the Presence of Competing Risks Statistical Methods for the Evaluation of Treatment Effectiveness in the Presence of Competing Risks Ravi Varadhan Assistant Professor (On Behalf of the Johns Hopkins DEcIDE Center) Center on Aging and

More information

Using Direct Standardization SAS Macro for a Valid Comparison in Observational Studies

Using Direct Standardization SAS Macro for a Valid Comparison in Observational Studies T07-2008 Using Direct Standardization SAS Macro for a Valid Comparison in Observational Studies Daojun Mo 1, Xia Li 2 and Alan Zimmermann 1 1 Eli Lilly and Company, Indianapolis, IN 2 inventiv Clinical

More information

CLINICAL BIOSTATISTICS

CLINICAL BIOSTATISTICS 09/06/17 1 Overview and Descriptive Statistics a. Application of statistics in biomedical research b. Type of data c. Graphic representation of data d. Summary statistics: central tendency and dispersion

More information

Analysis of Rheumatoid Arthritis Data using Logistic Regression and Penalized Approach

Analysis of Rheumatoid Arthritis Data using Logistic Regression and Penalized Approach University of South Florida Scholar Commons Graduate Theses and Dissertations Graduate School November 2015 Analysis of Rheumatoid Arthritis Data using Logistic Regression and Penalized Approach Wei Chen

More information

Statistics as a Tool. A set of tools for collecting, organizing, presenting and analyzing numerical facts or observations.

Statistics as a Tool. A set of tools for collecting, organizing, presenting and analyzing numerical facts or observations. Statistics as a Tool A set of tools for collecting, organizing, presenting and analyzing numerical facts or observations. Descriptive Statistics Numerical facts or observations that are organized describe

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

EFFECT OF RADIATION THERAPY ON SURVIVAL IN PATIENTS WITH RESECTED MERKEL CELL CARCINOMA: A POPULATION-BASED ANALYSIS JULIAN A. KIM, M.D.

EFFECT OF RADIATION THERAPY ON SURVIVAL IN PATIENTS WITH RESECTED MERKEL CELL CARCINOMA: A POPULATION-BASED ANALYSIS JULIAN A. KIM, M.D. EFFECT OF RADIATION THERAPY ON SURVIVAL IN PATIENTS WITH RESECTED MERKEL CELL CARCINOMA: A POPULATION-BASED ANALYSIS by JULIAN A. KIM, M.D. Submitted in partial fulfillment of the requirements For the

More information

Chapter 13 Estimating the Modified Odds Ratio

Chapter 13 Estimating the Modified Odds Ratio Chapter 13 Estimating the Modified Odds Ratio Modified odds ratio vis-à-vis modified mean difference To a large extent, this chapter replicates the content of Chapter 10 (Estimating the modified mean difference),

More information

STATISTICS IN CLINICAL AND TRANSLATIONAL RESEARCH

STATISTICS IN CLINICAL AND TRANSLATIONAL RESEARCH 09/07/11 1 Overview and Descriptive Statistics a. Application of statistics in biomedical research b. Type of data c. Graphic representation of data d. Summary statistics: central tendency and dispersion

More information

Challenges of Observational and Retrospective Studies

Challenges of Observational and Retrospective Studies Challenges of Observational and Retrospective Studies Kyoungmi Kim, Ph.D. March 8, 2017 This seminar is jointly supported by the following NIH-funded centers: Background There are several methods in which

More information

Observational & Quasi-experimental Research Methods

Observational & Quasi-experimental Research Methods Observational & Quasi-experimental Research Methods 10th Annual Kathleen Foley Palliative Care Retreat Old Québec, October 24, 2016 Melissa M. Garrido, PhD 1 and Jay Magaziner, PhD 2 1. Department of Veterans

More information

PharmaSUG Paper HA-04 Two Roads Diverged in a Narrow Dataset...When Coarsened Exact Matching is More Appropriate than Propensity Score Matching

PharmaSUG Paper HA-04 Two Roads Diverged in a Narrow Dataset...When Coarsened Exact Matching is More Appropriate than Propensity Score Matching PharmaSUG 207 - Paper HA-04 Two Roads Diverged in a Narrow Dataset...When Coarsened Exact Matching is More Appropriate than Propensity Score Matching Aran Canes, Cigna Corporation ABSTRACT Coarsened Exact

More information

Lecture Outline. Biost 590: Statistical Consulting. Stages of Scientific Studies. Scientific Method

Lecture Outline. Biost 590: Statistical Consulting. Stages of Scientific Studies. Scientific Method Biost 590: Statistical Consulting Statistical Classification of Scientific Studies; Approach to Consulting Lecture Outline Statistical Classification of Scientific Studies Statistical Tasks Approach to

More information

From Biostatistics Using JMP: A Practical Guide. Full book available for purchase here. Chapter 1: Introduction... 1

From Biostatistics Using JMP: A Practical Guide. Full book available for purchase here. Chapter 1: Introduction... 1 From Biostatistics Using JMP: A Practical Guide. Full book available for purchase here. Contents Dedication... iii Acknowledgments... xi About This Book... xiii About the Author... xvii Chapter 1: Introduction...

More information

ADVANCED STATISTICAL METHODS: PART 1: INTRODUCTION TO PROPENSITY SCORES IN STATA. Learning objectives:

ADVANCED STATISTICAL METHODS: PART 1: INTRODUCTION TO PROPENSITY SCORES IN STATA. Learning objectives: ADVANCED STATISTICAL METHODS: ACS Outcomes Research Course PART 1: INTRODUCTION TO PROPENSITY SCORES IN STATA Learning objectives: To understand the use of propensity scores as a means for controlling

More information

investigate. educate. inform.

investigate. educate. inform. investigate. educate. inform. Research Design What drives your research design? The battle between Qualitative and Quantitative is over Think before you leap What SHOULD drive your research design. Advanced

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

Confounding by indication developments in matching, and instrumental variable methods. Richard Grieve London School of Hygiene and Tropical Medicine

Confounding by indication developments in matching, and instrumental variable methods. Richard Grieve London School of Hygiene and Tropical Medicine Confounding by indication developments in matching, and instrumental variable methods Richard Grieve London School of Hygiene and Tropical Medicine 1 Outline 1. Causal inference and confounding 2. Genetic

More information

Effect of Source and Level of Protein on Weight Gain of Rats

Effect of Source and Level of Protein on Weight Gain of Rats Effect of Source and Level of Protein on of Rats 1 * two factor analysis of variance with interaction; 2 option ls=120 ps=75 nocenter nodate; 3 4 title Effect of Source of Protein and Level of Protein

More information

Methods for Addressing Selection Bias in Observational Studies

Methods for Addressing Selection Bias in Observational Studies Methods for Addressing Selection Bias in Observational Studies Susan L. Ettner, Ph.D. Professor Division of General Internal Medicine and Health Services Research, UCLA What is Selection Bias? In the regression

More information

Confounding. Confounding and effect modification. Example (after Rothman, 1998) Beer and Rectal Ca. Confounding (after Rothman, 1998)

Confounding. Confounding and effect modification. Example (after Rothman, 1998) Beer and Rectal Ca. Confounding (after Rothman, 1998) Confounding Confounding and effect modification Epidemiology 511 W. A. Kukull vember 23 2004 A function of the complex interrelationships between various exposures and disease. Occurs when the disease

More information

The Statistical Analysis of Failure Time Data

The Statistical Analysis of Failure Time Data The Statistical Analysis of Failure Time Data Second Edition JOHN D. KALBFLEISCH ROSS L. PRENTICE iwiley- 'INTERSCIENCE A JOHN WILEY & SONS, INC., PUBLICATION Contents Preface xi 1. Introduction 1 1.1

More information

Introduction to Survival Analysis Procedures (Chapter)

Introduction to Survival Analysis Procedures (Chapter) SAS/STAT 9.3 User s Guide Introduction to Survival Analysis Procedures (Chapter) SAS Documentation This document is an individual chapter from SAS/STAT 9.3 User s Guide. The correct bibliographic citation

More information

Using Ensemble-Based Methods for Directly Estimating Causal Effects: An Investigation of Tree-Based G-Computation

Using Ensemble-Based Methods for Directly Estimating Causal Effects: An Investigation of Tree-Based G-Computation Institute for Clinical Evaluative Sciences From the SelectedWorks of Peter Austin 2012 Using Ensemble-Based Methods for Directly Estimating Causal Effects: An Investigation of Tree-Based G-Computation

More information

Rise of the Machines

Rise of the Machines Rise of the Machines Statistical machine learning for observational studies: confounding adjustment and subgroup identification Armand Chouzy, ETH (summer intern) Jason Wang, Celgene PSI conference 2018

More information

Analysis of Environmental Data Conceptual Foundations: En viro n m e n tal Data

Analysis of Environmental Data Conceptual Foundations: En viro n m e n tal Data Analysis of Environmental Data Conceptual Foundations: En viro n m e n tal Data 1. Purpose of data collection...................................................... 2 2. Samples and populations.......................................................

More information

The SAGE Encyclopedia of Educational Research, Measurement, and Evaluation Multivariate Analysis of Variance

The SAGE Encyclopedia of Educational Research, Measurement, and Evaluation Multivariate Analysis of Variance The SAGE Encyclopedia of Educational Research, Measurement, Multivariate Analysis of Variance Contributors: David W. Stockburger Edited by: Bruce B. Frey Book Title: Chapter Title: "Multivariate Analysis

More information

NEUROBLASTOMA DATA -- TWO GROUPS -- QUANTITATIVE MEASURES 38 15:37 Saturday, January 25, 2003

NEUROBLASTOMA DATA -- TWO GROUPS -- QUANTITATIVE MEASURES 38 15:37 Saturday, January 25, 2003 NEUROBLASTOMA DATA -- TWO GROUPS -- QUANTITATIVE MEASURES 38 15:37 Saturday, January 25, 2003 Obs GROUP I DOPA LNDOPA 1 neurblst 1 48.000 1.68124 2 neurblst 1 133.000 2.12385 3 neurblst 1 34.000 1.53148

More information

Improved control for confounding using propensity scores and instrumental variables?

Improved control for confounding using propensity scores and instrumental variables? Improved control for confounding using propensity scores and instrumental variables? Dr. Olaf H.Klungel Dept. of Pharmacoepidemiology & Clinical Pharmacology, Utrecht Institute of Pharmaceutical Sciences

More information

Instrumental Variables I (cont.)

Instrumental Variables I (cont.) Review Instrumental Variables Observational Studies Cross Sectional Regressions Omitted Variables, Reverse causation Randomized Control Trials Difference in Difference Time invariant omitted variables

More information

A macro of building predictive model in PROC LOGISTIC with AIC-optimal variable selection embedded in cross-validation

A macro of building predictive model in PROC LOGISTIC with AIC-optimal variable selection embedded in cross-validation SESUG Paper AD-36-2017 A macro of building predictive model in PROC LOGISTIC with AIC-optimal variable selection embedded in cross-validation Hongmei Yang, Andréa Maslow, Carolinas Healthcare System. ABSTRACT

More information

Overview. Goals of Interpretation. Methodology. Reasons to Read and Evaluate

Overview. Goals of Interpretation. Methodology. Reasons to Read and Evaluate Overview Critical Literature Evaluation and Biostatistics Ahl Ashley N. Lewis, PharmD, BCPS Clinical Specialist, Drug Information UNC Hospitals Background Review of basic statistics Statistical tests Clinical

More information

Application of Artificial Neural Network-Based Survival Analysis on Two Breast Cancer Datasets

Application of Artificial Neural Network-Based Survival Analysis on Two Breast Cancer Datasets Application of Artificial Neural Network-Based Survival Analysis on Two Breast Cancer Datasets Chih-Lin Chi a, W. Nick Street b, William H. Wolberg c a Health Informatics Program, University of Iowa b

More information

Controlling for Confounding when Association is Quantified by Area Under the ROC Curve

Controlling for Confounding when Association is Quantified by Area Under the ROC Curve Virginia Commonwealth University VCU Scholars Compass Theses and Dissertations Graduate School 2015 Controlling for Confounding when Association is Quantified by Area Under the ROC Curve Hadiza I. Galadima

More information

Dylan Small Department of Statistics, Wharton School, University of Pennsylvania. Based on joint work with Paul Rosenbaum

Dylan Small Department of Statistics, Wharton School, University of Pennsylvania. Based on joint work with Paul Rosenbaum Instrumental variables and their sensitivity to unobserved biases Dylan Small Department of Statistics, Wharton School, University of Pennsylvania Based on joint work with Paul Rosenbaum Overview Instrumental

More information

Estimating Harrell s Optimism on Predictive Indices Using Bootstrap Samples

Estimating Harrell s Optimism on Predictive Indices Using Bootstrap Samples Estimating Harrell s Optimism on Predictive Indices Using Bootstrap Samples Irena Stijacic Cenzer, University of California at San Francisco, San Francisco, CA Yinghui Miao, NCIRE, San Francisco, CA Katharine

More information