Plan of the Session. Session I: Basic Methods of Meta-Analysis Short Introduction to R. Why Conduct a Meta-Analysis? What is a Meta-Analysis?

Size: px
Start display at page:

Download "Plan of the Session. Session I: Basic Methods of Meta-Analysis Short Introduction to R. Why Conduct a Meta-Analysis? What is a Meta-Analysis?"

Transcription

1 Session I: Basic Methods of Meta-Analysis Short Introduction to R James Carpenter 1, Ulrike Krahn 2,3, Gerta Rücker 4, Guido Schwarzer 4 1 London School of Hygiene and Tropical Medicine & MRC Clinical Trials Unit, London, UK 2 Institute of Medical Biostatistics, Epidemiology and Informatics, Mainz, Germany 3 Institute of Medical Informatics, Biometry and Epidemiology, Duisburg-Essen, Germany 4 Institute for Medical Biometry and Statistics, Freiburg, Germany sc@imbi.uni-freiburg.de IBC Short Course Florence, 6 July 2014 Plan of the Session At the end of this session the aim is that you should understand the basic principles of meta-analysis; how R works. The objectives are that you are able to: use the help system and read data into R; conduct a meta-analysis with binary outcomes; summarize the main result of a meta-analysis to a medical audience. 1 Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July What is a Meta-Analysis? Why Conduct a Meta-Analysis? See Egger and Smith (1997), BMJ Definitions: Term Meta : Implies occuring later, more comprehensive, new but related discipline which critically deals with original discipline Term Meta-Analysis : Statistically combining and analysing data from separate studies Term Systematic Review : Any type of review utilising strategies to avoid bias Meta-analysis: May or may not be part of a systematic review Medical Subject Heading (MeSH) in Medline Egger and Smith (1997), BMJ More objective appraisal of evidence which may lead to resolution of uncertainty and disagreement Reduce probability of false negative results and thus prevent undue delays in introduction of effective treatments into practice Heterogeneity between study results may be explored (and sometimes explained) Allows testing of a priori hypotheses regarding treatment effects in subgroups of patients Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July

2 What is R? General purpose statistical package ( Based on statistical programming language S ( S-PLUS) Almost 20 years old, actively developed and maintained Available for Windows, Linux, Unix, Mac OS Released under the GNU General Public License (GPL) version 2 (or any later version) Licence costs: 0e / 0$ R can be used in regulated clinical trial environments ( More than 5000 add-on packages available on CRAN ( Short introductions / reviews of add-on packages in The R Journal ( successor of R News Mailing lists: (R-help) R Used as an overgrown calculator > [1] 4 > [1] 3 > exp(1) [1] > x = 2. > x + x [1] 4.5 Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July R Working with vectors > 1: [1] > c(1:4, 6:) [1] > y = c(1,4,9,16) > sqrt(y) [1] > sqrt(y)[4] [1] 4 > y^2 # same result: y**2 R Calculate mean and standard deviance > x = 1: > sum(x) / length(x) [1] 5.5 > mean(x) [1] 5.5 > sqrt(sum((x-mean(x))^2)/(length(x)-1)) [1] > sd(x) [1] [1] Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July

3 R Missing values Example: Aggressive Non-Hodgkin Lymphoma NA: Not Available > x = c(1:5, NA) > mean(x) [1] NA > # Getting help: > help(mean) # Show documentation on R command mean >?mean # Show documentation on R command mean > help.start() # Show documentation in webbrowser > help("+") # Show help on arithmetic operator + >?"+" # Show help on arithmetic operator + > mean(x, na.rm=true) Greb et al. (2008), Cochrane Database Syst Rev 1, CD004024: Cochrane Review including 15 randomised controlled trials (RCTs) Adult patients with aggressive non-hodgkin lymphoma First line treatment with high-dose chemotherapy (HDCT) versus conventional chemotherapy Primary outcome: Overall survival (14 RCTs, 2444 patients) Secondary outcome: Complete response (14 RCTs, 21 patients) [1] 3 Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July 2014 Aggressive Non-Hodgkin Lymphoma Forestplot De Souza Gianni Gisselbrecht Haioun Intragumtornchai Kaiser Kluin Nelemans Martelli Martelli 2003 Milpied Rodriguez 2003 Santini Verdonck Vitolo Hazard Ratio Favours HDCT Favours control HR % CI [0.45; 1.89] [0.24; 1.11] [1.08; 1.93] [0.71; 1.30] [0.30; 1.36] [0.; 1.55] [0.72; 2.08] [0.29; 1.65] [0.59; 1.73] [0.40; 1.05] [0.68; 2.65] [0.48; 1.37] [0.73; 2.67] [0.82; 2.41] Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Meta-Analysis Calculate a Weighted Mean Weighted mean of estimated treatment effects in individual studies (Fleiss, 1993): Kk=1 w k ˆθ k ˆθ = Kk=1 w k Estimated treatment effect ˆθ k in study k (k = 1,..., K) Weight w k correspond to information of study k Methods of meta-analysis differ in definition of weights (especially fixed effect and random effects model) > args(weighted.mean) function (x, w,...) NULL > weighted.mean(1:2, c(0.2, 0.8)) [1] 1.8 Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July

4 Fixed effect model Inverse Variance Method Fixed effect model: ˆθ k = θ + ˆσ k ɛ k, ɛ k i.i.d. N(0, 1), k = 1,..., K (1) Maximum likelihood estimate under model (1) for given (ˆθ k, ˆσ k ): Kk=1 ˆθ k /ˆσ ˆθ 2 Kk=1 k w k ˆθ k F = Kk=1 = 1/ˆσ 2 Kk=1 w k k with weights w k = 1/ˆσ 2 k. Estimated variance of ˆθ F : Var (ˆθ F ) = (1-α) confidence interval for ˆθ F : 1 Kk=1 w k = 1 Kk=1 1/ˆσ 2 k ˆθ F ± z 1 α 2 S.E.(ˆθ F ) with S.E.(ˆθ F ) = Var(ˆθ F ) Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Fixed Effect Model Graphical Presentation True effect Odds ratio Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Aggressive Non-Hodgkin Lymphoma Overall Survival Hazard log(hr) SE(log(HR)) w k = 95%-CI Ratio (HR) (= ˆθ k ) (= ˆσ k ) 1/ˆσ 2 k De Souza Gianni Gisselbrecht Intragumtornchai Kaiser Kluin-Nelemans Martelli Martelli Milpied Rodriguez Santini Santini Verdonck Vitolo Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July R packages for meta-analysis on CRAN rmeta (Lumley, 2012) Fixed and random effects meta-analysis (Mantel-Haenszel, Peto, DerSimonian-Laird) metafor (Viechtbauer, 20) Tests for funnel plot asymmetry / Trim and fill method General linear (mixed-effects) model approach for meta-regression Multivariate meta-analysis meta (Schwarzer, 2007) Tests for funnel plot asymmetry / Trim and fill method Import data from RevMan 5 / Link to R package metafor mvmeta (Gasparrini, 2014) Multivariate meta-analysis and meta-regression on multiple outcomes metasens (Schwarzer et al., 2014; Carpenter et al., 2009) Advanced methods to model and adjust for bias in meta-analysis Add-on package to R package meta / replaces R package copas netmeta (Rücker et al., 2014) Network meta-analysis Add-on package to R package meta Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July

5 R package meta Function Comment metabin Meta-analysis of binary outcome data metacont Meta-analysis of continuous outcome data metagen Generic inverse variance meta-analysis metacor Meta-analysis of correlations metainc Meta-analysis of incidence rates metaprop Meta-analysis of single proportions read.rm5 Import RevMan 5 data files (csv-files with special format) metacr Meta-analysis of outcome data from Cochrane review forest Forest plot funnel Plot to assess funnel plot asymmetry metabias Test for funnel plot asymmetry trimfill Trim and fill method for meta-analysis metareg Meta-regression (wrapper function to R package metafor)... Cumulative meta-analysis / Influence analysis in meta-analysis Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Meta-Analysis of Overall Survival > os = read.csv("hd-os.txt", as.is=true) > library(meta) > m1 = metagen(loghr, seloghr, + sm="hr", data=os, studlab=study, + comb.random=false) > str(m1) List of 62 $ TE : num [1:14] $ sete : num [1:14] $ studlab : chr [1:14] "De Souza" "Gianni" "Gisselbrecht" "Haioun". $ w.fixed : num [1:14] $ w.random : num [1:14] $ TE.fixed : num $ sete.fixed : num $ lower.fixed : num $ upper.fixed : num $ zval.fixed : num Carpenter/Krahn/Rücker/Schwarzer $ pval.fixed : num Session I: Introduction to Meta-Analysis Florence, 6 July Meta-Analysis of Survival Data Print Function > class(m1) [1] "metagen" "meta" > m1 # Calls R function print.meta HR 95%-CI %W(fixed) De Souza 0.92 [0.4491; 1.89] 3.21 Gianni [0.2448; 1.73] 2.92 Gisselbrecht [1.0799; ] Haioun [0.7129; 1.22] Intragumtornchai [0.3003; 1.93] 2.91 Kaiser [0.33; ] Kluin-Nelemans 1.22 [0.7222; ] 5.94 Martelli [0.2854; ] 2.16 Martelli [0.5887; ] 5.72 Milpied [0.3960; ] 7.02 Rodriguez [0.6768; ] 3.57 Santini [0.48; ] 5.94 Verdonck [0.7349; ] 3.99 Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Meta-Analysis of Overall Survival Summary Function > summary(m1) # Calls summary.meta and print.summary.meta Number of studies combined: k=14 HR 95%-CI z p.value Fixed effect model [0.9187; ] Quantifying heterogeneity: tau^2 = ; H = 1.19 [1; 1.64]; I^2 = 29.9% [0%; 63%] Test of heterogeneity: Q d.f. p.value Details on meta-analytical method: - Inverse variance method Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July

6 Overall Survival Forestplot > forest(m1, hetstat=false) # Calls function forest.meta Example: Aggressive Non-Hodgkin Lymphoma TE sete Hazard Ratio HR 95% CI W(fixed) De Souza Gianni Gisselbrecht Haioun Intragumtornchai Kaiser Kluin Nelemans Martelli Martelli 2003 Milpied Rodriguez 2003 Santini Verdonck Vitolo [0.45; 1.89] [0.24; 1.11] [1.08; 1.93] [0.71; 1.30] [0.30; 1.36] [0.; 1.55] [0.72; 2.08] [0.29; 1.65] [0.59; 1.73] [0.40; 1.05] [0.68; 2.65] [0.48; 1.37] [0.73; 2.67] [0.82; 2.41] 3.2% 2.9% 19.5% 18.5% 2.9% 12.9% 5.9% 2.2% 5.7% 7.0% 3.6% 5.9% 4.0% 5.7% Greb et al. (2008), Cochrane Database Syst Rev 1, CD004024: Cochrane Review including 15 randomised controlled trials (RCTs) Adult patients with aggressive non-hodgkin lymphoma First line treatment with high-dose chemotherapy (HDCT) versus conventional chemotherapy Primary outcome: Overall survival (14 RCTs, 2444 patients) Secondary outcome: Complete response (14 RCTs, 21 patients) Fixed effect model 1.05 [0.92; 1.19] 0% Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Aggressive Non-Hodgkin Lymphoma Complete Response HDCT Control Events Total Events Total De Souza Gianni Gisselbrecht Intragumtornchai 23 9 Kaiser Kluin-Nelemans Martelli Martelli Milpied Rodriguez Santini Santini Verdonck 38 Vitolo Milpied Complete Response (CR) CR no CR HDCT 74 (a) 24 (b) (a + b = n T ) Control (c) 43 (d) 99 (c + d = n C ) 130 (a + c) 67 (b + d) 197 (n) Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July

7 Binary Data Effect Measures Let p T : Experimental event rate ˆp T = a/(a + b) p C : Control event rate ˆp C = c/(c + d) Risk Ratio φ: Odds ratio ψ: Risk Difference η: ( p T 1 p T ψ = ( p C 1 p C φ = p T p C ) ˆφ = ˆp T ˆp C ) = φ 1 p C ˆψ = a d 1 p T b c (2) Binary Data Effect Measures > cr = read.csv("hd-cr.txt", as.is=true) > library(meta) > mil = metabin(crhdct, nhdct, crcontrol, ncontrol, + sm="or", data=cr, studlab=study, + subset=study=="milpied") > round(exp(mil$te), 2) [1] 2.37 η = p T p C ˆη = ˆp T ˆp C Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July 2014 Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July 2014 Binary Effect Measures Confidence Interval Binary Effect Measures Confidence Interval Large sample variance estimates (Fleiss, 1993): Var(log ˆφ) = 1 a + 1 c 1 a + b 1 c + d Var(log ˆψ) = 1 a + 1 b + 1 c + 1 d Var(ˆη) = a b (a + b) 3 + c d (c + d) 3 (1 α)-confidence interval (on log scale for risk ratio and odds ratio): ˆθ ± z 1 α 2 S.E.(ˆθ) with standard error S.E.(ˆθ) = Var(ˆθ). (3) Large sample variance estimates (Fleiss, 1993): Var(log ˆφ) = Var(log ˆψ) = Var(ˆη) = 1 a c a + b c + d a b c d (a + 0.5) (b + 0.5) (c + 0.5) (d + 0.5) (a + b + 1) 3 + (c + d + 1) 3 Add 0.5 if any cell counts are zero (Gart and Zweifel, 1967; Pettigrew et al., 16) Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July

8 Binary Effect Measures Confidence Interval Aggressive Non-Hodgkin Lymphoma Forestplot > mil = metabin(crhdct, nhdct, crcontrol, ncontrol, + sm="or", data=cr, studlab=study, + subset=study=="milpied") > # Print variance estimate > mil$sete^2 [1] > ## Print confidence interval > print(mil, digits=2) OR 95%-CI z p.value 2.37 [1.29; 4.] De Souza Gianni Gisselbrecht Intragumtornchai Kaiser Kluin Nelemans Martelli Martelli 2003 Milpied Rodriguez 2003 Santini Santini 2 Verdonck Vitolo HDCT Control Events Total Events Total Odds Ratio OR 95% CI 1.60 [0.54; 4.73] 9.86 [2.11; 45.96] 0.95 [0.62; 1.45] 1.37 [0.43; 4.36] 1. [0.84; 2.16] 1.54 [0.86; 2.78] 0.91 [0.18; 4.57] 1.49 [0.73; 3.06] 2.37 [1.29; 4.] 1.87 [0.84; 4.14] 2.15 [1.01; 4.] 1.07 [0.61; 1.87] 0.67 [0.24; 1.83] 0.61 [0.29; 1.27] Details: - Inverse variance method Favours control Favours HDCT Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Naive Pooling Fictitious Example Inverse Variance Method Odds ratio Definition 1 2 CR no CR ˆp T ˆp C RR [95%-CI] HDCT 4 Control % 7.3% 0.91 [0.30; 2.74] HDCT Control % 24.0% 0.93 [0.53; 1.63] Overall odds ratio ˆψ IV (Fleiss, 1993): K w k log ˆψ k k=1 ˆψ IV = exp K w k k=1 (4) index: k = 1,..., K 1&2 HDCT Control % 11.5% 1.59 [1.00; 2.55] Weights: w k = 1 / Var(log ˆψ k ) ( fixed effect model) See formulae (2) and (3) for definition of ˆψ k and Var(log ˆψ k ) Appropriate meta-analysis 0.92 [0.; 1.52] Analogous for risk ratio as effect measure: log ˆφ k For risk difference: ˆη k (without exp function in equation (4)) Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July

9 Meta-Analysis of CR Inverse Variance Method > cr = read.csv("hd-cr.txt", as.is=true) > library(meta) > m2 = metabin(crhdct, nhdct, crcontrol, ncontrol, + sm="or", data=cr, studlab=study, + comb.random=false, method="inverse") > summary(m2) Number of studies combined: k=14 OR 95%-CI z p.value Fixed effect model [1.0999; ] Quantifying heterogeneity: tau^2 = ; H = 1.3 [1; 1.78]; I^2 = 41% [0%; 68.6%] Test of heterogeneity: Q d.f. p.value Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Forest Plot CR Inverse Variance Method > forest(m2, hetstat=false, text.fixed="iv estimate") De Souza Gianni Gisselbrecht Intragumtornchai Kaiser Kluin Nelemans Martelli Martelli 2003 Milpied Rodriguez 2003 Santini Santini 2 Verdonck Vitolo IV estimate Experimental Control Events Total Events Total Odds Ratio OR 1.60 [0.54; 4.73] 9.86 [2.11; 45.96] 0.95 [0.62; 1.45] 1.37 [0.43; 4.36] 1. [0.84; 2.16] 1.54 [0.86; 2.78] 0.91 [0.18; 4.57] 1.49 [0.73; 3.06] 2.37 [1.29; 4.] 1.87 [0.84; 4.14] 2.15 [1.01; 4.] 1.07 [0.61; 1.87] 0.67 [0.24; 1.83] 0.61 [0.29; 1.27] 1.32 [1.; 1.59] 95% CI W(fixed) 2.9% 1.4% 19.0% 2.5% 15.3% 9.8% 1.3% 6.6% 9.2% 5.4% 6.0%.8% 3.3% 6.3% 0% Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Mantel-Haenszel Method Odds ratio Definition Mantel and Haenszel (1959): Estimator for common odds ratio in stratified case-control study Can be used in meta-analysis of RCTs Fixed effect method Mantel-Haenszel odds ratio ˆψ MH : ˆψ MH = k k=1 w k ˆψ k k k=1 w k (5) Meta-Analysis of CR Mantel-Haenszel Method > cr = read.csv("hd-cr.txt", as.is=true) > library(meta) > m3 = metabin(crhdct, nhdct, crcontrol, ncontrol, + sm="or", data=cr, studlab=study, + comb.random=false, method="mh") > # Same result (Mantel-Haenszel method is default) > m3 = metabin(crhdct, nhdct, crcontrol, ncontrol, + sm="or", data=cr, studlab=study, + comb.random=false) > # Same result (use of R function update.meta) > m3 = update(m2, method="mh") Weights: w k = b kc k n k Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July 2014 Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July

10 Forest Plot CR Mantel-Haenszel Method > forest(m3, hetstat=false, text.fixed="mh estimate") De Souza Gianni Gisselbrecht Intragumtornchai Kaiser Kluin Nelemans Martelli Martelli 2003 Milpied Rodriguez 2003 Santini Santini 2 Verdonck Vitolo MH estimate Experimental Control Events Total Events Total Odds Ratio OR 1.60 [0.54; 4.73] 9.86 [2.11; 45.96] 0.95 [0.62; 1.45] 1.37 [0.43; 4.36] 1. [0.84; 2.16] 1.54 [0.86; 2.78] 0.91 [0.18; 4.57] 1.49 [0.73; 3.06] 2.37 [1.29; 4.] 1.87 [0.84; 4.14] 2.15 [1.01; 4.] 1.07 [0.61; 1.87] 0.67 [0.24; 1.83] 0.61 [0.29; 1.27] 1. [1.12; 1.61] 95% CI W(fixed) 2.6% 0.7% 21.8% 2.4% 14.8% 8.9% 1.5% 6.1% 6.8% 4.4% 4.6% 11.7% 4.6% 9.1% 0% Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July Summary Meta-analysis R Central to evidence based medicine (see, e.g. website of Cochrane Collaboration Only as good as the evidence that it relies on. Some important issues are: Heterogeneity of study results. The more you can explain, the better subgroup-analysis / meta-regression. Bias in contributing studies / non-representativeness of studies (e.g. due to publication bias). Binary data raises some special issues, especially if event rates are low. Modern statistical packages for data analysis, management & graphics Use of additional software easily possible, e.g. for meta-analysis Use of command line necessary Extended documentation available (Online, Use-R! books,...) Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July References Carpenter, J., Rücker, G., and Schwarzer, G. (2009). copas: An R package for fitting the Copas selection model. The R Journal, 1(2): Egger, M. and Smith, G. D. (1997). Meta-analysis: Potentials and promise. British Medical Journal, 315: Fleiss, J. L. (1993). The statistical basis of meta-analysis. Statistical Methods in Medical Research, 2: Gart, J. J. and Zweifel, J. R. (1967). On the bias of various estimators of the logit and its variance with application to quantal bioassay. Biometrika, 54: Gasparrini, A. (2014). mvmeta: Multivariate and univariate meta-analysis and meta-regression. R package version Greb, A., Bohlius, J., Schiefer, D., Schwarzer, G., Schulz, H., and Engert, A. (2008). High-dose chemotherapy with autologous stem cell transplantation in the first line treatment of aggressive non-hodgkin lymphoma (nhl) in adults. Cochrane Database Syst Rev, 1:CD DOI:.02/ CD pub2. Lumley, T. (2012). rmeta: Meta-analysis. R package version Mantel, N. and Haenszel, W. (1959). Statistical aspects of the analysis of data from retrospective studies of disease. Journal of the National Cancer Institute, 22(4): Pettigrew, H. M., Gart, J. J., and Thomas, D. G. (16). The bias and higher cumulants of the logarithm of a binomial variate. Biometrika, 73:4 4. Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July R Core Team (2014). R: A Language and Environment for Statistical Computing. R Foundation for Statistical Computing, Vienna, Austria. Rücker, G., Schwarzer, G., Krahn, U., and König, J. (2014). netmeta: Network meta-analysis with R. R package version Schwarzer, G. (2007). meta: An R package for meta-analysis. R News, 7(3): Schwarzer, G., Carpenter, J., and Rücker, G. (2014). metasens: Advanced statistical methods to model and adjust for bias in meta-analysis. R package version Viechtbauer, W. (20). Conducting meta-analyses in R with the metafor package. Journal of Statistical Software, 36(3):1 48. Carpenter/Krahn/Rücker/Schwarzer Session I: Introduction to Meta-Analysis Florence, 6 July

Methods for Meta-analysis in Medical Research

Methods for Meta-analysis in Medical Research Methods for Meta-analysis in Medical Research Alex J. Sutton University of Leicester, UK Keith R. Abrams University of Leicester, UK David R. Jones University of Leicester, UK Trevor A. Sheldon University

More information

Systematic Reviews and Meta-analyses

Systematic Reviews and Meta-analyses Systematic Reviews and Meta-analyses Introduction A systematic review (also called an overview) attempts to summarize the scientific evidence related to treatment, causation, diagnosis, or prognosis of

More information

Understanding, appraising and reporting meta-analyses that use individual participant data

Understanding, appraising and reporting meta-analyses that use individual participant data Understanding, appraising and reporting meta-analyses that use individual participant data Jayne Tierney, Claire Vale, Maroeska Rovers, Lesley Stewart IPD Meta-analysis Methods Group 21 st Annual Cochrane

More information

Binary Diagnostic Tests Two Independent Samples

Binary Diagnostic Tests Two Independent Samples Chapter 537 Binary Diagnostic Tests Two Independent Samples Introduction An important task in diagnostic medicine is to measure the accuracy of two diagnostic tests. This can be done by comparing summary

More information

Trial Sequential Analysis (TSA)

Trial Sequential Analysis (TSA) User manual for Trial Sequential Analysis (TSA) Kristian Thorlund, Janus Engstrøm, Jørn Wetterslev, Jesper Brok, Georgina Imberger, and Christian Gluud Copenhagen Trial Unit Centre for Clinical Intervention

More information

Outline. Publication and other reporting biases; funnel plots and asymmetry tests. The dissemination of evidence...

Outline. Publication and other reporting biases; funnel plots and asymmetry tests. The dissemination of evidence... Cochrane Methodology Annual Training Assessing Risk Of Bias In Cochrane Systematic Reviews Loughborough UK, March 0 Publication and other reporting biases; funnel plots and asymmetry tests Outline Sources

More information

Principles of Systematic Review: Focus on Alcoholism Treatment

Principles of Systematic Review: Focus on Alcoholism Treatment Principles of Systematic Review: Focus on Alcoholism Treatment Manit Srisurapanont, M.D. Professor of Psychiatry Department of Psychiatry, Faculty of Medicine, Chiang Mai University For Symposium 1A: Systematic

More information

Web appendix: Supplementary material. Appendix 1 (on-line): Medline search strategy

Web appendix: Supplementary material. Appendix 1 (on-line): Medline search strategy Web appendix: Supplementary material Appendix 1 (on-line): Medline search strategy exp Venous Thrombosis/ Deep vein thrombosis.mp. Pulmonary embolism.mp. or exp Pulmonary Embolism/ recurrent venous thromboembolism.mp.

More information

Tests for Two Proportions

Tests for Two Proportions Chapter 200 Tests for Two Proportions Introduction This module computes power and sample size for hypothesis tests of the difference, ratio, or odds ratio of two independent proportions. The test statistics

More information

11. Analysis of Case-control Studies Logistic Regression

11. Analysis of Case-control Studies Logistic Regression Research methods II 113 11. Analysis of Case-control Studies Logistic Regression This chapter builds upon and further develops the concepts and strategies described in Ch.6 of Mother and Child Health:

More information

DECISION AND SUMMARY OF RATIONALE

DECISION AND SUMMARY OF RATIONALE DECISION AND SUMMARY OF RATIONALE Indication under consideration Clinical evidence Clofarabine in the treatment of relapsed acute myeloid leukaemia (AML) The application was for clofarabine to remain in

More information

Study Design and Statistical Analysis

Study Design and Statistical Analysis Study Design and Statistical Analysis Anny H Xiang, PhD Department of Preventive Medicine University of Southern California Outline Designing Clinical Research Studies Statistical Data Analysis Designing

More information

Can I have FAITH in this Review?

Can I have FAITH in this Review? Can I have FAITH in this Review? Find Appraise Include Total Heterogeneity Paul Glasziou Centre for Research in Evidence Based Practice Bond University What do you do? For an acutely ill patient, you do

More information

Lesson 14 14 Outline Outline

Lesson 14 14 Outline Outline Lesson 14 Confidence Intervals of Odds Ratio and Relative Risk Lesson 14 Outline Lesson 14 covers Confidence Interval of an Odds Ratio Review of Odds Ratio Sampling distribution of OR on natural log scale

More information

Supplementary Table 1: Risk of bias in included studies. Blinding of participants and personnel (performance bias)

Supplementary Table 1: Risk of bias in included studies. Blinding of participants and personnel (performance bias) Random sequence generation (selection bias) Allocation concealment (selection bias) Blinding of participants and personnel (performance bias) Blinding of outcome assessment (detection bias) Incomplete

More information

SAS Software to Fit the Generalized Linear Model

SAS Software to Fit the Generalized Linear Model SAS Software to Fit the Generalized Linear Model Gordon Johnston, SAS Institute Inc., Cary, NC Abstract In recent years, the class of generalized linear models has gained popularity as a statistical modeling

More information

Statistical Rules of Thumb

Statistical Rules of Thumb Statistical Rules of Thumb Second Edition Gerald van Belle University of Washington Department of Biostatistics and Department of Environmental and Occupational Health Sciences Seattle, WA WILEY AJOHN

More information

Tests for Two Survival Curves Using Cox s Proportional Hazards Model

Tests for Two Survival Curves Using Cox s Proportional Hazards Model Chapter 730 Tests for Two Survival Curves Using Cox s Proportional Hazards Model Introduction A clinical trial is often employed to test the equality of survival distributions of two treatment groups.

More information

Summary of Formulas and Concepts. Descriptive Statistics (Ch. 1-4)

Summary of Formulas and Concepts. Descriptive Statistics (Ch. 1-4) Summary of Formulas and Concepts Descriptive Statistics (Ch. 1-4) Definitions Population: The complete set of numerical information on a particular quantity in which an investigator is interested. We assume

More information

Endpoint Selection in Phase II Oncology trials

Endpoint Selection in Phase II Oncology trials Endpoint Selection in Phase II Oncology trials Anastasia Ivanova Department of Biostatistics UNC at Chapel Hill aivanova@bios.unc.edu Primary endpoints in Phase II trials Recently looked at journal articles

More information

Simple Linear Regression Inference

Simple Linear Regression Inference Simple Linear Regression Inference 1 Inference requirements The Normality assumption of the stochastic term e is needed for inference even if it is not a OLS requirement. Therefore we have: Interpretation

More information

Guide to Biostatistics

Guide to Biostatistics MedPage Tools Guide to Biostatistics Study Designs Here is a compilation of important epidemiologic and common biostatistical terms used in medical research. You can use it as a reference guide when reading

More information

Software for Publication Bias

Software for Publication Bias CHAPTER 11 Software for Publication Bias Michael Borenstein Biostat, Inc., USA KEY POINTS Various procedures for addressing publication bias are discussed elsewhere in this volume. The goal of this chapter

More information

Basic Statistical and Modeling Procedures Using SAS

Basic Statistical and Modeling Procedures Using SAS Basic Statistical and Modeling Procedures Using SAS One-Sample Tests The statistical procedures illustrated in this handout use two datasets. The first, Pulse, has information collected in a classroom

More information

Likelihood Approaches for Trial Designs in Early Phase Oncology

Likelihood Approaches for Trial Designs in Early Phase Oncology Likelihood Approaches for Trial Designs in Early Phase Oncology Clinical Trials Elizabeth Garrett-Mayer, PhD Cody Chiuzan, PhD Hollings Cancer Center Department of Public Health Sciences Medical University

More information

If several different trials are mentioned in one publication, the data of each should be extracted in a separate data extraction form.

If several different trials are mentioned in one publication, the data of each should be extracted in a separate data extraction form. General Remarks This template of a data extraction form is intended to help you to start developing your own data extraction form, it certainly has to be adapted to your specific question. Delete unnecessary

More information

STATISTICA Formula Guide: Logistic Regression. Table of Contents

STATISTICA Formula Guide: Logistic Regression. Table of Contents : Table of Contents... 1 Overview of Model... 1 Dispersion... 2 Parameterization... 3 Sigma-Restricted Model... 3 Overparameterized Model... 4 Reference Coding... 4 Model Summary (Summary Tab)... 5 Summary

More information

18 Meta-analysis in Stata TM

18 Meta-analysis in Stata TM 18 Systematic Reviews-18-cpp 16/2/2001 8:33 am Page 347 18 Meta-analysis in Stata TM JONATHAN A C STERNE, MICHAEL J BRADBURN, MATTHIAS EGGER Summary points Stata TM is a general-purpose, command-line driven,

More information

1. What is the critical value for this 95% confidence interval? CV = z.025 = invnorm(0.025) = 1.96

1. What is the critical value for this 95% confidence interval? CV = z.025 = invnorm(0.025) = 1.96 1 Final Review 2 Review 2.1 CI 1-propZint Scenario 1 A TV manufacturer claims in its warranty brochure that in the past not more than 10 percent of its TV sets needed any repair during the first two years

More information

Bendamustine with rituximab for the first-line treatment of advanced indolent non-hodgkin's and mantle cell lymphoma

Bendamustine with rituximab for the first-line treatment of advanced indolent non-hodgkin's and mantle cell lymphoma LONDON CANCER NEW DRUGS GROUP RAPID REVIEW Bendamustine with rituximab for the first-line treatment of advanced indolent non-hodgkin's and mantle cell lymphoma Bendamustine with rituximab for the first-line

More information

Two Correlated Proportions (McNemar Test)

Two Correlated Proportions (McNemar Test) Chapter 50 Two Correlated Proportions (Mcemar Test) Introduction This procedure computes confidence intervals and hypothesis tests for the comparison of the marginal frequencies of two factors (each with

More information

A Bayesian hierarchical surrogate outcome model for multiple sclerosis

A Bayesian hierarchical surrogate outcome model for multiple sclerosis A Bayesian hierarchical surrogate outcome model for multiple sclerosis 3 rd Annual ASA New Jersey Chapter / Bayer Statistics Workshop David Ohlssen (Novartis), Luca Pozzi and Heinz Schmidli (Novartis)

More information

Statistical modelling with missing data using multiple imputation. Session 4: Sensitivity Analysis after Multiple Imputation

Statistical modelling with missing data using multiple imputation. Session 4: Sensitivity Analysis after Multiple Imputation Statistical modelling with missing data using multiple imputation Session 4: Sensitivity Analysis after Multiple Imputation James Carpenter London School of Hygiene & Tropical Medicine Email: james.carpenter@lshtm.ac.uk

More information

NATIONAL CANCER DRUG FUND PRIORITISATION SCORES

NATIONAL CANCER DRUG FUND PRIORITISATION SCORES NATIONAL CANCER DRUG FUND PRIORITISATION SCORES Drug Indication Regimen (where appropriate) BORTEZOMIB In combination with dexamethasone (VD), or with dexamethasone and thalidomide (VTD), is indicated

More information

Training Program in Meta-Analysis

Training Program in Meta-Analysis Training Program in Meta-Analysis June 23-25, 2015 The University of Arizona College of Pharmacy Tucson, Arizona A 3-day, hands-on training program for personnel in healthcare decisionmaking, industry

More information

Poisson Models for Count Data

Poisson Models for Count Data Chapter 4 Poisson Models for Count Data In this chapter we study log-linear models for count data under the assumption of a Poisson error structure. These models have many applications, not only to the

More information

Department/Academic Unit: Public Health Sciences Degree Program: Biostatistics Collaborative Program

Department/Academic Unit: Public Health Sciences Degree Program: Biostatistics Collaborative Program Department/Academic Unit: Public Health Sciences Degree Program: Biostatistics Collaborative Program Department of Mathematics and Statistics Degree Level Expectations, Learning Outcomes, Indicators of

More information

INTRODUCTION TO SURVEY DATA ANALYSIS THROUGH STATISTICAL PACKAGES

INTRODUCTION TO SURVEY DATA ANALYSIS THROUGH STATISTICAL PACKAGES INTRODUCTION TO SURVEY DATA ANALYSIS THROUGH STATISTICAL PACKAGES Hukum Chandra Indian Agricultural Statistics Research Institute, New Delhi-110012 1. INTRODUCTION A sample survey is a process for collecting

More information

SECOND M.B. AND SECOND VETERINARY M.B. EXAMINATIONS INTRODUCTION TO THE SCIENTIFIC BASIS OF MEDICINE EXAMINATION. Friday 14 March 2008 9.00-9.

SECOND M.B. AND SECOND VETERINARY M.B. EXAMINATIONS INTRODUCTION TO THE SCIENTIFIC BASIS OF MEDICINE EXAMINATION. Friday 14 March 2008 9.00-9. SECOND M.B. AND SECOND VETERINARY M.B. EXAMINATIONS INTRODUCTION TO THE SCIENTIFIC BASIS OF MEDICINE EXAMINATION Friday 14 March 2008 9.00-9.45 am Attempt all ten questions. For each question, choose the

More information

Survey, Statistics and Psychometrics Core Research Facility University of Nebraska-Lincoln. Log-Rank Test for More Than Two Groups

Survey, Statistics and Psychometrics Core Research Facility University of Nebraska-Lincoln. Log-Rank Test for More Than Two Groups Survey, Statistics and Psychometrics Core Research Facility University of Nebraska-Lincoln Log-Rank Test for More Than Two Groups Prepared by Harlan Sayles (SRAM) Revised by Julia Soulakova (Statistics)

More information

Data Analysis, Research Study Design and the IRB

Data Analysis, Research Study Design and the IRB Minding the p-values p and Quartiles: Data Analysis, Research Study Design and the IRB Don Allensworth-Davies, MSc Research Manager, Data Coordinating Center Boston University School of Public Health IRB

More information

Multivariate Logistic Regression

Multivariate Logistic Regression 1 Multivariate Logistic Regression As in univariate logistic regression, let π(x) represent the probability of an event that depends on p covariates or independent variables. Then, using an inv.logit formulation

More information

SIMPLE LINEAR CORRELATION. r can range from -1 to 1, and is independent of units of measurement. Correlation can be done on two dependent variables.

SIMPLE LINEAR CORRELATION. r can range from -1 to 1, and is independent of units of measurement. Correlation can be done on two dependent variables. SIMPLE LINEAR CORRELATION Simple linear correlation is a measure of the degree to which two variables vary together, or a measure of the intensity of the association between two variables. Correlation

More information

Meta-analysis: methods for quantitative data synthesis

Meta-analysis: methods for quantitative data synthesis Department of Health Sciences M.Sc. in Evidence Based Practice, M.Sc. in Health Services Research Meta-analysis: methods for quantitative data synthesis What is a meta-analysis? Meta-analysis is a statistical

More information

An Introduction to Meta-analysis

An Introduction to Meta-analysis SPORTSCIENCE Perspectives / Research Resources An Introduction to Meta-analysis Will G Hopkins sportsci.org Sportscience 8, 20-24, 2004 (sportsci.org/jour/04/wghmeta.htm) Sport and Recreation, Auckland

More information

Generalized Linear Models

Generalized Linear Models Generalized Linear Models We have previously worked with regression models where the response variable is quantitative and normally distributed. Now we turn our attention to two types of models where the

More information

Time Series Analysis

Time Series Analysis Time Series Analysis hm@imm.dtu.dk Informatics and Mathematical Modelling Technical University of Denmark DK-2800 Kgs. Lyngby 1 Outline of the lecture Identification of univariate time series models, cont.:

More information

LEVEL ONE MODULE EXAM PART ONE [Clinical Questions Literature Searching Types of Research Levels of Evidence Appraisal Scales Statistic Terminology]

LEVEL ONE MODULE EXAM PART ONE [Clinical Questions Literature Searching Types of Research Levels of Evidence Appraisal Scales Statistic Terminology] 1. What does the letter I correspond to in the PICO format? A. Interdisciplinary B. Interference C. Intersession D. Intervention 2. Which step of the evidence-based practice process incorporates clinical

More information

Handling missing data in Stata a whirlwind tour

Handling missing data in Stata a whirlwind tour Handling missing data in Stata a whirlwind tour 2012 Italian Stata Users Group Meeting Jonathan Bartlett www.missingdata.org.uk 20th September 2012 1/55 Outline The problem of missing data and a principled

More information

Competency 1 Describe the role of epidemiology in public health

Competency 1 Describe the role of epidemiology in public health The Northwest Center for Public Health Practice (NWCPHP) has developed competency-based epidemiology training materials for public health professionals in practice. Epidemiology is broadly accepted as

More information

VI. Introduction to Logistic Regression

VI. Introduction to Logistic Regression VI. Introduction to Logistic Regression We turn our attention now to the topic of modeling a categorical outcome as a function of (possibly) several factors. The framework of generalized linear models

More information

200627 - AC - Clinical Trials

200627 - AC - Clinical Trials Coordinating unit: Teaching unit: Academic year: Degree: ECTS credits: 2014 200 - FME - School of Mathematics and Statistics 715 - EIO - Department of Statistics and Operations Research MASTER'S DEGREE

More information

Non-Inferiority Tests for Two Proportions

Non-Inferiority Tests for Two Proportions Chapter 0 Non-Inferiority Tests for Two Proportions Introduction This module provides power analysis and sample size calculation for non-inferiority and superiority tests in twosample designs in which

More information

Regression Modeling Strategies

Regression Modeling Strategies Frank E. Harrell, Jr. Regression Modeling Strategies With Applications to Linear Models, Logistic Regression, and Survival Analysis With 141 Figures Springer Contents Preface Typographical Conventions

More information

Lecture 25. December 19, 2007. Department of Biostatistics Johns Hopkins Bloomberg School of Public Health Johns Hopkins University.

Lecture 25. December 19, 2007. Department of Biostatistics Johns Hopkins Bloomberg School of Public Health Johns Hopkins University. This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike License. Your use of this material constitutes acceptance of that license and the conditions of use of materials on this

More information

Organizing Your Approach to a Data Analysis

Organizing Your Approach to a Data Analysis Biost/Stat 578 B: Data Analysis Emerson, September 29, 2003 Handout #1 Organizing Your Approach to a Data Analysis The general theme should be to maximize thinking about the data analysis and to minimize

More information

Missing data and net survival analysis Bernard Rachet

Missing data and net survival analysis Bernard Rachet Workshop on Flexible Models for Longitudinal and Survival Data with Applications in Biostatistics Warwick, 27-29 July 2015 Missing data and net survival analysis Bernard Rachet General context Population-based,

More information

Example: Credit card default, we may be more interested in predicting the probabilty of a default than classifying individuals as default or not.

Example: Credit card default, we may be more interested in predicting the probabilty of a default than classifying individuals as default or not. Statistical Learning: Chapter 4 Classification 4.1 Introduction Supervised learning with a categorical (Qualitative) response Notation: - Feature vector X, - qualitative response Y, taking values in C

More information

13. Poisson Regression Analysis

13. Poisson Regression Analysis 136 Poisson Regression Analysis 13. Poisson Regression Analysis We have so far considered situations where the outcome variable is numeric and Normally distributed, or binary. In clinical work one often

More information

Quantitative Methods for Finance

Quantitative Methods for Finance Quantitative Methods for Finance Module 1: The Time Value of Money 1 Learning how to interpret interest rates as required rates of return, discount rates, or opportunity costs. 2 Learning how to explain

More information

Multinomial and Ordinal Logistic Regression

Multinomial and Ordinal Logistic Regression Multinomial and Ordinal Logistic Regression ME104: Linear Regression Analysis Kenneth Benoit August 22, 2012 Regression with categorical dependent variables When the dependent variable is categorical,

More information

Programme du parcours Clinical Epidemiology 2014-2015. UMR 1. Methods in therapeutic evaluation A Dechartres/A Flahault

Programme du parcours Clinical Epidemiology 2014-2015. UMR 1. Methods in therapeutic evaluation A Dechartres/A Flahault Programme du parcours Clinical Epidemiology 2014-2015 UR 1. ethods in therapeutic evaluation A /A Date cours Horaires 15/10/2014 14-17h General principal of therapeutic evaluation (1) 22/10/2014 14-17h

More information

Lecture 19: Conditional Logistic Regression

Lecture 19: Conditional Logistic Regression Lecture 19: Conditional Logistic Regression Dipankar Bandyopadhyay, Ph.D. BMTRY 711: Analysis of Categorical Data Spring 2011 Division of Biostatistics and Epidemiology Medical University of South Carolina

More information

Review Manager 5.1 Tutorial

Review Manager 5.1 Tutorial Review Manager 5.1 Tutorial updated February 2011 Welcome to the RevMan Tutorial. This tutorial is designed to give Cochrane review authors an introduction to the process of writing a Cochrane systematic

More information

Statistics I for QBIC. Contents and Objectives. Chapters 1 7. Revised: August 2013

Statistics I for QBIC. Contents and Objectives. Chapters 1 7. Revised: August 2013 Statistics I for QBIC Text Book: Biostatistics, 10 th edition, by Daniel & Cross Contents and Objectives Chapters 1 7 Revised: August 2013 Chapter 1: Nature of Statistics (sections 1.1-1.6) Objectives

More information

Interpretation of Somers D under four simple models

Interpretation of Somers D under four simple models Interpretation of Somers D under four simple models Roger B. Newson 03 September, 04 Introduction Somers D is an ordinal measure of association introduced by Somers (96)[9]. It can be defined in terms

More information

Treatment of seizures in multiple sclerosis (Review)

Treatment of seizures in multiple sclerosis (Review) Koch MW, Polman SKL, Uyttenboogaart M, De Keyser J This is a reprint of a Cochrane review, prepared and maintained by The Cochrane Collaboration and published in The Cochrane Library 009, Issue 3 http://www.thecochranelibrary.com

More information

Laboratory 3 Type I, II Error, Sample Size, Statistical Power

Laboratory 3 Type I, II Error, Sample Size, Statistical Power Laboratory 3 Type I, II Error, Sample Size, Statistical Power Calculating the Probability of a Type I Error Get two samples (n1=10, and n2=10) from a normal distribution population, N (5,1), with population

More information

SAMPLE SIZE TABLES FOR LOGISTIC REGRESSION

SAMPLE SIZE TABLES FOR LOGISTIC REGRESSION STATISTICS IN MEDICINE, VOL. 8, 795-802 (1989) SAMPLE SIZE TABLES FOR LOGISTIC REGRESSION F. Y. HSIEH* Department of Epidemiology and Social Medicine, Albert Einstein College of Medicine, Bronx, N Y 10461,

More information

Linda K. Muthén Bengt Muthén. Copyright 2008 Muthén & Muthén www.statmodel.com. Table Of Contents

Linda K. Muthén Bengt Muthén. Copyright 2008 Muthén & Muthén www.statmodel.com. Table Of Contents Mplus Short Courses Topic 2 Regression Analysis, Eploratory Factor Analysis, Confirmatory Factor Analysis, And Structural Equation Modeling For Categorical, Censored, And Count Outcomes Linda K. Muthén

More information

HYPOTHESIS TESTING (ONE SAMPLE) - CHAPTER 7 1. used confidence intervals to answer questions such as...

HYPOTHESIS TESTING (ONE SAMPLE) - CHAPTER 7 1. used confidence intervals to answer questions such as... HYPOTHESIS TESTING (ONE SAMPLE) - CHAPTER 7 1 PREVIOUSLY used confidence intervals to answer questions such as... You know that 0.25% of women have red/green color blindness. You conduct a study of men

More information

Use of deviance statistics for comparing models

Use of deviance statistics for comparing models A likelihood-ratio test can be used under full ML. The use of such a test is a quite general principle for statistical testing. In hierarchical linear models, the deviance test is mostly used for multiparameter

More information

BA 275 Review Problems - Week 6 (10/30/06-11/3/06) CD Lessons: 53, 54, 55, 56 Textbook: pp. 394-398, 404-408, 410-420

BA 275 Review Problems - Week 6 (10/30/06-11/3/06) CD Lessons: 53, 54, 55, 56 Textbook: pp. 394-398, 404-408, 410-420 BA 275 Review Problems - Week 6 (10/30/06-11/3/06) CD Lessons: 53, 54, 55, 56 Textbook: pp. 394-398, 404-408, 410-420 1. Which of the following will increase the value of the power in a statistical test

More information

Ordinal Regression. Chapter

Ordinal Regression. Chapter Ordinal Regression Chapter 4 Many variables of interest are ordinal. That is, you can rank the values, but the real distance between categories is unknown. Diseases are graded on scales from least severe

More information

Chi Squared and Fisher's Exact Tests. Observed vs Expected Distributions

Chi Squared and Fisher's Exact Tests. Observed vs Expected Distributions BMS 617 Statistical Techniques for the Biomedical Sciences Lecture 11: Chi-Squared and Fisher's Exact Tests Chi Squared and Fisher's Exact Tests This lecture presents two similarly structured tests, Chi-squared

More information

Package netmeta. R topics documented: June 26, 2015

Package netmeta. R topics documented: June 26, 2015 Package netmeta June 26, 2015 Title Network Meta-Analysis using Frequentist Methods Version 0.8-0 Depends meta (>= 4.0-0) Suggests colorspace Imports magic Date 2015-06-26 Description Network meta-analysis

More information

Business Statistics. Successful completion of Introductory and/or Intermediate Algebra courses is recommended before taking Business Statistics.

Business Statistics. Successful completion of Introductory and/or Intermediate Algebra courses is recommended before taking Business Statistics. Business Course Text Bowerman, Bruce L., Richard T. O'Connell, J. B. Orris, and Dawn C. Porter. Essentials of Business, 2nd edition, McGraw-Hill/Irwin, 2008, ISBN: 978-0-07-331988-9. Required Computing

More information

Linear Classification. Volker Tresp Summer 2015

Linear Classification. Volker Tresp Summer 2015 Linear Classification Volker Tresp Summer 2015 1 Classification Classification is the central task of pattern recognition Sensors supply information about an object: to which class do the object belong

More information

University of Maryland School of Medicine Master of Public Health Program. Evaluation of Public Health Competencies

University of Maryland School of Medicine Master of Public Health Program. Evaluation of Public Health Competencies Semester/Year of Graduation University of Maryland School of Medicine Master of Public Health Program Evaluation of Public Health Competencies Students graduating with an MPH degree, and planning to work

More information

Statistics in Medicine Research Lecture Series CSMC Fall 2014

Statistics in Medicine Research Lecture Series CSMC Fall 2014 Catherine Bresee, MS Senior Biostatistician Biostatistics & Bioinformatics Research Institute Statistics in Medicine Research Lecture Series CSMC Fall 2014 Overview Review concept of statistical power

More information

Auxiliary Variables in Mixture Modeling: 3-Step Approaches Using Mplus

Auxiliary Variables in Mixture Modeling: 3-Step Approaches Using Mplus Auxiliary Variables in Mixture Modeling: 3-Step Approaches Using Mplus Tihomir Asparouhov and Bengt Muthén Mplus Web Notes: No. 15 Version 8, August 5, 2014 1 Abstract This paper discusses alternatives

More information

Breast cancer treatment for elderly women: a systematic review

Breast cancer treatment for elderly women: a systematic review Breast cancer treatment for elderly women: a systematic review Gerlinde Pilkington Rumona Dickson Anna Sanniti Funded by the NCEI and POI Elderly people less likely to receive chemotherapy than younger

More information

Sample Size Planning, Calculation, and Justification

Sample Size Planning, Calculation, and Justification Sample Size Planning, Calculation, and Justification Theresa A Scott, MS Vanderbilt University Department of Biostatistics theresa.scott@vanderbilt.edu http://biostat.mc.vanderbilt.edu/theresascott Theresa

More information

Does Selenium protect against lung cancer? Do Selenium supplements reduce the incidence of lung cancer in healthy individuals?

Does Selenium protect against lung cancer? Do Selenium supplements reduce the incidence of lung cancer in healthy individuals? Does Selenium protect against lung cancer? Do Selenium supplements reduce the incidence of lung cancer in healthy individuals? Alexander Blakes and Eleanor Brunt October 2014 The question Mr Wilson s father

More information

Appendix G STATISTICAL METHODS INFECTIOUS METHODS STATISTICAL ROADMAP. Prepared in Support of: CDC/NCEH Cross Sectional Assessment Study.

Appendix G STATISTICAL METHODS INFECTIOUS METHODS STATISTICAL ROADMAP. Prepared in Support of: CDC/NCEH Cross Sectional Assessment Study. Appendix G STATISTICAL METHODS INFECTIOUS METHODS STATISTICAL ROADMAP Prepared in Support of: CDC/NCEH Cross Sectional Assessment Study Prepared by: Centers for Disease Control and Prevention National

More information

Logit Models for Binary Data

Logit Models for Binary Data Chapter 3 Logit Models for Binary Data We now turn our attention to regression models for dichotomous data, including logistic regression and probit analysis. These models are appropriate when the response

More information

Chicago Booth BUSINESS STATISTICS 41000 Final Exam Fall 2011

Chicago Booth BUSINESS STATISTICS 41000 Final Exam Fall 2011 Chicago Booth BUSINESS STATISTICS 41000 Final Exam Fall 2011 Name: Section: I pledge my honor that I have not violated the Honor Code Signature: This exam has 34 pages. You have 3 hours to complete this

More information

Critical appraisal of a journal article

Critical appraisal of a journal article Critical appraisal of a journal article 1. Introduction to critical appraisal Critical appraisal is the process of carefully and systematically examining research to judge its trustworthiness, and its

More information

Regression Analysis: A Complete Example

Regression Analysis: A Complete Example Regression Analysis: A Complete Example This section works out an example that includes all the topics we have discussed so far in this chapter. A complete example of regression analysis. PhotoDisc, Inc./Getty

More information

X X X a) perfect linear correlation b) no correlation c) positive correlation (r = 1) (r = 0) (0 < r < 1)

X X X a) perfect linear correlation b) no correlation c) positive correlation (r = 1) (r = 0) (0 < r < 1) CORRELATION AND REGRESSION / 47 CHAPTER EIGHT CORRELATION AND REGRESSION Correlation and regression are statistical methods that are commonly used in the medical literature to compare two or more variables.

More information

Applications of R Software in Bayesian Data Analysis

Applications of R Software in Bayesian Data Analysis Article International Journal of Information Science and System, 2012, 1(1): 7-23 International Journal of Information Science and System Journal homepage: www.modernscientificpress.com/journals/ijinfosci.aspx

More information

Normal ranges of left ventricular global longitudinal strain: A meta-analysis of 2484 subjects

Normal ranges of left ventricular global longitudinal strain: A meta-analysis of 2484 subjects Normal ranges of left ventricular global longitudinal strain: A meta-analysis of 2484 subjects Teerapat Yingchoncharoen MD. Shikar Agarwal MD. MPH. Thomas H. Marwick MBBS. Ph.D. MPH. Cleveland Clinic Foundation

More information

Basic Statistics and Data Analysis for Health Researchers from Foreign Countries

Basic Statistics and Data Analysis for Health Researchers from Foreign Countries Basic Statistics and Data Analysis for Health Researchers from Foreign Countries Volkert Siersma siersma@sund.ku.dk The Research Unit for General Practice in Copenhagen Dias 1 Content Quantifying association

More information

Logistic regression modeling the probability of success

Logistic regression modeling the probability of success Logistic regression modeling the probability of success Regression models are usually thought of as only being appropriate for target variables that are continuous Is there any situation where we might

More information

Service courses for graduate students in degree programs other than the MS or PhD programs in Biostatistics.

Service courses for graduate students in degree programs other than the MS or PhD programs in Biostatistics. Course Catalog In order to be assured that all prerequisites are met, students must acquire a permission number from the education coordinator prior to enrolling in any Biostatistics course. Courses are

More information

R user! Conference 2013. file:///users/kovalchiksa/master/tutorial/user2013/index.html#200. 1 of 204 6/23/13 1:10 PM

R user! Conference 2013. file:///users/kovalchiksa/master/tutorial/user2013/index.html#200. 1 of 204 6/23/13 1:10 PM Tu to riiialll On Me ta R --- Analllys R user! Conference 2013 Stephanie Kovalchik Research Fellow, National Cancer Institute 1 of 204 6/23/13 1:10 PM Tutto riiall Overview Outtlliine Searching The Literature

More information

PREDICTION OF INDIVIDUAL CELL FREQUENCIES IN THE COMBINED 2 2 TABLE UNDER NO CONFOUNDING IN STRATIFIED CASE-CONTROL STUDIES

PREDICTION OF INDIVIDUAL CELL FREQUENCIES IN THE COMBINED 2 2 TABLE UNDER NO CONFOUNDING IN STRATIFIED CASE-CONTROL STUDIES International Journal of Mathematical Sciences Vol. 10, No. 3-4, July-December 2011, pp. 411-417 Serials Publications PREDICTION OF INDIVIDUAL CELL FREQUENCIES IN THE COMBINED 2 2 TABLE UNDER NO CONFOUNDING

More information

Komorbide brystkræftpatienter kan de tåle behandling? Et registerstudie baseret på Danish Breast Cancer Cooperative Group

Komorbide brystkræftpatienter kan de tåle behandling? Et registerstudie baseret på Danish Breast Cancer Cooperative Group Komorbide brystkræftpatienter kan de tåle behandling? Et registerstudie baseret på Danish Breast Cancer Cooperative Group Lotte Holm Land MD, ph.d. Onkologisk Afd. R. OUH Kræft og komorbiditet - alle skal

More information