Sensitivity, Specificity, and Relatives

Size: px
Start display at page:

Download "Sensitivity, Specificity, and Relatives"

Transcription

1 Sensitivity, Specificity, and Relatives Brani Vidakovic ISyE 6421/ BMED 6700 Vidakovic, B. Se Sp and Relatives January 17, / 26

2 Overview Today: Vidakovic, B. Se Sp and Relatives January 17, / 26

3 Overview Today: Definitions of Sensitivity, Specificity, Positive and Negative Predictive Values, Likelihood Ratio Positive and Negative, Measure of Agreement. Vidakovic, B. Se Sp and Relatives January 17, / 26

4 Overview Today: Definitions of Sensitivity, Specificity, Positive and Negative Predictive Values, Likelihood Ratio Positive and Negative, Measure of Agreement. Performance of Tests: ROC Curves and Area Under ROC. Vidakovic, B. Se Sp and Relatives January 17, / 26

5 Overview Today: Definitions of Sensitivity, Specificity, Positive and Negative Predictive Values, Likelihood Ratio Positive and Negative, Measure of Agreement. Performance of Tests: ROC Curves and Area Under ROC. Assessing Combined Tests Vidakovic, B. Se Sp and Relatives January 17, / 26

6 Overview Today: Definitions of Sensitivity, Specificity, Positive and Negative Predictive Values, Likelihood Ratio Positive and Negative, Measure of Agreement. Performance of Tests: ROC Curves and Area Under ROC. Assessing Combined Tests Examples Vidakovic, B. Se Sp and Relatives January 17, / 26

7 Casscells et al The following problem was posed by Casscells, Schoenberger, and Graboys (1978) to 60 students and staff at an elite medical school: If a test to detect a disease whose prevalence is 1/1000 has a false positive rate of 5%, what is the chance that a person found to have a positive result actually has the disease, assuming you know nothing about the person s symptoms or signs? Assuming that the probability of a positive result given the disease is 1, the answer to this problem is approximately 2%. Casscells et al. found that only 18% (11/60) of participants gave this answer. The most frequent response was 95% (27/60). Vidakovic, B. Se Sp and Relatives January 17, / 26

8 Fundamental 2 x 2 Table disease (D) no disease (C) total test positive (P) TP FP np=tp+fp test negative (N) FN TN nn=fn+tn total nd=tp+fn nc = FP + TN n TP FP FN TN np nn nd nc n true positives (test positive, disease present) false positives (test positive, disease absent) false negatives (test negative, disease present) true negatives (test negative, disease absent) total number of positives (TP + FP) total number of negatives (TN + FN) total number with disease present (TP + FN) total number without disease present (TN + FP) total sample size (TP+FP+FN+TN) Vidakovic, B. Se Sp and Relatives January 17, / 26

9 Definitions Sensitivity (Se) Specificity (Sp) Prevalence (Pre) Positive Predictive Value (PPV) Negative Predictive Value (NPV) Likelihood Ratio Positive (LRP) Likelihood Ratio Negative (LRN) Apparent Prevalence (APre) Accuracy, Concordance, Agreement (Ag) Se = TP/(TP + FN) = TP/nD Sp = TN/(FP + TN) = TN/nC (TP + FN)/(TP + FP + FN + TN)= nd/n PPV = TP/(TP + FP) = TP/nP NPV = TN/(TN + FN) = TN/nN LRP = Se/(1-Sp) LRN = (1-Se)/Sp APre = np/n Ag =(TP + TN)/n Alternative Names Sensitivity = True Positive Rate, Recall, Hit Rate Specificity = True Negative Rate PPV = Precision 1-Specificity = Fall-out, False Positive Rate Vidakovic, B. Se Sp and Relatives January 17, / 26

10 Discussion Imagine a test that classifies all subjects as positive trivially the sensitivity is 100%. Since there are no negatives, the specificity is zero. Likewise, the test that classifies all subjects as negative has a specificity of 100% and zero sensitivity. One of the most important measures is Positive Predictive Value, PPV. It is the proportion of true positives among all positives, T P/nP. Correct only if the population prevalence is well estimated by nd/n, that is, if the table is representative of its population. If the table is formed from a convenience sample, the prevalence (Pre) would be an external information, and positive predictive value is calculated as PPV = Se Pre Se Pre+(1 Sp) (1 Pre). Vidakovic, B. Se Sp and Relatives January 17, / 26

11 More Discussion Why is the Positive Predictive Value so important? Imagine almost perfect test for a particular disease, with sensitivity 100% and specificity of 99%. If the prevalence of the disease in population is 10%, then approximately among 10 positives there would be one false positive. However, if the population prevalence is 1/10000, then approximately for each true positive there would be 100 false positives. The Likelihood Ratio Positive represents the odds that a positive test result would be found in a patient with, versus without, a disease. The The Likelihood Ratio Negative represents the odds that a negative test result would be found in a patient without, versus with, a disease. For example, Post-test Disease Odds = LRP Pre-test Disease Odds. Post-test No-Disease Odds = LRN Pre-test No-Disease Odds. Vidakovic, B. Se Sp and Relatives January 17, / 26

12 D-Dimer Example The data below consist of quantitative plasma D-dimer levels among patients undergoing pulmonary angiography for suspected pulmonary embolism (PE). The patients who exceed the threshold of 500 ng/ml are classified as positive. The gold standard for PE is the pulmonary angiogram. Goldhaber et al. (1993), from Brigham and Women s Hospital at Harvard Medical School, considered a population of patients who are suspected of PE based on a battery of symptoms. The summarized data for 173 patients are provided in the table below: acute PE present no PE present total positive (D-d 500 ng/ml) negative (D-d < 500 ng/ml) total Vidakovic, B. Se Sp and Relatives January 17, / 26

13 sesp.m function [se sp pre ppv npv lrp ag yi] = sesp(tp, fp, fn, tn) % %INPUT: 2x2 Contingency (Confusion) Table % tp-true positives; fp-false positives; % fn-false negatives; tn-true negatives % % OUTPUT % se-sensitivity, sp-specificity, pre-prevalence(for random sample) % ppv-positive predictive value, npv-negative predictive value, % lrp - likelihood ratio positive, ag-agreement % EXAMPLE OF USE: % D-dimer as a test for acute PE (Goldhaber et al, 1993) % [s1, s2, p1, p2, p3, lr, a, yi]=sesp(42,96,3,32); % [a b c d e f g h] = sesp(42,96,3,32); Se Sp Pre PPV NPV LRP Ag Yi Vidakovic, B. Se Sp and Relatives January 17, / 26

14 Comparing Tests Youden Index To choose the best test out of a multiplicity of tests obtained by changing the threshold and generating the ROC curve, select the test corresponding to the point in the ROC curve most distant from the diagonal. This point corresponds to a Youden index YI = max i Se i +Sp i 1 2, where Se i and Sp i are, respectively, the sensitivity and specificity for the ith test. In the expression for Youden index the constant 2 is taken because of geometric interpretation (distance from the diagonal), often the constant is omitted. Vidakovic, B. Se Sp and Relatives January 17, / 26

15 Comparing Tests F-measure Another objective criterion to choose from the multiplicity of thresholds in a test is F-measure or F-index. It is defined as a harmonic average of Sensitivity and and Positive Predictive Value, F = 2 1/Se+1/PPV. It is easy to see that F is the ratio of TP and an average of nd and np, F = TP (nd+np)/2. The test that maximizes F-measure is favored. Vidakovic, B. Se Sp and Relatives January 17, / 26

16 k Independent Tests, Parallel and Serial Strategies In the parallel strategy the combination is positive if at least one test is positive. It is negative if all tests are negative. Se = 1 [(1 Se 1 ) (1 Se 2 ) (1 Se k )] Sp = Sp 1 Sp 2 Sp k. The overall sensitivity is larger than any individual sensitivity, and specificity smaller than any individual specificity. In the serial strategy, the combination is positive if all tests are positive. It is negative if at least one test is negative. Se = Se 1 Se 2 Se k. Sp = 1 [(1 Sp 1 ) (1 Sp 2 ) (1 Sp k )] The overall sensitivity is smaller than any individual sensitivity, while the specificity is larger than any individual specificity. Vidakovic, B. Se Sp and Relatives January 17, / 26

17 Parikh et al (2008) Parikh et al (2008) provide an example of combining two tests for sarcoidosis. Ocular sarcoidosis is an idiopathic multi-system granulomatous disease, where the diagnosis is made by a combination of clinical, radiological and laboratory findings. The gold standard is a tissue biopsy showing noncaseating granuloma. Angiotensin-converting enzyme (ACE) test has a sensitivity of 73% and a specificity of 83% to diagnose sarcoidosis. Abnormal gallium scan (AGS) has a sensitivity of 91% and a specificity of 84%. Though individually the specificity of either test is not impressive, for the serial combination, the specificity becomes Sp = 1 (1 0.84) (1 0.83) = 1 ( ) = The combination sensitivity becomes = Vidakovic, B. Se Sp and Relatives January 17, / 26

18 ROC Curves The ROC (receiver-operating-characteristic) curve is defined as a graphical plot of sensitivity vs. (1 - specificity). To increase apparently low specificity in the previous D-dimer analysis the threshold for a positive is increased from 500 ng/ml to 650 ng/ml. acute PE present no PE present positive (D-d 650 ng/ml) negative (D-d < 650 ng/ml) total This new table results in [a b c d e f] = sesp(31,33,14,95); Se Sp Pre PPV NPV LRP Ag YI Vidakovic, B. Se Sp and Relatives January 17, / 26

19 ROC Curves Combining this with the output of 500 ng/ml threshold, we get vectors 1-sp = [ ], and se = [ ] (0.75,0.9333) 0.8 sensitivity (0.2578,0.6889) Area = specificity The m-file RocDdimer.m plots this rudimentary ROC curve. Vidakovic, B. Se Sp and Relatives January 17, / 26

20 ROC Curves The curve is rudimentary since it is based on only two tests. Note that points (0,0) and (1,1) always belong to ROC curves. These two points correspond to the trivial tests in which all patients test negative or all patients test positive. The area under the ROC curve (AUC), is a well accepted measure of test performance. The closer the area is to 1, the more unbalanced the ROC curve, implying that both sensitivity and specificity of the test are high. It is interesting that some researchers assign an academic scale to AUC as an informal measure of test performance. Vidakovic, B. Se Sp and Relatives January 17, / 26

21 ROC Curves AUC performance A B C D F MATLAB code auc.m calculates AUC when the vectors 1-specificity and sensitivity are supplied. function A = auc(csp, se) % A = auc(csp,se) computes the area under the ROC curve % where csp and se are vectors representing (1-specificity) % and (sensitivity), used to plot the ROC curve % The length of the vectors has to be the same Vidakovic, B. Se Sp and Relatives January 17, / 26

22 Exercise 1. HAAH Improves the Test for Prostate Cancer. Keith et al, 2008 A new procedure based on a protein called human aspartyl (asparaginyl) beta-hydroxylase, or HAAH, adds to the accuracy of standard prostate-specific antigen (PSA) testing for prostate cancer. The findings were presented at the 2008 Genitourinary Cancers Symposium (Keith et al, 2008). The research involved 233 men with prostate cancer and 43 healthy men, all over 50 years old. Researchers reported that the HAAH test had an overall sensitivity of 95% and specificity of 93%. Vidakovic, B. Se Sp and Relatives January 17, / 26

23 Exercise 1, continued (a) From the reported percentages, form a table with true positives, false positives, true negatives and false negatives (tp, fp, tn, and fn). You will need to round to the nearest integers since the specificity and sensitivity were reported as integer percents. (b) Suppose that for the men of age 50+ in US, the prevalence of prostate cancer is 7%. Suppose, Jim Smith is randomly selected from this group and tested positive with HAAH test. What is the probability that Jim has prostate cancer. (c) Suppose that Bill Schneider is randomly selected person from the sample of n = 276 (= ) subjects involved in the HAAH study. What is the probability that Bill has prostate cancer if he tests positive and no other information is available. How do you call this probability? What is different here from (b)? Vidakovic, B. Se Sp and Relatives January 17, / 26

24 Solution (a) (a) Recall that sensitivity is the ratio of true positives and total number of subjects with the disease. Since 233 subjects are with the disease, the sensitivity of 95% means that there are = true positives. Thus tp = 221. This gives = 12 false negatives, thus fn = 12. Similarly, 43 subjects do not have disease. Since specificity is 0.93, the true negatives are = This means tn=40 and fp = 3. The table is disease no disease total test positive tp=221 fp=3 tot.pos = 224 test negative fn=12 tn=40 tot.neg = 52 total tot.dis=233 tot.ndis=43 total=276 Vidakovic, B. Se Sp and Relatives January 17, / 26

25 (b) PPV is If the prevalence is an external info, P( disease test positive) sensitivity prevalence = sensitivity prevalence +(1-specificity) (1- prevalence) 221/233 7/100 = 221/223 7/100+3/43 93/100 = (c) PPV is If the table is representative of population, PPV = tp tp+fp = 221/224 = Vidakovic, B. Se Sp and Relatives January 17, / 26

26 Discussion In both (b) and (c) we have found positive predicted value, that is P( disease present test positive). However, (b) and (c) differ in the information where the subject comes from, which is critical for the prevalence. If the subject comes from the general population then the prevalence is If we selected the subject from the group involved in this study (that is, selected person is one of 276 subjects), then the prevalence refers to this particular group and is tp+fn = 233/276. total n Vidakovic, B. Se Sp and Relatives January 17, / 26

27 Exercise 2. Hypothyroidism Low values of a total thyroxine (T4) test can be indicative of hypothyroidism (Goldstein and Mushlin, 1987). Hypothyroidism is a condition in which the body lacks sufficient thyroid hormone. Since the main purpose of thyroid hormone is to run the body s metabolism, it is understandable that people with this condition will have symptoms associated with a slow metabolism. Over five million Americans have this common medical condition. A total of 195 patients, among which 59 have confirmed hypothyroidism, have been tested for the level of T4. If the patients with T 4-level 5 are considered positive for hypothyroidism, the following table is obtained: T 4 value Hypothyroid Euthyroid Total Positive, T Negative, T 4 > Total Vidakovic, B. Se Sp and Relatives January 17, / 26

28 Exercise 2, continued However, if the thresholds for T4 are 6, 7, 8 and 9, the following tables are obtained. T4 value Hypothyroid Euthyroid Total Positive, T Negative, T4 > Total T4 value Hypothyroid Euthyroid Total Positive, T Negative, T4 > Total T4 value Hypothyroid Euthyroid Total Positive, T Negative, T4 > Total T4 value Hypothyroid Euthyroid Total Positive, T Negative, T4 > Total Vidakovic, B. Se Sp and Relatives January 17, / 26

29 Solution to Exercise 2 hypothiroidism.m [a b c d e f h] = sesp( 35, 5, 24, 131); % Se Sp Pre PPV NPV LRP Ag YI % [a b c d e f h] = sesp( 39, 10, 20, 126); % Se Sp Pre PPV NPV LRP Ag YI % [a b c d e f h] = sesp(46, 29, 13, 107); % Se Sp Pre PPV NPV LRP Ag YI % [a b c d e f h] = sesp(51, 61, 8, 75); % Se Sp Pre PPV NPV LRP Ag YI % [a b c d e f h] = sesp(57, 96, 2, 40); % Se Sp Pre PPV NPV LRP Ag YI % se = [0, , , , , , 1]; csp = [0, , , , , , 1]; figure(1) plot(csp, se, r- ) hold on plot(csp, se, ro ) plot([0 1],[0 1], r- ) xlabel( 1 - specificity ) ylabel( sensitivity ) a = auc(csp, se) % a = (Grade of B). Vidakovic, B. Se Sp and Relatives January 17, / 26

30 Solution to Exercise 2 Roc Curve Sensitivity ( ,0.6610) Area = Specificity Vidakovic, B. Se Sp and Relatives January 17, / 26

Diagnostic tests, Laboratory tests

Diagnostic tests, Laboratory tests Diagnostic tests, Laboratory tests I. Introduction II. III. IV. Informational values of a test Consequences of the prevalence rate Sequential use of 2 tests V. Selection of a threshold: the ROC curve VI.

More information

Statistics, Probability and Diagnostic Medicine

Statistics, Probability and Diagnostic Medicine Statistics, Probability and Diagnostic Medicine Jennifer Le-Rademacher, PhD Sponsored by the Clinical and Translational Science Institute (CTSI) and the Department of Population Health / Division of Biostatistics

More information

Hayden Smith, PhD, MPH /\ v._

Hayden Smith, PhD, MPH /\ v._ Hayden Smith, PhD, MPH.. + /\ v._ Information and clinical examples provided in presentation are strictly for educational purposes, and should not be substituted for clinical guidelines or up-to-date medical

More information

Various performance measures in Binary classification An Overview of ROC study

Various performance measures in Binary classification An Overview of ROC study Various performance measures in Binary classification An Overview of ROC study Suresh Babu. Nellore Department of Statistics, S.V. University, Tirupati, India E-mail: sureshbabu.nellore@gmail.com Abstract

More information

Probability Revision. MED INF 406 Assignment 5. Golkonda, Jyothi 11/4/2012

Probability Revision. MED INF 406 Assignment 5. Golkonda, Jyothi 11/4/2012 Probability Revision MED INF 406 Assignment 5 Golkonda, Jyothi 11/4/2012 Problem Statement Assume that the incidence for Lyme disease in the state of Connecticut is 78 cases per 100,000. A diagnostic test

More information

METHODS FOR DETECTING CERVICAL CANCER

METHODS FOR DETECTING CERVICAL CANCER Chapter III METHODS FOR DETECTING CERVICAL CANCER 3.1 INTRODUCTION The successful detection of cervical cancer in a variety of tissues has been reported by many researchers and baseline figures for the

More information

Data that can be classified as belonging to a distinct number of categories >>result in categorical responses. And this includes:

Data that can be classified as belonging to a distinct number of categories >>result in categorical responses. And this includes: This sheets starts from slide #83 to the end ofslide #4. If u read this sheet you don`t have to return back to the slides at all, they are included here. Categorical Data (Qualitative data): Data that

More information

INTRODUCTION TO MACHINE LEARNING. Decision tree learning

INTRODUCTION TO MACHINE LEARNING. Decision tree learning INTRODUCTION TO MACHINE LEARNING Decision tree learning Task of classification Automatically assign class to observations with features Observation: vector of features, with a class Automatically assign

More information

Knowledge Discovery and Data Mining. Testing. Performance Measures. Notes. Lecture 15 - ROC, AUC & Lift. Tom Kelsey. Notes

Knowledge Discovery and Data Mining. Testing. Performance Measures. Notes. Lecture 15 - ROC, AUC & Lift. Tom Kelsey. Notes Knowledge Discovery and Data Mining Lecture 15 - ROC, AUC & Lift Tom Kelsey School of Computer Science University of St Andrews http://tom.home.cs.st-andrews.ac.uk twk@st-andrews.ac.uk Tom Kelsey ID5059-17-AUC

More information

ROC (Receiver Operating Characteristic) Curve Analysis

ROC (Receiver Operating Characteristic) Curve Analysis ROC (Receiver Operating Characteristic) Curve Analysis Julie Xu 17 th November 2017 Agenda Introduction Definition Accuracy Application Conclusion Reference 2017 All Rights Reserved Confidential for INC

More information

Introduction to ROC analysis

Introduction to ROC analysis Introduction to ROC analysis Andriy I. Bandos Department of Biostatistics University of Pittsburgh Acknowledgements Many thanks to Sam Wieand, Nancy Obuchowski, Brenda Kurland, and Todd Alonzo for previous

More information

Screening (Diagnostic Tests) Shaker Salarilak

Screening (Diagnostic Tests) Shaker Salarilak Screening (Diagnostic Tests) Shaker Salarilak Outline Screening basics Evaluation of screening programs Where we are? Definition of screening? Whether it is always beneficial? Types of bias in screening?

More information

BMI 541/699 Lecture 16

BMI 541/699 Lecture 16 BMI 541/699 Lecture 16 Where we are: 1. Introduction and Experimental Design 2. Exploratory Data Analysis 3. Probability 4. T-based methods for continous variables 5. Proportions & contingency tables -

More information

7/17/2013. Evaluation of Diagnostic Tests July 22, 2013 Introduction to Clinical Research: A Two week Intensive Course

7/17/2013. Evaluation of Diagnostic Tests July 22, 2013 Introduction to Clinical Research: A Two week Intensive Course Evaluation of Diagnostic Tests July 22, 2013 Introduction to Clinical Research: A Two week Intensive Course David W. Dowdy, MD, PhD Department of Epidemiology Johns Hopkins Bloomberg School of Public Health

More information

SYSTEMATIC REVIEWS OF TEST ACCURACY STUDIES

SYSTEMATIC REVIEWS OF TEST ACCURACY STUDIES Biomarker & Test Evaluation Program SYSTEMATIC REVIEWS OF TEST ACCURACY STUDIES Patrick MM Bossuyt Structure 1. Clinical Scenarios 2. Test Accuracy Studies 3. Systematic Reviews 4. Meta-Analysis 5.

More information

Critical reading of diagnostic imaging studies. Lecture Goals. Constantine Gatsonis, PhD. Brown University

Critical reading of diagnostic imaging studies. Lecture Goals. Constantine Gatsonis, PhD. Brown University Critical reading of diagnostic imaging studies Constantine Gatsonis Center for Statistical Sciences Brown University Annual Meeting Lecture Goals 1. Review diagnostic imaging evaluation goals and endpoints.

More information

Evidence-Based Medicine: Diagnostic study

Evidence-Based Medicine: Diagnostic study Evidence-Based Medicine: Diagnostic study What is Evidence-Based Medicine (EBM)? Expertise in integrating 1. Best research evidence 2. Clinical Circumstance 3. Patient values in clinical decisions Haynes,

More information

Chapter 10. Screening for Disease

Chapter 10. Screening for Disease Chapter 10 Screening for Disease 1 Terminology Reliability agreement of ratings/diagnoses, reproducibility Inter-rater reliability agreement between two independent raters Intra-rater reliability agreement

More information

Week 2 Video 3. Diagnostic Metrics

Week 2 Video 3. Diagnostic Metrics Week 2 Video 3 Diagnostic Metrics Different Methods, Different Measures Today we ll continue our focus on classifiers Later this week we ll discuss regressors And other methods will get worked in later

More information

Understanding diagnostic tests. P.J. Devereaux, MD, PhD McMaster University

Understanding diagnostic tests. P.J. Devereaux, MD, PhD McMaster University Understanding diagnostic tests P.J. Devereaux, MD, PhD McMaster University Goals Understand sensitivity and specificity inform why they are in general problematic Discuss likelihood ratios Inform pretest

More information

Biochemical investigations in clinical medicine

Biochemical investigations in clinical medicine Biochemical investigations in clinical medicine Presented by Dr. Mohammad Saadeh The requirements for the Clinical Chemistry Philadelphia University Faculty of pharmacy Introduction What it is? Clinical

More information

An Introduction to ROC curves. Mark Whitehorn. Mark Whitehorn

An Introduction to ROC curves. Mark Whitehorn. Mark Whitehorn An Introduction to ROC curves Mark Whitehorn Mark Whitehorn It s all about me Prof. Mark Whitehorn Emeritus Professor of Analytics Computing University of Dundee Consultant Writer (author) m.a.f.whitehorn@dundee.ac.uk

More information

MAESTRO TRIAL FINAL RESULTS. Gisela L.G. Menezes, MD, PhD

MAESTRO TRIAL FINAL RESULTS. Gisela L.G. Menezes, MD, PhD MAESTRO TRIAL FINAL RESULTS Gisela L.G. Menezes, MD, PhD MAESTRO Angiogenesis Metastasis How does OA work? Malignant Benign How does OA work? D O How does OA work? Optoacoustic Imaging Fibroadenoma IDC

More information

Meta-analysis of diagnostic research. Karen R Steingart, MD, MPH Chennai, 15 December Overview

Meta-analysis of diagnostic research. Karen R Steingart, MD, MPH Chennai, 15 December Overview Meta-analysis of diagnostic research Karen R Steingart, MD, MPH karenst@uw.edu Chennai, 15 December 2010 Overview Describe key steps in a systematic review/ meta-analysis of diagnostic test accuracy studies

More information

Introduction to Epidemiology Screening for diseases

Introduction to Epidemiology Screening for diseases Faculty of Medicine Introduction to Community Medicine Course (31505201) Unit 4 Epidemiology Introduction to Epidemiology Screening for diseases By Hatim Jaber MD MPH JBCM PhD 15 +17-11- 2016 1 Introduction

More information

Assessment of performance and decision curve analysis

Assessment of performance and decision curve analysis Assessment of performance and decision curve analysis Ewout Steyerberg, Andrew Vickers Dept of Public Health, Erasmus MC, Rotterdam, the Netherlands Dept of Epidemiology and Biostatistics, Memorial Sloan-Kettering

More information

Clinical Decision Analysis

Clinical Decision Analysis Clinical Decision Analysis Terminology Sensitivity (Hit True Positive) Specificity (Correct rejection True Negative) Positive predictive value Negative predictive value The fraction of those with the disease

More information

PRECISION IMAGING: QUANTITATIVE, MOLECULAR AND IMAGE-GUIDED TECHNOLOGIES

PRECISION IMAGING: QUANTITATIVE, MOLECULAR AND IMAGE-GUIDED TECHNOLOGIES PRECISION IMAGING: QUANTITATIVE, MOLECULAR AND IMAGE-GUIDED TECHNOLOGIES Day 3 Authors: Tade, Funmilayo; Akin-Akintayo Oladunni; Schuster, David M. Lab Training Module 1: Introduction to the basics of

More information

Bioengineering and World Health. Lecture Twelve

Bioengineering and World Health. Lecture Twelve Bioengineering and World Health Lecture Twelve Four Questions What are the major health problems worldwide? Who pays to solve problems in health care? How can technology solve health care problems? How

More information

Evaluation of diagnostic tests

Evaluation of diagnostic tests Evaluation of diagnostic tests Biostatistics and informatics Miklós Kellermayer Overlapping distributions Assumption: A classifier value (e.g., diagnostic parameter, a measurable quantity, e.g., serum

More information

CHAPTER 2 MAMMOGRAMS AND COMPUTER AIDED DETECTION

CHAPTER 2 MAMMOGRAMS AND COMPUTER AIDED DETECTION 9 CHAPTER 2 MAMMOGRAMS AND COMPUTER AIDED DETECTION 2.1 INTRODUCTION This chapter provides an introduction to mammogram and a description of the computer aided detection methods of mammography. This discussion

More information

Prostate Cancer. Biomedical Engineering for Global Health. Lecture Fourteen. Early Detection. Prostate Cancer: Statistics

Prostate Cancer. Biomedical Engineering for Global Health. Lecture Fourteen. Early Detection. Prostate Cancer: Statistics Biomedical Engineering for Global Health Lecture Fourteen Prostate Cancer Early Detection Prostate Cancer: Statistics Prostate gland contributes enzymes, nutrients and other secretions to semen. United

More information

Evidence Based Medicine: Articles of Diagnosis

Evidence Based Medicine: Articles of Diagnosis Evidence Based Medicine: Articles of Diagnosis Duke University School of Medicine EBM Course March 5, 2013 Jamie Fox, MD David Ming, MD Departments of Internal Medicine and Pediatrics Diagnosis Diagnostic

More information

Comparing Two ROC Curves Independent Groups Design

Comparing Two ROC Curves Independent Groups Design Chapter 548 Comparing Two ROC Curves Independent Groups Design Introduction This procedure is used to compare two ROC curves generated from data from two independent groups. In addition to producing a

More information

3. Model evaluation & selection

3. Model evaluation & selection Foundations of Machine Learning CentraleSupélec Fall 2016 3. Model evaluation & selection Chloé-Agathe Azencot Centre for Computational Biology, Mines ParisTech chloe-agathe.azencott@mines-paristech.fr

More information

Health Studies 315: Handouts. Health Studies 315: Handouts

Health Studies 315: Handouts. Health Studies 315: Handouts Health Studies 315: Handouts Health Studies 315: Handouts l Lecture Notes l Last YearÍs Exam l Article: Wagner, JM, McKinney, P, Carpenter, JL. Does this patient have appendicitis? JAMA 276(19):1589-1594

More information

Christina Martin Kazi Russell MED INF 406 INFERENCING Session 8 Group Project November 15, 2014

Christina Martin Kazi Russell MED INF 406 INFERENCING Session 8 Group Project November 15, 2014 INFERENCING (HW 8) 1 Christina Martin Kazi Russell MED INF 406 INFERENCING Session 8 Group Project November 15, 2014 Page 2 The Clinical Decision Support System designed to utilize the Training Set data

More information

Review. Imagine the following table being obtained as a random. Decision Test Diseased Not Diseased Positive TP FP Negative FN TN

Review. Imagine the following table being obtained as a random. Decision Test Diseased Not Diseased Positive TP FP Negative FN TN Outline 1. Review sensitivity and specificity 2. Define an ROC curve 3. Define AUC 4. Non-parametric tests for whether or not the test is informative 5. Introduce the binormal ROC model 6. Discuss non-parametric

More information

Diagnostic Test. H. Risanto Siswosudarmo Department of Obstetrics and Gynecology Faculty of Medicine, UGM Jogjakarta. RS Sardjito

Diagnostic Test. H. Risanto Siswosudarmo Department of Obstetrics and Gynecology Faculty of Medicine, UGM Jogjakarta. RS Sardjito ب س م الل ه الر ح م ن الر ح يم RS Sardjito Diagnostic Test Gold standard New (test Disease No Disease Column Total Posi*ve a b a+b Nega*ve c d c+d Row Total a+c b+d N H. Risanto Siswosudarmo Department

More information

Systematic Reviews and meta-analyses of Diagnostic Test Accuracy. Mariska Leeflang

Systematic Reviews and meta-analyses of Diagnostic Test Accuracy. Mariska Leeflang Systematic Reviews and meta-analyses of Diagnostic Test Accuracy Mariska Leeflang m.m.leeflang@amc.uva.nl This presentation 1. Introduction: accuracy? 2. QUADAS-2 exercise 3. Meta-analysis of diagnostic

More information

sickness, disease, [toxicity] Hard to quantify

sickness, disease, [toxicity] Hard to quantify BE.104 Spring Epidemiology: Test Development and Relative Risk J. L. Sherley Agent X? Cause Health First, Some definitions Morbidity = Mortality = sickness, disease, [toxicity] Hard to quantify death Easy

More information

4 Diagnostic Tests and Measures of Agreement

4 Diagnostic Tests and Measures of Agreement 4 Diagnostic Tests and Measures of Agreement Diagnostic tests may be used for diagnosis of disease or for screening purposes. Some tests are more effective than others, so we need to be able to measure

More information

the standard deviation (SD) is a measure of how much dispersion exists from the mean SD = square root (variance)

the standard deviation (SD) is a measure of how much dispersion exists from the mean SD = square root (variance) Normal distribution The normal distribution is also known as the Gaussian distribution or 'bell-shaped' distribution. It describes the spread of many biological and clinical measurements Properties of

More information

NAÏVE BAYES CLASSIFIER AND FUZZY LOGIC SYSTEM FOR COMPUTER AIDED DETECTION AND CLASSIFICATION OF MAMMAMOGRAPHIC ABNORMALITIES

NAÏVE BAYES CLASSIFIER AND FUZZY LOGIC SYSTEM FOR COMPUTER AIDED DETECTION AND CLASSIFICATION OF MAMMAMOGRAPHIC ABNORMALITIES NAÏVE BAYES CLASSIFIER AND FUZZY LOGIC SYSTEM FOR COMPUTER AIDED DETECTION AND CLASSIFICATION OF MAMMAMOGRAPHIC ABNORMALITIES 1 MARJUN S. SEQUERA, 2 SHERWIN A. GUIRNALDO, 3 ISIDRO D. PERMITES JR. 1 Faculty,

More information

About OMICS International

About OMICS International About OMICS International OMICS International through its Open Access Initiative is committed to make genuine and reliable contributions to the scientific community. OMICS International hosts over 700

More information

4. Model evaluation & selection

4. Model evaluation & selection Foundations of Machine Learning CentraleSupélec Fall 2017 4. Model evaluation & selection Chloé-Agathe Azencot Centre for Computational Biology, Mines ParisTech chloe-agathe.azencott@mines-paristech.fr

More information

Net Reclassification Risk: a graph to clarify the potential prognostic utility of new markers

Net Reclassification Risk: a graph to clarify the potential prognostic utility of new markers Net Reclassification Risk: a graph to clarify the potential prognostic utility of new markers Ewout Steyerberg Professor of Medical Decision Making Dept of Public Health, Erasmus MC Birmingham July, 2013

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

VU Biostatistics and Experimental Design PLA.216

VU Biostatistics and Experimental Design PLA.216 VU Biostatistics and Experimental Design PLA.216 Julia Feichtinger Postdoctoral Researcher Institute of Computational Biotechnology Graz University of Technology Outline for Today About this course Background

More information

Sensitivity, specicity, ROC

Sensitivity, specicity, ROC Sensitivity, specicity, ROC Thomas Alexander Gerds Department of Biostatistics, University of Copenhagen 1 / 53 Epilog: disease prevalence The prevalence is the proportion of cases in the population today.

More information

MEDICAL SCORING FOR BREAST CANCER RECURRENCE. Nurul Husna bt Jamian UiTM (Perak), Tapah Campus

MEDICAL SCORING FOR BREAST CANCER RECURRENCE. Nurul Husna bt Jamian UiTM (Perak), Tapah Campus MEDICAL SCORING FOR BREAST CANCER RECURRENCE Nurul Husna bt Jamian UiTM (Perak), Tapah Campus SAS GLOBAL FORUM 2014 Overview Introduction Methodology Analysis and Findings Conclusion Q&A INTRODUCTION Breast

More information

Module Overview. What is a Marker? Part 1 Overview

Module Overview. What is a Marker? Part 1 Overview SISCR Module 7 Part I: Introduction Basic Concepts for Binary Classification Tools and Continuous Biomarkers Kathleen Kerr, Ph.D. Associate Professor Department of Biostatistics University of Washington

More information

Behavioral Data Mining. Lecture 4 Measurement

Behavioral Data Mining. Lecture 4 Measurement Behavioral Data Mining Lecture 4 Measurement Outline Hypothesis testing Parametric statistical tests Non-parametric tests Precision-Recall plots ROC plots Hardware update Icluster machines are ready for

More information

ROC Curves (Old Version)

ROC Curves (Old Version) Chapter 545 ROC Curves (Old Version) Introduction This procedure generates both binormal and empirical (nonparametric) ROC curves. It computes comparative measures such as the whole, and partial, area

More information

Introduction to diagnostic accuracy meta-analysis. Yemisi Takwoingi October 2015

Introduction to diagnostic accuracy meta-analysis. Yemisi Takwoingi October 2015 Introduction to diagnostic accuracy meta-analysis Yemisi Takwoingi October 2015 Learning objectives To appreciate the concept underlying DTA meta-analytic approaches To know the Moses-Littenberg SROC method

More information

Diagnostic Testing. Coniecturalem artem esse medicinam

Diagnostic Testing. Coniecturalem artem esse medicinam Diagnostic Testing Coniecturalem artem esse medicinam Game of Dice A: a fair die shows an even number B: a fair die shows at least 4 points A: B: A B: P(A=1/2 P(B=1/2 P(A B=2/6 P(A B = 2/6 > 1/4 = 1/2

More information

Finding Good Diagnosis Studies

Finding Good Diagnosis Studies Finding Good Diagnosis Studies n MESH Term Sensitivity and Specificity n Sensitivity prob that someone with disease will test positive (Pr [+ D]) true positive n Specificity prob that someone without the

More information

Lecture 14 Screening tests and result interpretation

Lecture 14 Screening tests and result interpretation Faculty of Medicine Epidemiology and Biostatistics الوبائيات واإلحصاء الحيوي (31505204) Lecture 14 Screening tests and result interpretation By Hatim Jaber MD MPH JBCM PhD 12-7-2017 1 1. Basic epidemiological

More information

Supplemental Information

Supplemental Information ARTICLE Supplemental Information This section contains additional detail about alternative scores that were considered for the M-CHAT-R/F (see Supplemental Appendix), as well as additional information

More information

Performance Evaluation of Machine Learning Algorithms in the Classification of Parkinson Disease Using Voice Attributes

Performance Evaluation of Machine Learning Algorithms in the Classification of Parkinson Disease Using Voice Attributes Performance Evaluation of Machine Learning Algorithms in the Classification of Parkinson Disease Using Voice Attributes J. Sujatha Research Scholar, Vels University, Assistant Professor, Post Graduate

More information

Example - Birdkeeping and Lung Cancer - Interpretation. Lecture 20 - Sensitivity, Specificity, and Decisions. What do the numbers not mean...

Example - Birdkeeping and Lung Cancer - Interpretation. Lecture 20 - Sensitivity, Specificity, and Decisions. What do the numbers not mean... Odds Ratios Example - Birdkeeping and Lung Cancer - Interpretation Lecture 20 - Sensitivity, Specificity, and Decisions Sta102 / BME102 Colin Rundel April 16, 2014 Estimate Std. Error z value Pr(> z )

More information

Predictive Models for Healthcare Analytics

Predictive Models for Healthcare Analytics Predictive Models for Healthcare Analytics A Case on Retrospective Clinical Study Mengling Mornin Feng mfeng@mit.edu mornin@gmail.com 1 Learning Objectives After the lecture, students should be able to:

More information

An Improved Patient-Specific Mortality Risk Prediction in ICU in a Random Forest Classification Framework

An Improved Patient-Specific Mortality Risk Prediction in ICU in a Random Forest Classification Framework An Improved Patient-Specific Mortality Risk Prediction in ICU in a Random Forest Classification Framework Soumya GHOSE, Jhimli MITRA 1, Sankalp KHANNA 1 and Jason DOWLING 1 1. The Australian e-health and

More information

SISCR Module 7 Part I: Introduction Basic Concepts for Binary Biomarkers (Classifiers) and Continuous Biomarkers

SISCR Module 7 Part I: Introduction Basic Concepts for Binary Biomarkers (Classifiers) and Continuous Biomarkers SISCR Module 7 Part I: Introduction Basic Concepts for Binary Biomarkers (Classifiers) and Continuous Biomarkers Kathleen Kerr, Ph.D. Associate Professor Department of Biostatistics University of Washington

More information

Outlier Analysis. Lijun Zhang

Outlier Analysis. Lijun Zhang Outlier Analysis Lijun Zhang zlj@nju.edu.cn http://cs.nju.edu.cn/zlj Outline Introduction Extreme Value Analysis Probabilistic Models Clustering for Outlier Detection Distance-Based Outlier Detection Density-Based

More information

Statistical methods for the meta-analysis of full ROC curves

Statistical methods for the meta-analysis of full ROC curves Statistical methods for the meta-analysis of full ROC curves Oliver Kuss (joint work with Stefan Hirt and Annika Hoyer) German Diabetes Center, Leibniz Institute for Diabetes Research at Heinrich Heine

More information

The Latest Technology from CareFusion

The Latest Technology from CareFusion The Latest Technology from CareFusion Contents 1 Introduction... 2 1.1 Overview... 2 1.2 Scope... 2 2.1 Input Recordings... 2 2.2 Automatic Analysis... 3 2.3 Data Mining... 3 3 Results... 4 3.1 AHI comparison...

More information

COMP90049 Knowledge Technologies

COMP90049 Knowledge Technologies COMP90049 Knowledge Technologies Introduction Classification (Lecture Set4) 2017 Rao Kotagiri School of Computing and Information Systems The Melbourne School of Engineering Some of slides are derived

More information

ROC Curves. I wrote, from SAS, the relevant data to a plain text file which I imported to SPSS. The ROC analysis was conducted this way:

ROC Curves. I wrote, from SAS, the relevant data to a plain text file which I imported to SPSS. The ROC analysis was conducted this way: ROC Curves We developed a method to make diagnoses of anxiety using criteria provided by Phillip. Would it also be possible to make such diagnoses based on a much more simple scheme, a simple cutoff point

More information

Week 2 Video 2. Diagnostic Metrics, Part 1

Week 2 Video 2. Diagnostic Metrics, Part 1 Week 2 Video 2 Diagnostic Metrics, Part 1 Different Methods, Different Measures Today we ll focus on metrics for classifiers Later this week we ll discuss metrics for regressors And metrics for other methods

More information

Introduction. We can make a prediction about Y i based on X i by setting a threshold value T, and predicting Y i = 1 when X i > T.

Introduction. We can make a prediction about Y i based on X i by setting a threshold value T, and predicting Y i = 1 when X i > T. Diagnostic Tests 1 Introduction Suppose we have a quantitative measurement X i on experimental or observed units i = 1,..., n, and a characteristic Y i = 0 or Y i = 1 (e.g. case/control status). The measurement

More information

Meta-analysis of Diagnostic Test Accuracy Studies

Meta-analysis of Diagnostic Test Accuracy Studies GUIDELINE Meta-analysis of Diagnostic Test Accuracy Studies November 2014 Copyright EUnetHTA 2013. All Rights Reserved. No part of this document may be reproduced without an explicit acknowledgement of

More information

CHAPTER 6 HUMAN BEHAVIOR UNDERSTANDING MODEL

CHAPTER 6 HUMAN BEHAVIOR UNDERSTANDING MODEL 127 CHAPTER 6 HUMAN BEHAVIOR UNDERSTANDING MODEL 6.1 INTRODUCTION Analyzing the human behavior in video sequences is an active field of research for the past few years. The vital applications of this field

More information

Analysis of Diabetic Dataset and Developing Prediction Model by using Hive and R

Analysis of Diabetic Dataset and Developing Prediction Model by using Hive and R Indian Journal of Science and Technology, Vol 9(47), DOI: 10.17485/ijst/2016/v9i47/106496, December 2016 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 Analysis of Diabetic Dataset and Developing Prediction

More information

S4. Summary of the GALNS assay validation. Intra-assay variation (within-run precision)

S4. Summary of the GALNS assay validation. Intra-assay variation (within-run precision) S4. Summary of the GALNS assay validation (i.) Intra-assay variation (within-run precision) Intra-assay variation was determined by measuring standard blood samples (low activity standard; medium activity

More information

View from the Technology Evaluation Center (TEC)

View from the Technology Evaluation Center (TEC) View from the Technology Evaluation Center (TEC) Naomi Aronson, Ph.D. Executive Director, TEC Blue Cross and Blue Shield Association IOM Genomics Workshop December 4, 2007 Overview TEC perspective and

More information

Introduction to screening tests. Tim Hanson Department of Statistics University of South Carolina April, 2011

Introduction to screening tests. Tim Hanson Department of Statistics University of South Carolina April, 2011 Introduction to screening tests Tim Hanson Department of Statistics University of South Carolina April, 2011 1 Overview: 1. Estimating test accuracy: dichotomous tests. 2. Estimating test accuracy: continuous

More information

(true) Disease Condition Test + Total + a. a + b True Positive False Positive c. c + d False Negative True Negative Total a + c b + d a + b + c + d

(true) Disease Condition Test + Total + a. a + b True Positive False Positive c. c + d False Negative True Negative Total a + c b + d a + b + c + d Biostatistics and Research Design in Dentistry Reading Assignment Measuring the accuracy of diagnostic procedures and Using sensitivity and specificity to revise probabilities, in Chapter 12 of Dawson

More information

Biomedical Engineering for Global Health

Biomedical Engineering for Global Health Four Questions Biomedical Engineering for Global Health Lecture Eleven What are the major health problems worldwide? Who pays to solve problems in health care? How can technology solve health care problems?

More information

Diagnostic screening. Department of Statistics, University of South Carolina. Stat 506: Introduction to Experimental Design

Diagnostic screening. Department of Statistics, University of South Carolina. Stat 506: Introduction to Experimental Design Diagnostic screening Department of Statistics, University of South Carolina Stat 506: Introduction to Experimental Design 1 / 27 Ties together several things we ve discussed already... The consideration

More information

Derivative-Free Optimization for Hyper-Parameter Tuning in Machine Learning Problems

Derivative-Free Optimization for Hyper-Parameter Tuning in Machine Learning Problems Derivative-Free Optimization for Hyper-Parameter Tuning in Machine Learning Problems Hiva Ghanbari Jointed work with Prof. Katya Scheinberg Industrial and Systems Engineering Department Lehigh University

More information

The cross sectional study design. Population and pre-test. Probability (participants). Index test. Target condition. Reference Standard

The cross sectional study design. Population and pre-test. Probability (participants). Index test. Target condition. Reference Standard The cross sectional study design. and pretest. Probability (participants). Index test. Target condition. Reference Standard Mirella Fraquelli U.O. Gastroenterologia 2 Fondazione IRCCS Cà Granda Ospedale

More information

Predicting Breast Cancer Survivability Rates

Predicting Breast Cancer Survivability Rates Predicting Breast Cancer Survivability Rates For data collected from Saudi Arabia Registries Ghofran Othoum 1 and Wadee Al-Halabi 2 1 Computer Science, Effat University, Jeddah, Saudi Arabia 2 Computer

More information

Computer Models for Medical Diagnosis and Prognostication

Computer Models for Medical Diagnosis and Prognostication Computer Models for Medical Diagnosis and Prognostication Lucila Ohno-Machado, MD, PhD Division of Biomedical Informatics Clinical pattern recognition and predictive models Evaluation of binary classifiers

More information

Diagnostic Algorithms in VTE

Diagnostic Algorithms in VTE Diagnostic Algorithms in VTE Mark H. Meissner, MD Department of Surgery University of Washington School of Medicine Overutilization of Venous Duplex U/S 1983-1993 (Zweibel et al, Australasian Rad, 1995)

More information

Screening for Disease

Screening for Disease Screening for Disease An Ounce of Prevention is Worth a Pound of Cure. Actually, an ounce of prevention is better than a pound of cure, but if prevention hasn t been effective, perhaps early identification

More information

Introduction to Meta-analysis of Accuracy Data

Introduction to Meta-analysis of Accuracy Data Introduction to Meta-analysis of Accuracy Data Hans Reitsma MD, PhD Dept. of Clinical Epidemiology, Biostatistics & Bioinformatics Academic Medical Center - Amsterdam Continental European Support Unit

More information

Appraising Diagnostic Test Studies

Appraising Diagnostic Test Studies Appraising Diagnostic Test Studies Martin Bland Prof. of Health Statistics Dept. of Health Sciences University of York http://www-users.york.ac.uk/~mb55/msc/ Diagnostic Test Studies How well does a test

More information

Evidence Based Medicine Prof P Rheeder Clinical Epidemiology. Module 2: Applying EBM to Diagnosis

Evidence Based Medicine Prof P Rheeder Clinical Epidemiology. Module 2: Applying EBM to Diagnosis Evidence Based Medicine Prof P Rheeder Clinical Epidemiology Module 2: Applying EBM to Diagnosis Content 1. Phases of diagnostic research 2. Developing a new test for lung cancer 3. Thresholds 4. Critical

More information

For more information about how to cite these materials visit

For more information about how to cite these materials visit Author(s): Rajesh Mangrulkar, M.D., 2013 License: Unless otherwise noted, this material is made available under the terms of the Creative Commons Attribution Non-commercial Share Alike 3.0 License: http://creativecommons.org/licenses/by-nc-sa/3.0/

More information

Designing Studies of Diagnostic Imaging

Designing Studies of Diagnostic Imaging Designing Studies of Diagnostic Imaging Chaya S. Moskowitz, PhD With thanks to Nancy Obuchowski Outline What is study design? Building blocks of imaging studies Strategies to improve study efficiency What

More information

ROC Curve. Brawijaya Professional Statistical Analysis BPSA MALANG Jl. Kertoasri 66 Malang (0341)

ROC Curve. Brawijaya Professional Statistical Analysis BPSA MALANG Jl. Kertoasri 66 Malang (0341) ROC Curve Brawijaya Professional Statistical Analysis BPSA MALANG Jl. Kertoasri 66 Malang (0341) 580342 ROC Curve The ROC Curve procedure provides a useful way to evaluate the performance of classification

More information

Diagnostic Reasoning: Approach to Clinical Diagnosis Based on Bayes Theorem

Diagnostic Reasoning: Approach to Clinical Diagnosis Based on Bayes Theorem CHAPTER 75 Diagnostic Reasoning: Approach to Clinical Diagnosis Based on Bayes Theorem A. Mohan, K. Srihasam, S.K. Sharma Introduction Doctors caring for patients in their everyday clinical practice are

More information

1 Diagnostic Test Evaluation

1 Diagnostic Test Evaluation 1 Diagnostic Test Evaluation The Receiver Operating Characteristic (ROC) curve of a diagnostic test is a plot of test sensitivity (the probability of a true positive) against 1.0 minus test specificity

More information

I got it from Agnes- Tom Lehrer

I got it from Agnes- Tom Lehrer Epidemiology I got it from Agnes- Tom Lehrer I love my friends and they love me We're just as close as we can be And just because we really care Whatever we get, we share! I got it from Agnes She got it

More information

LOGISTIC REGRESSION VERSUS NEURAL

LOGISTIC REGRESSION VERSUS NEURAL Monografías del Seminario Matemático García de Galdeano 33, 245 252 (2006) LOGISTIC REGRESSION VERSUS NEURAL NETWORKS FOR MEDICAL DATA Luis Mariano Esteban Escaño, Gerardo Sanz Saiz, Francisco Javier López

More information

Submitted: February 15, 2013 Posted: March 16, 2013

Submitted: February 15, 2013 Posted: March 16, 2013 1 Submitted: February 15, 2013 Posted: March 16, 2013 TITLE: The results of the validation process of a Modified SGA (Subjective Global Assessment) Nutrition Assessment and Risk Level Tool designed by

More information

COMPUTERIZED SYSTEM DESIGN FOR THE DETECTION AND DIAGNOSIS OF LUNG NODULES IN CT IMAGES 1

COMPUTERIZED SYSTEM DESIGN FOR THE DETECTION AND DIAGNOSIS OF LUNG NODULES IN CT IMAGES 1 ISSN 258-8739 3 st August 28, Volume 3, Issue 2, JSEIS, CAOMEI Copyright 26-28 COMPUTERIZED SYSTEM DESIGN FOR THE DETECTION AND DIAGNOSIS OF LUNG NODULES IN CT IMAGES ALI ABDRHMAN UKASHA, 2 EMHMED SAAID

More information

Psychology, 2010, 1: doi: /psych Published Online August 2010 (

Psychology, 2010, 1: doi: /psych Published Online August 2010 ( Psychology, 2010, 1: 194-198 doi:10.4236/psych.2010.13026 Published Online August 2010 (http://www.scirp.org/journal/psych) Using Generalizability Theory to Evaluate the Applicability of a Serial Bayes

More information

When Overlapping Unexpectedly Alters the Class Imbalance Effects

When Overlapping Unexpectedly Alters the Class Imbalance Effects When Overlapping Unexpectedly Alters the Class Imbalance Effects V. García 1,2, R.A. Mollineda 2,J.S.Sánchez 2,R.Alejo 1,2, and J.M. Sotoca 2 1 Lab. Reconocimiento de Patrones, Instituto Tecnológico de

More information