Data Analysis in the Health Sciences. Final Exam 2010 EPIB 621

Size: px
Start display at page:

Download "Data Analysis in the Health Sciences. Final Exam 2010 EPIB 621"

Transcription

1 Data Analysis in the Health Sciences Final Exam 2010 EPIB 621 Student s Name: Student s Number: INSTRUCTIONS This examination consists of 8 questions on 17 pages, including this one. Tables of the normal distribution are provided on the last page. Please write your answers (neatly) in the spaces provided. Fully explain all of your answers. Each question is worth 10 points, for a total of Total (out of 80)

2 2 1. A new lipid drug is claimed to both increase HDL cholesterol and decrease LDL cholesterol (so it increases good cholesterol while lowering bad cholesterol). Suppose that a 10 milligram per deciliter (mg/dl) change is considered clinically important for HDL, while a 0.4 gram per liter (g/l) change is considered as a clinically important change for LDL. A clinical trial is carried out, comparing this new drug to a placebo control. The main results are given in the table below: New Drug Placebo Sample size Mean increase in HDL (mg/dl) 12 3 SD of increase in HDL (mg/dl) 5 4 Mean reduction in LDL (g/l) SD of reduction in LDL (g/l) (a) Calculate a 95% confidence interval for the mean difference in HDL increase between for the two treatment groups.

3 3 (b) Calculate a 95% confidence interval for the mean difference in LDL decrease between for the two treatment groups. (c) Considering your answers in parts (a) and (b) above, from a clinical viewpoint, what is your overall conclusion concerning the claim that the new drug both increases HDL cholesterol and decreases LDL cholesterol?

4 4 2. Consider again the data from LDL cholesterol from the table given in question #1. Suppose that a simple linear regression model is estimated using these same data, that is, the model Y = α + β X is fitted, where Y is the decrease in LDL cholesterol in g/l, and X is a dummy variable representing the treatment group, with X = 1 representing the new drug group, and X = 0 representing the placebo group. (a) State the value of ˆα, that is, the estimate of α in the above equation, when the regression is estimated from the data from question #1. Provide an approximate 95% confidence interval for α. (b) Is it possible for you to state the value of ˆβ, that is, the estimate of β in the above equation, when the regression is estimated from the data from question #1? If so, provide your estimate, and if not, state what information is missing.

5 5 3. Cerebral cortex thickness changes as children age. Cross-sectional data are collected for a group of 200 children, each child providing their age in months (age) and cortical thickness in millimeters (cort). Background information suggests that a polynomial model of degree three may fit the data well. Therefore, the following model is fit with results given below: cort = α + β 1 age + β 2 age 2 + β 3 age 3 > summary(cort) Min. 1st Qu. Median Mean 3rd Qu. Max > summary(age) Min. 1st Qu. Median Mean 3rd Qu. Max > summary(lm(cort ~ age + age2 + age3) ) Call: lm(formula = cort ~ age + age2 + age3) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) 1.409e e e-14 *** age 1.169e e age e e age e e Signif. codes: 0 *** ** 0.01 * Residual standard error: on 196 degrees of freedom Multiple R-Squared: , Adjusted R-squared: F-statistic: on 3 and 196 DF, p-value: < 2.2e-16 > confint(lm(cort ~ age + age2 + age3)) 2.5 % 97.5 % (Intercept) e e+00 age e e-02 age e e-03 age e e-05

6 6 The scatter plot between age and cort is: (a) Note that the scatter plot seems to show increasing values of cortical thickness with increasing age, and yet none of the beta coefficients in the model are statistically significant, with the smallest p-value being p = 0.213, and all confidence intervals including the null value of 0. Can you explain the most likely reason why this occurred?

7 (b) Provide a very rough guess as to what the beta coefficient for age might be if both age2 and age3 were dropped from the model. Explain how you derived this guess. 7

8 8 4. The Food and Drug Administration (FDA) in the United States recently issued a warning concerning a type of asthma medication. In particular, longacting beta agonists (LABA) might increase the risk of death if used in the absence of other medications, such as corticosteroids. Suppose that a study wishes to investigate this issue further, and so follows 10,000 subjects with asthma for one year, some of whom are LABA users, others not. The following logistic regression equation is estimated logit(y ) = α + β 1 age + β 2 LABA + β 3 severity + β 4 age LABA where the outcome Y = 1 indicates a death and Y = 0 indicates no death for a subject, age is dichotomized at 18 (so is a dummy variable, with 0 = child, 1 = adult), LABA is a dummy variable for treatment (1 = treatment with a LABA, 0 = non-laba treatment), severity is a measure of asthma severity on a 0 to 10 scale, and age LABA is an interaction term formed by multiplying the age variable by the LABA variable. The following results are observed: > summary(glm(y ~ age + LABA + severity + age_laba, family = binomial)) Call: glm(formula = Y ~ age + LABA + severity + age_laba, family = binomial) Deviance Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error z value Pr(> z ) (Intercept) age e-06 *** LABA severity e-06 *** age_laba * --- Signif. codes: 0 *** ** 0.01 * (Dispersion parameter for binomial family taken to be 1) Null deviance: on 9999 degrees of freedom Residual deviance: on 9995 degrees of freedom AIC: Number of Fisher Scoring iterations: 4

9 9 > confint(glm(y ~ age + LABA + severity + age_laba, family = binomial)) 2.5 % 97.5 % (Intercept) age LABA severity age_laba (a) What is the odds ratio for LABA use within children? (b) What is the odds ratio for LABA use within adults?

10 10 5. A researcher wishes to estimate the effects of variable X on a dichotomous outcome Y, while adjusting for possible confounding effects from variable Z. She calculates the following table of descriptive statistics: Variable Mean Standard deviation X 0 20 Y Z 0 30 and runs a series of regression models using the bic.glm command: > output<-bic.glm( y ~ x + z, data = a, glm.family = "binomial", OR = ) > summary(output) Call: bic.glm.formula(f = y ~ x + z, data = a, glm.family = "binomial", OR = 1e+06) 4 models were selected Best 4 models (cumulative posterior probability = 1 ): p!=0 EV SD model 1 model 2 model 3 model 4 Intercept e e e e-01 x e e-02. z e e-02.. nvar BIC e e e e+02 post prob > output$mle [,1] [,2] [,3] [1,] [2,] [3,] [4,] > output$se [,1] [,2] [,3] [1,] [2,] [3,] [4,] > output$probne0 [1] > output$label [1] "z" "xz" "x" "NULL" > output$postprob [1]

11 11 (a) Do you think there was any confounding between X and Z? Explain why or why not. (b) Provide a point estimate and 95% confidence interval for the odds ratio associated with the effect of X on Y. (c) Do you think it is reasonable to conclude there is no effect of X on Y? Explain why or why not.

12 12 6. A logistic regression model is run, and a Hosmer-Lemeshow plot is created. The sample size was n = 1000, and the plot was created by forming 20 groups, each of sample size 50. The plot is given below: (a) Overall, do you think the model fits the data well?

13 (b) Taking into account the manner in which the Hosmer-Lemeshow plot was constructed, consider a predicted probability of 0.5 on the x-axis. On average, how far would you expect the observed value (on the y-axis) to be from 0.5 for these data, for a good fitting model? 13

14 14 7. A study of skin cancer rates is conducted across Canada. Data on 50,000 randomly selected subjects are surveyed within each province, and the numbers of subjects with skin cancer are counted. Since it is plausible that skin cancer rates may vary from province to province, a hierarchical model is run. The model and results are given below: model { for (i in 1:10) { x[i] ~ dbin(p[i],n[i]) logit(p[i]) <- z[i] z[i] ~ dnorm(mu,tau) } mu ~ dnorm(0,0.001) sigma ~ dunif(0.001, 10) tau <- 1/(sigma*sigma) y ~ dnorm(mu, tau) w <- exp(y)/(1+exp(y)) pdiff <- p[10] - p[6] pstep <- step(p[10] - p[6]) } # Data list(n=c(50000, 50000, 50000, 50000, 50000, 50000, 50000, 50000, 50000, 50000), x=c(458, 448, 466, 497, 470, 333, 226, 489, 261, 456)) # n = sample size within each province # x = number of skin cancer cases within each province # # Order of provinces: # [1] = Newfoundland # [2] = Prince Edward Island # [3] = Nova Scotia # [4] = New Brunswick # [5] = Quebec # [6] = Ontario # [7] = Manitoba # [8] = Saskatchewan # [9] = Alberta # [10] = British Columbia # Results

15 15 node mean sd 2.5% median 97.5% start sample mu p[1] E p[2] E p[3] E p[4] E p[5] E p[6] E p[7] E p[8] E p[9] E p[10] E pdiff E pstep sigma w y (a) From the above results, what is your best estimate of the overall skin cancer rate across the 10 provinces, with 95% credible interval? (b) Do you think Ontario has a different skin cancer rate compared to British Columbia? Explain your answer.

16 16 8. A researcher is trying to estimate the effect of dosage (X) of a blood pressure lowering drug, measured in milligrams (mg) on blood pressure change (Y ), measured in mm Hg. He gathers n = 50 subjects, and gives each a different dosage of the drug (mean dose = 20 mg, standard deviation of the dose is 3 mg), and measures their blood pressure changes. He then estimates the following linear regression equation: Y = X He later discovers that the scale he was using to measure dose was not very accurate, providing an unbiased measurement, but with measurement error standard deviation of 1 mg. After considering measurement error in X, what is your adjusted estimate of the slope of the linear regression model that predicts Y from X?

17 17 Normal Density Table Table of standard normal distribution probabilities. Each number in the table provides the probability that a standard normal random variable will be less than the number indicated.

NORTH SOUTH UNIVERSITY TUTORIAL 2

NORTH SOUTH UNIVERSITY TUTORIAL 2 NORTH SOUTH UNIVERSITY TUTORIAL 2 AHMED HOSSAIN,PhD Data Management and Analysis AHMED HOSSAIN,PhD - Data Management and Analysis 1 Correlation Analysis INTRODUCTION In correlation analysis, we estimate

More information

Self-assessment test of prerequisite knowledge for Biostatistics III in R

Self-assessment test of prerequisite knowledge for Biostatistics III in R Self-assessment test of prerequisite knowledge for Biostatistics III in R Mark Clements, Karolinska Institutet 2017-10-31 Participants in the course Biostatistics III are expected to have prerequisite

More information

Stats for Clinical Trials, Math 150 Jo Hardin Logistic Regression example: interaction & stepwise regression

Stats for Clinical Trials, Math 150 Jo Hardin Logistic Regression example: interaction & stepwise regression Stats for Clinical Trials, Math 150 Jo Hardin Logistic Regression example: interaction & stepwise regression Interaction Consider data is from the Heart and Estrogen/Progestin Study (HERS), a clinical

More information

Poisson regression. Dae-Jin Lee Basque Center for Applied Mathematics.

Poisson regression. Dae-Jin Lee Basque Center for Applied Mathematics. Dae-Jin Lee dlee@bcamath.org Basque Center for Applied Mathematics http://idaejin.github.io/bcam-courses/ D.-J. Lee (BCAM) Intro to GLM s with R GitHub: idaejin 1/40 Modeling count data Introduction Response

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

Notes for laboratory session 2

Notes for laboratory session 2 Notes for laboratory session 2 Preliminaries Consider the ordinary least-squares (OLS) regression of alcohol (alcohol) and plasma retinol (retplasm). We do this with STATA as follows:. reg retplasm alcohol

More information

Logistic regression. Department of Statistics, University of South Carolina. Stat 205: Elementary Statistics for the Biological and Life Sciences

Logistic regression. Department of Statistics, University of South Carolina. Stat 205: Elementary Statistics for the Biological and Life Sciences Logistic regression Department of Statistics, University of South Carolina Stat 205: Elementary Statistics for the Biological and Life Sciences 1 / 1 Logistic regression: pp. 538 542 Consider Y to be binary

More information

2.75: 84% 2.5: 80% 2.25: 78% 2: 74% 1.75: 70% 1.5: 66% 1.25: 64% 1.0: 60% 0.5: 50% 0.25: 25% 0: 0%

2.75: 84% 2.5: 80% 2.25: 78% 2: 74% 1.75: 70% 1.5: 66% 1.25: 64% 1.0: 60% 0.5: 50% 0.25: 25% 0: 0% Capstone Test (will consist of FOUR quizzes and the FINAL test grade will be an average of the four quizzes). Capstone #1: Review of Chapters 1-3 Capstone #2: Review of Chapter 4 Capstone #3: Review of

More information

OxyContin in the 90 days prior to it being discontinued.

OxyContin in the 90 days prior to it being discontinued. Appendix 1 (as supplied by the authors): Supplementary data Provincial Drug Insurance program formulary listing status for OxyNeo by province Province Listing of OxyNeo BC Listed for patients covered by

More information

Regression models, R solution day7

Regression models, R solution day7 Regression models, R solution day7 Exercise 1 In this exercise, we shall look at the differences in vitamin D status for women in 4 European countries Read and prepare the data: vit

More information

STAT 503X Case Study 1: Restaurant Tipping

STAT 503X Case Study 1: Restaurant Tipping STAT 503X Case Study 1: Restaurant Tipping 1 Description Food server s tips in restaurants may be influenced by many factors including the nature of the restaurant, size of the party, table locations in

More information

Question 1(25= )

Question 1(25= ) MSG500 Final 20-0-2 Examiner: Rebecka Jörnsten, 060-49949 Remember: To pass this course you also have to hand in a final project to the examiner. Open book, open notes but no calculators or computers allowed.

More information

GPA vs. Hours of Sleep: A Simple Linear Regression Jacob Ushkurnis 12/16/2016

GPA vs. Hours of Sleep: A Simple Linear Regression Jacob Ushkurnis 12/16/2016 GPA vs. Hours of Sleep: A Simple Linear Regression Jacob Ushkurnis 12/16/2016 Introduction As a college student, life can sometimes get extremely busy and stressful when there is a lot of work to do. More

More information

Provincial Projections of Arthritis or Rheumatism, Special Report to the Canadian Rheumatology Association

Provincial Projections of Arthritis or Rheumatism, Special Report to the Canadian Rheumatology Association ARTHRITIS COMMUNITY RESEARCH & EVALUATION UNIT (ACREU) The Arthritis and Immune Disorder Research Centre Health Care Research Division University Health Network February, 2000 Provincial Projections of

More information

Chapter 1: Exploring Data

Chapter 1: Exploring Data Chapter 1: Exploring Data Key Vocabulary:! individual! variable! frequency table! relative frequency table! distribution! pie chart! bar graph! two-way table! marginal distributions! conditional distributions!

More information

Simple Linear Regression the model, estimation and testing

Simple Linear Regression the model, estimation and testing Simple Linear Regression the model, estimation and testing Lecture No. 05 Example 1 A production manager has compared the dexterity test scores of five assembly-line employees with their hourly productivity.

More information

Optimizing implementation of fecal immunochemical testing in Ontario: A randomized controlled trial

Optimizing implementation of fecal immunochemical testing in Ontario: A randomized controlled trial Optimizing implementation of fecal immunochemical testing in Ontario: A randomized controlled trial J. Tinmouth, N.N. Baxter, L.F. Paszat, E. Randell, M. Serenity, R. Sutradhar, L. Rabeneck Conflicts of

More information

Business Statistics Probability

Business Statistics Probability Business Statistics The following was provided by Dr. Suzanne Delaney, and is a comprehensive review of Business Statistics. The workshop instructor will provide relevant examples during the Skills Assessment

More information

Appendix B Fracture incidence and costs by province

Appendix B Fracture incidence and costs by province 1 Appendix B Fracture incidence and costs by province Comprehensive, accurate fracture numbers and costs are very important data that could help with prioritization and allocation of health care resources.

More information

STP 231 Example FINAL

STP 231 Example FINAL STP 231 Example FINAL Instructor: Ela Jackiewicz Honor Statement: I have neither given nor received information regarding this exam, and I will not do so until all exams have been graded and returned.

More information

Statistical reports Regression, 2010

Statistical reports Regression, 2010 Statistical reports Regression, 2010 Niels Richard Hansen June 10, 2010 This document gives some guidelines on how to write a report on a statistical analysis. The document is organized into sections that

More information

Age (continuous) Gender (0=Male, 1=Female) SES (1=Low, 2=Medium, 3=High) Prior Victimization (0= Not Victimized, 1=Victimized)

Age (continuous) Gender (0=Male, 1=Female) SES (1=Low, 2=Medium, 3=High) Prior Victimization (0= Not Victimized, 1=Victimized) Criminal Justice Doctoral Comprehensive Exam Statistics August 2016 There are two questions on this exam. Be sure to answer both questions in the 3 and half hours to complete this exam. Read the instructions

More information

Midterm STAT-UB.0003 Regression and Forecasting Models. I will not lie, cheat or steal to gain an academic advantage, or tolerate those who do.

Midterm STAT-UB.0003 Regression and Forecasting Models. I will not lie, cheat or steal to gain an academic advantage, or tolerate those who do. Midterm STAT-UB.0003 Regression and Forecasting Models The exam is closed book and notes, with the following exception: you are allowed to bring one letter-sized page of notes into the exam (front and

More information

Analysis of bivariate binomial data: Twin analysis

Analysis of bivariate binomial data: Twin analysis Analysis of bivariate binomial data: Twin analysis Klaus Holst & Thomas Scheike March 30, 2017 Overview When looking at bivariate binomial data with the aim of learning about the dependence that is present,

More information

Name: emergency please discuss this with the exam proctor. 6. Vanderbilt s academic honor code applies.

Name: emergency please discuss this with the exam proctor. 6. Vanderbilt s academic honor code applies. Name: Biostatistics 1 st year Comprehensive Examination: Applied in-class exam May 28 th, 2015: 9am to 1pm Instructions: 1. There are seven questions and 12 pages. 2. Read each question carefully. Answer

More information

A Handbook of Statistical Analyses Using R. Brian S. Everitt and Torsten Hothorn

A Handbook of Statistical Analyses Using R. Brian S. Everitt and Torsten Hothorn A Handbook of Statistical Analyses Using R Brian S. Everitt and Torsten Hothorn CHAPTER 11 Analysing Longitudinal Data II Generalised Estimation Equations: Treating Respiratory Illness and Epileptic Seizures

More information

Math 215, Lab 7: 5/23/2007

Math 215, Lab 7: 5/23/2007 Math 215, Lab 7: 5/23/2007 (1) Parametric versus Nonparamteric Bootstrap. Parametric Bootstrap: (Davison and Hinkley, 1997) The data below are 12 times between failures of airconditioning equipment in

More information

Normal Q Q. Residuals vs Fitted. Standardized residuals. Theoretical Quantiles. Fitted values. Scale Location 26. Residuals vs Leverage

Normal Q Q. Residuals vs Fitted. Standardized residuals. Theoretical Quantiles. Fitted values. Scale Location 26. Residuals vs Leverage Residuals 400 0 400 800 Residuals vs Fitted 26 42 29 Standardized residuals 2 0 1 2 3 Normal Q Q 26 42 29 360 400 440 2 1 0 1 2 Fitted values Theoretical Quantiles Standardized residuals 0.0 0.5 1.0 1.5

More information

Today. HW 1: due February 4, pm. Matched case-control studies

Today. HW 1: due February 4, pm. Matched case-control studies Today HW 1: due February 4, 11.59 pm. Matched case-control studies In the News: High water mark: the rise in sea levels may be accelerating Economist, Jan 17 Big Data for Health Policy 3:30-4:30 222 College

More information

Regression so far... Lecture 22 - Logistic Regression. Odds. Recap of what you should know how to do... At this point we have covered: Sta102 / BME102

Regression so far... Lecture 22 - Logistic Regression. Odds. Recap of what you should know how to do... At this point we have covered: Sta102 / BME102 Background Regression so far... Lecture 22 - Sta102 / BME102 Colin Rundel November 23, 2015 At this point we have covered: Simple linear regression Relationship between numerical response and a numerical

More information

Mohammad Hajizadeh McGill University PHO-Rounds: Epidemiology 15 August 2013

Mohammad Hajizadeh McGill University PHO-Rounds: Epidemiology 15 August 2013 Measuring Social Inequalities In Health Mohammad Hajizadeh McGill University PHO-Rounds: Epidemiology 15 August 2013 Outline Equity and equality Issues related to choosing inequality measures Inequality

More information

EXECUTIVE SUMMARY DATA AND PROBLEM

EXECUTIVE SUMMARY DATA AND PROBLEM EXECUTIVE SUMMARY Every morning, almost half of Americans start the day with a bowl of cereal, but choosing the right healthy breakfast is not always easy. Consumer Reports is therefore calculated by an

More information

Simple Linear Regression

Simple Linear Regression Simple Linear Regression Assoc. Prof Dr Sarimah Abdullah Unit of Biostatistics & Research Methodology School of Medical Sciences, Health Campus Universiti Sains Malaysia Regression Regression analysis

More information

Multiple Linear Regression Analysis

Multiple Linear Regression Analysis Revised July 2018 Multiple Linear Regression Analysis This set of notes shows how to use Stata in multiple regression analysis. It assumes that you have set Stata up on your computer (see the Getting Started

More information

Estimating the volume of Contraband Sales of Tobacco in Canada

Estimating the volume of Contraband Sales of Tobacco in Canada The Canadian Tobacco Market Place Estimating the volume of Contraband Sales of Tobacco in Canada Updated April 2010 Physicians for a Smoke-Free Canada 1226 A Wellington Street Ottawa, Ontario, K1Y 3A1

More information

Economic Burden of Musculoskeletal Diseases in Canada

Economic Burden of Musculoskeletal Diseases in Canada Economic Burden of Musculoskeletal Diseases in Canada Presented by Sylvie Desjardins, Policy Research Unit, Public Health Agency of Canada October 23 rd, 2006 1 Fact Sheet MSK has the higher prevalence

More information

3.2A Least-Squares Regression

3.2A Least-Squares Regression 3.2A Least-Squares Regression Linear (straight-line) relationships between two quantitative variables are pretty common and easy to understand. Our instinct when looking at a scatterplot of data is to

More information

bivariate analysis: The statistical analysis of the relationship between two variables.

bivariate analysis: The statistical analysis of the relationship between two variables. bivariate analysis: The statistical analysis of the relationship between two variables. cell frequency: The number of cases in a cell of a cross-tabulation (contingency table). chi-square (χ 2 ) test for

More information

Chapter 3 CORRELATION AND REGRESSION

Chapter 3 CORRELATION AND REGRESSION CORRELATION AND REGRESSION TOPIC SLIDE Linear Regression Defined 2 Regression Equation 3 The Slope or b 4 The Y-Intercept or a 5 What Value of the Y-Variable Should be Predicted When r = 0? 7 The Regression

More information

Correlation and regression

Correlation and regression PG Dip in High Intensity Psychological Interventions Correlation and regression Martin Bland Professor of Health Statistics University of York http://martinbland.co.uk/ Correlation Example: Muscle strength

More information

MMI 409 Spring 2009 Final Examination Gordon Bleil. 1. Is there a difference in depression as a function of group and drug?

MMI 409 Spring 2009 Final Examination Gordon Bleil. 1. Is there a difference in depression as a function of group and drug? MMI 409 Spring 2009 Final Examination Gordon Bleil Table of Contents Research Scenario and General Assumptions Questions for Dataset (Questions are hyperlinked to detailed answers) 1. Is there a difference

More information

Statistical Reasoning in Public Health 2009 Biostatistics 612, Homework #2

Statistical Reasoning in Public Health 2009 Biostatistics 612, Homework #2 Statistical Reasoning in Public Health 2009 Biostatistics 612, Homework #2 1. Suppose it is the year 1985 and you are doing research on the differences in wages earned by men and women in the U.S. workforce.

More information

1. Objective: analyzing CD4 counts data using GEE marginal model and random effects model. Demonstrate the analysis using SAS and STATA.

1. Objective: analyzing CD4 counts data using GEE marginal model and random effects model. Demonstrate the analysis using SAS and STATA. LDA lab Feb, 6 th, 2002 1 1. Objective: analyzing CD4 counts data using GEE marginal model and random effects model. Demonstrate the analysis using SAS and STATA. 2. Scientific question: estimate the average

More information

# Claims with disp.fee > 0. Average cost submitted by Rx**

# Claims with disp.fee > 0. Average cost submitted by Rx** QUEBEC SUMMARY REPORT QC Amount submitted (total) # Claims with disp.fee > 0 Average cost submitted by Rx** Average quantity per Rx Unit DIN cost submitted ALL PHARMACIES $540,947,952. 10,749,790 48.76

More information

Describe what is meant by a placebo Contrast the double-blind procedure with the single-blind procedure Review the structure for organizing a memo

Describe what is meant by a placebo Contrast the double-blind procedure with the single-blind procedure Review the structure for organizing a memo Business Statistics The following was provided by Dr. Suzanne Delaney, and is a comprehensive review of Business Statistics. The workshop instructor will provide relevant examples during the Skills Assessment

More information

West Nile virus and Other Mosquito borne Diseases National Surveillance Report English Edition

West Nile virus and Other Mosquito borne Diseases National Surveillance Report English Edition and Other Mosquito borne Diseases National Surveillance Report English Edition July to July 8, 17 (Week 7) West Nile Virus Canada Humans As of surveillance week 7, ending on July 8, 17, the Public Health

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

Today: Binomial response variable with an explanatory variable on an ordinal (rank) scale.

Today: Binomial response variable with an explanatory variable on an ordinal (rank) scale. Model Based Statistics in Biology. Part V. The Generalized Linear Model. Single Explanatory Variable on an Ordinal Scale ReCap. Part I (Chapters 1,2,3,4), Part II (Ch 5, 6, 7) ReCap Part III (Ch 9, 10,

More information

Unit 1 Exploring and Understanding Data

Unit 1 Exploring and Understanding Data Unit 1 Exploring and Understanding Data Area Principle Bar Chart Boxplot Conditional Distribution Dotplot Empirical Rule Five Number Summary Frequency Distribution Frequency Polygon Histogram Interquartile

More information

Midterm Exam ANSWERS Categorical Data Analysis, CHL5407H

Midterm Exam ANSWERS Categorical Data Analysis, CHL5407H Midterm Exam ANSWERS Categorical Data Analysis, CHL5407H 1. Data from a survey of women s attitudes towards mammography are provided in Table 1. Women were classified by their experience with mammography

More information

MULTIPLE LINEAR REGRESSION 24.1 INTRODUCTION AND OBJECTIVES OBJECTIVES

MULTIPLE LINEAR REGRESSION 24.1 INTRODUCTION AND OBJECTIVES OBJECTIVES 24 MULTIPLE LINEAR REGRESSION 24.1 INTRODUCTION AND OBJECTIVES In the previous chapter, simple linear regression was used when you have one independent variable and one dependent variable. This chapter

More information

m 11 m.1 > m 12 m.2 risk for smokers risk for nonsmokers

m 11 m.1 > m 12 m.2 risk for smokers risk for nonsmokers SOCY5061 RELATIVE RISKS, RELATIVE ODDS, LOGISTIC REGRESSION RELATIVE RISKS: Suppose we are interested in the association between lung cancer and smoking. Consider the following table for the whole population:

More information

GENERALIZED ESTIMATING EQUATIONS FOR LONGITUDINAL DATA. Anti-Epileptic Drug Trial Timeline. Exploratory Data Analysis. Exploratory Data Analysis

GENERALIZED ESTIMATING EQUATIONS FOR LONGITUDINAL DATA. Anti-Epileptic Drug Trial Timeline. Exploratory Data Analysis. Exploratory Data Analysis GENERALIZED ESTIMATING EQUATIONS FOR LONGITUDINAL DATA 1 Example: Clinical Trial of an Anti-Epileptic Drug 59 epileptic patients randomized to progabide or placebo (Leppik et al., 1987) (Described in Fitzmaurice

More information

Week 8 Hour 1: More on polynomial fits. The AIC. Hour 2: Dummy Variables what are they? An NHL Example. Hour 3: Interactions. The stepwise method.

Week 8 Hour 1: More on polynomial fits. The AIC. Hour 2: Dummy Variables what are they? An NHL Example. Hour 3: Interactions. The stepwise method. Week 8 Hour 1: More on polynomial fits. The AIC Hour 2: Dummy Variables what are they? An NHL Example Hour 3: Interactions. The stepwise method. Stat 302 Notes. Week 8, Hour 1, Page 1 / 34 Human growth

More information

Use the above variables and any you might need to construct to specify the MODEL A/C comparisons you would use to ask the following questions.

Use the above variables and any you might need to construct to specify the MODEL A/C comparisons you would use to ask the following questions. Fall, 2002 Grad Stats Final Exam There are four questions on this exam, A through D, and each question has multiple sub-questions. Unless otherwise indicated, each sub-question is worth 3 points. Question

More information

Surgical Outcomes: A synopsis & commentary on the Cardiac Care Quality Indicators Report. May 2018

Surgical Outcomes: A synopsis & commentary on the Cardiac Care Quality Indicators Report. May 2018 Surgical Outcomes: A synopsis & commentary on the Cardiac Care Quality Indicators Report May 2018 Prepared by the Canadian Cardiovascular Society (CCS)/Canadian Society of Cardiac Surgeons (CSCS) Cardiac

More information

Critical Care Medicine. Critical Care Medicine Profile

Critical Care Medicine. Critical Care Medicine Profile Updated March 2018 Click on any of the contents below to navigate to the slide. Please click the home icon located at the top right of each slide to return to the table of contents slide. TABLE OF CONTENTS

More information

5 To Invest or not to Invest? That is the Question.

5 To Invest or not to Invest? That is the Question. 5 To Invest or not to Invest? That is the Question. Before starting this lab, you should be familiar with these terms: response y (or dependent) and explanatory x (or independent) variables; slope and

More information

Chapter 3: Examining Relationships

Chapter 3: Examining Relationships Name Date Per Key Vocabulary: response variable explanatory variable independent variable dependent variable scatterplot positive association negative association linear correlation r-value regression

More information

PROFILE AND PROJECTION OF DRUG OFFENCES IN CANADA. By Kwing Hung, Ph.D. Nathalie L. Quann, M.A.

PROFILE AND PROJECTION OF DRUG OFFENCES IN CANADA. By Kwing Hung, Ph.D. Nathalie L. Quann, M.A. PROFILE AND PROJECTION OF DRUG OFFENCES IN CANADA By Kwing Hung, Ph.D. Nathalie L. Quann, M.A. Research and Statistics Division Department of Justice Canada February 2000 Highlights From 1977 to 1998,

More information

2017 JOB MARKET & EMPLOYMENT SURVEY EXECUTIVE SUMMARY

2017 JOB MARKET & EMPLOYMENT SURVEY EXECUTIVE SUMMARY 2017 JOB MARKET & EMPLOYMENT SURVEY EXECUTIVE SUMMARY Pay & Employment Rates The Canadian Dental Hygienists Association (CDHA) retained Framework Partners Inc. to conduct the 2017 Job Market and Employment

More information

SUMMER 2011 RE-EXAM PSYF11STAT - STATISTIK

SUMMER 2011 RE-EXAM PSYF11STAT - STATISTIK SUMMER 011 RE-EXAM PSYF11STAT - STATISTIK Full Name: Årskortnummer: Date: This exam is made up of three parts: Part 1 includes 30 multiple choice questions; Part includes 10 matching questions; and Part

More information

CRITERIA FOR USE. A GRAPHICAL EXPLANATION OF BI-VARIATE (2 VARIABLE) REGRESSION ANALYSISSys

CRITERIA FOR USE. A GRAPHICAL EXPLANATION OF BI-VARIATE (2 VARIABLE) REGRESSION ANALYSISSys Multiple Regression Analysis 1 CRITERIA FOR USE Multiple regression analysis is used to test the effects of n independent (predictor) variables on a single dependent (criterion) variable. Regression tests

More information

STATISTICS INFORMED DECISIONS USING DATA

STATISTICS INFORMED DECISIONS USING DATA STATISTICS INFORMED DECISIONS USING DATA Fifth Edition Chapter 4 Describing the Relation between Two Variables 4.1 Scatter Diagrams and Correlation Learning Objectives 1. Draw and interpret scatter diagrams

More information

Macrolides in community-acquired pneumonia and otitis media Canadian Coordinating Office for Health Technology Assessment

Macrolides in community-acquired pneumonia and otitis media Canadian Coordinating Office for Health Technology Assessment Macrolides in community-acquired pneumonia and otitis media Canadian Coordinating Office for Health Technology Assessment Record Status This is a critical abstract of an economic evaluation that meets

More information

12.1 Inference for Linear Regression. Introduction

12.1 Inference for Linear Regression. Introduction 12.1 Inference for Linear Regression vocab examples Introduction Many people believe that students learn better if they sit closer to the front of the classroom. Does sitting closer cause higher achievement,

More information

SCHOOL OF MATHEMATICS AND STATISTICS

SCHOOL OF MATHEMATICS AND STATISTICS Data provided: Tables of distributions MAS603 SCHOOL OF MATHEMATICS AND STATISTICS Further Clinical Trials Spring Semester 014 015 hours Candidates may bring to the examination a calculator which conforms

More information

LAMA Products for the Treatment of COPD

LAMA Products for the Treatment of COPD FINAL REPORT LAMA Products for the Treatment of COPD Pharmacoepidemiology Unit: Censored Final Report Tara Gomes, Andrea Gershon, Matthew Stanbrook, Ximena Camacho, Diana Martins, Samantha Singh, Zhan

More information

Missing data. Patrick Breheny. April 23. Introduction Missing response data Missing covariate data

Missing data. Patrick Breheny. April 23. Introduction Missing response data Missing covariate data Missing data Patrick Breheny April 3 Patrick Breheny BST 71: Bayesian Modeling in Biostatistics 1/39 Our final topic for the semester is missing data Missing data is very common in practice, and can occur

More information

Statistics: A Brief Overview Part I. Katherine Shaver, M.S. Biostatistician Carilion Clinic

Statistics: A Brief Overview Part I. Katherine Shaver, M.S. Biostatistician Carilion Clinic Statistics: A Brief Overview Part I Katherine Shaver, M.S. Biostatistician Carilion Clinic Statistics: A Brief Overview Course Objectives Upon completion of the course, you will be able to: Distinguish

More information

Review and Wrap-up! ESP 178 Applied Research Methods Calvin Thigpen 3/14/17 Adapted from presentation by Prof. Susan Handy

Review and Wrap-up! ESP 178 Applied Research Methods Calvin Thigpen 3/14/17 Adapted from presentation by Prof. Susan Handy Review and Wrap-up! ESP 178 Applied Research Methods Calvin Thigpen 3/14/17 Adapted from presentation by Prof. Susan Handy Final Proposals Read instructions carefully! Check Canvas for our comments on

More information

CHAPTER TWO REGRESSION

CHAPTER TWO REGRESSION CHAPTER TWO REGRESSION 2.0 Introduction The second chapter, Regression analysis is an extension of correlation. The aim of the discussion of exercises is to enhance students capability to assess the effect

More information

Sociology Exam 3 Answer Key [Draft] May 9, 201 3

Sociology Exam 3 Answer Key [Draft] May 9, 201 3 Sociology 63993 Exam 3 Answer Key [Draft] May 9, 201 3 I. True-False. (20 points) Indicate whether the following statements are true or false. If false, briefly explain why. 1. Bivariate regressions are

More information

Math 261 Exam I Spring Name:

Math 261 Exam I Spring Name: Math 261 Exam I Spring 2008 Name: Instructions: Write your answers clearly on the exam paper. Show work to receive partial credit. Use the back of the page if you need more space but please note that you

More information

IAPT: Regression. Regression analyses

IAPT: Regression. Regression analyses Regression analyses IAPT: Regression Regression is the rather strange name given to a set of methods for predicting one variable from another. The data shown in Table 1 and come from a student project

More information

Cervical Cancer and Pap Test Utilisation in Manitoba

Cervical Cancer and Pap Test Utilisation in Manitoba Cervical Cancer and Pap Test Utilisation in Manitoba 1970-1999 Alain Demers Marion Harrison Grace Musto Kathleen Decker Robert Lotocki The Department of Epidemiology and Cancer Registry and the Manitoba

More information

BAM Monitor Performance. Seasonal and Geographic Variation in NC

BAM Monitor Performance. Seasonal and Geographic Variation in NC BAM Monitor Performance Seasonal and Geographic Variation in NC 2009-10 2 Presenter Wayne Cornelius 3 Introduction Unsuccessful ARM tests in 2007 and 2009, using a configuration of R&P TEOM monitor. Acquired

More information

ADHD and Education Survey March The Centre for ADHD Awareness, Canada

ADHD and Education Survey March The Centre for ADHD Awareness, Canada ADHD and Education Survey March 2018 The Centre for ADHD Awareness, Canada ADHD and Education Survey Overview Intro CADDAC s last survey on these issues occurred in 2012 CADDAC has continued to receive

More information

Waiting Your Turn. Wait Times for Health Care in Canada, 2018 Report. by Bacchus Barua and David Jacques. with Antonia Collyer

Waiting Your Turn. Wait Times for Health Care in Canada, 2018 Report. by Bacchus Barua and David Jacques. with Antonia Collyer Waiting Your Turn Wait Times for Health Care in Canada, 2018 Report by Bacchus Barua and David Jacques with Antonia Collyer 2018 Fraser Institute Waiting Your Turn Wait Times for Health Care in Canada,

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

STATISTICAL METHODS FOR DIAGNOSTIC TESTING: AN ILLUSTRATION USING A NEW METHOD FOR CANCER DETECTION XIN SUN. PhD, Kansas State University, 2012

STATISTICAL METHODS FOR DIAGNOSTIC TESTING: AN ILLUSTRATION USING A NEW METHOD FOR CANCER DETECTION XIN SUN. PhD, Kansas State University, 2012 STATISTICAL METHODS FOR DIAGNOSTIC TESTING: AN ILLUSTRATION USING A NEW METHOD FOR CANCER DETECTION by XIN SUN PhD, Kansas State University, 2012 A THESIS Submitted in partial fulfillment of the requirements

More information

Today Retrospective analysis of binomial response across two levels of a single factor.

Today Retrospective analysis of binomial response across two levels of a single factor. Model Based Statistics in Biology. Part V. The Generalized Linear Model. Chapter 18.3 Single Factor. Retrospective Analysis ReCap. Part I (Chapters 1,2,3,4), Part II (Ch 5, 6, 7) ReCap Part III (Ch 9,

More information

Modeling Binary outcome

Modeling Binary outcome Statistics April 4, 2013 Debdeep Pati Modeling Binary outcome Test of hypothesis 1. Is the effect observed statistically significant or attributable to chance? 2. Three types of hypothesis: a) tests of

More information

Demand for Ocular Tissue in Canada - Final Report

Demand for Ocular Tissue in Canada - Final Report Demand for Ocular Tissue in Canada - Final Report January 2010 Table of Contents Executive Summary... 3 Background... 4 Purpose... 4 Overview... 4 Limitations... 4 Waiting Lists for Cornea Transplants...

More information

An Introduction to Using WinBUGS for Cost-Effectiveness Analyses in Health Economics

An Introduction to Using WinBUGS for Cost-Effectiveness Analyses in Health Economics Meta-Analyses and Mixed Treatment Comparisons Slide 1 An Introduction to Using WinBUGS for Cost-Effectiveness Analyses in Health Economics Dr. Christian Asseburg Centre for Health Economics Part 2 Meta-Analyses

More information

Regression Including the Interaction Between Quantitative Variables

Regression Including the Interaction Between Quantitative Variables Regression Including the Interaction Between Quantitative Variables The purpose of the study was to examine the inter-relationships among social skills, the complexity of the social situation, and performance

More information

Still important ideas

Still important ideas Readings: OpenStax - Chapters 1 13 & Appendix D & E (online) Plous Chapters 17 & 18 - Chapter 17: Social Influences - Chapter 18: Group Judgments and Decisions Still important ideas Contrast the measurement

More information

vaccination in Canada Bernard Duval, md, mph, frcpc Institut National de Santé Publique du Québec Québec, Canada Sevilla,

vaccination in Canada Bernard Duval, md, mph, frcpc Institut National de Santé Publique du Québec Québec, Canada Sevilla, Follow-up of hepatitis B vaccination in Canada Bernard Duval, md, mph, frcpc Institut National de Santé Publique du Québec Québec, Canada Sevilla, 2004-03 03-11 HB in Canada Low endemicity: HBsAg+ : 0.5%

More information

Waiting Your Turn Wait Times for Health Care in Canada, 2017 Report

Waiting Your Turn Wait Times for Health Care in Canada, 2017 Report 2017 Fraser Institute Waiting Your Turn Wait Times for Health Care in Canada, 2017 Report by Bacchus Barua Barua Waiting Your Turn: 2017 Report i Contents Executive summary / iii Findings / 1 Method /

More information

Understandable Statistics

Understandable Statistics Understandable Statistics correlated to the Advanced Placement Program Course Description for Statistics Prepared for Alabama CC2 6/2003 2003 Understandable Statistics 2003 correlated to the Advanced Placement

More information

Survey research (Lecture 1) Summary & Conclusion. Lecture 10 Survey Research & Design in Psychology James Neill, 2015 Creative Commons Attribution 4.

Survey research (Lecture 1) Summary & Conclusion. Lecture 10 Survey Research & Design in Psychology James Neill, 2015 Creative Commons Attribution 4. Summary & Conclusion Lecture 10 Survey Research & Design in Psychology James Neill, 2015 Creative Commons Attribution 4.0 Overview 1. Survey research 2. Survey design 3. Descriptives & graphing 4. Correlation

More information

Survey research (Lecture 1)

Survey research (Lecture 1) Summary & Conclusion Lecture 10 Survey Research & Design in Psychology James Neill, 2015 Creative Commons Attribution 4.0 Overview 1. Survey research 2. Survey design 3. Descriptives & graphing 4. Correlation

More information

Vessel wall differences between middle cerebral artery and basilar artery. plaques on magnetic resonance imaging

Vessel wall differences between middle cerebral artery and basilar artery. plaques on magnetic resonance imaging Vessel wall differences between middle cerebral artery and basilar artery plaques on magnetic resonance imaging Peng-Peng Niu, MD 1 ; Yao Yu, MD 1 ; Hong-Wei Zhou, MD 2 ; Yang Liu, MD 2 ; Yun Luo, MD 1

More information

Recent Changes in Cervical Cancer Screening in Canada

Recent Changes in Cervical Cancer Screening in Canada Recent Changes in Cervical Cancer Screening in Canada Meg McLachlin, MD, FRCPC Program Head, Pathology Senior Medical Director, Diagnostic Services Recent Changes in Cervical Cancer Screening in Canada

More information

Readings: Textbook readings: OpenStax - Chapters 1 13 (emphasis on Chapter 12) Online readings: Appendix D, E & F

Readings: Textbook readings: OpenStax - Chapters 1 13 (emphasis on Chapter 12) Online readings: Appendix D, E & F Readings: Textbook readings: OpenStax - Chapters 1 13 (emphasis on Chapter 12) Online readings: Appendix D, E & F Plous Chapters 17 & 18 Chapter 17: Social Influences Chapter 18: Group Judgments and Decisions

More information

Poison Control Centres

Poison Control Centres Poison Control Centres Monica Durigon Field Epidemiologist Public Health Agency of Canada Joanne Stares Public Health Officer Public Health Agency of Canada Placement site: BC Centre for Disease Control

More information

11/18/2013. Correlational Research. Correlational Designs. Why Use a Correlational Design? CORRELATIONAL RESEARCH STUDIES

11/18/2013. Correlational Research. Correlational Designs. Why Use a Correlational Design? CORRELATIONAL RESEARCH STUDIES Correlational Research Correlational Designs Correlational research is used to describe the relationship between two or more naturally occurring variables. Is age related to political conservativism? Are

More information

AP Statistics Practice Test Ch. 3 and Previous

AP Statistics Practice Test Ch. 3 and Previous AP Statistics Practice Test Ch. 3 and Previous Name Date Use the following to answer questions 1 and 2: A researcher measures the height (in feet) and volume of usable lumber (in cubic feet) of 32 cherry

More information

WORKPLACE SMOKING BAN POLICY

WORKPLACE SMOKING BAN POLICY WORKPLACE SMOKING BAN POLICY Introduction: How to Use This Tool Having a smoking policy addresses the hazards of secondhand smoke to the health and well-being of your workforce. In most regions, it is

More information

Geriatric Medicine. Geriatric Medicine Profile

Geriatric Medicine. Geriatric Medicine Profile Updated August 2018 Click on any of the contents below to navigate to the slide. Please click the home icon located at the top right of each slide to return to the table of contents slide. TABLE OF CONTENTS

More information