Decision Support. HAP 752 Advanced Health Informa6on Systems. Janusz Wojtusiak, PhD George Mason University Spring 2014

Size: px
Start display at page:

Download "Decision Support. HAP 752 Advanced Health Informa6on Systems. Janusz Wojtusiak, PhD George Mason University Spring 2014"

Transcription

1 Decision Support HAP 752 Advanced Health Informa6on Systems Janusz Wojtusiak, PhD George Mason University Spring 2014

2 Evidence does not make decisions, people do. - Haynes, Devereaux, GuyaQ (BMJ 2002)

3 A Decision Support System Daniel Kroening, Ofer Strichman, Decision Procedures, Springer, 2008

4 What is a Decision Support System? A decision support system (DSS) is any soyware that supports decision makers in making decisions

5 Decision Support Systems Usually include several elements User interface Model for reasoning (Op6onal) knowledge base Input DSS Output

6 Decision Support Systems Simula6ons Calcula6ons Knowledge- based Alerts Diagnoses Predic6ons Reminders

7 Tradi6onal Compu6ng Input Algorithm Output Input is processed by hard- coded algorithms Algorithms implemented in C++, Java, Perl, Mumps, PHP, or any other programming language

8 Knowledge- based Decision Support Domain Knowledge Input Algorithm Output Algorithms apply reasoning methods based on provided domain knowledge Domain knowledge represents evidence that is applied to cases described in input.

9 Clinical Decision Support Systems Clinical decision support is a process for enhancing health- related decisions and ac6ons, ( ); informa6on delivered can include general clinical knowledge and guidance, intelligently processed pa6ent data, ( ) - HIMSS

10 Clinical Decision Support Systems CDSS are DSS applied in clinical secngs Computer applica6ons that assist with the clinical decision making process: Match pa6ent informa6on with clinical knowledge Communicate results

11 Brief History of CDS in Healthcare Late 1950s ini6al work, not much done Late 1960s Applica6on of Bayes theorem to abdominal pain diagnosis (Unv. Of Leeds), CASNET 1970s first rule- based systems MYCIN, HELP, INTERNIST- I, PIP 1980s golden age of expert systems 1990s inclusion of machine learning 2000s standardiza6on 2010s regula6on, back to simpler systems

12 CDSS vs. Expert Systems Similar in terms of technologies used Different purpose Decision support Modeling expert

13 CDS Five Rights Right Informa6on Right Person Right CDS Interven6on Format Right Channel Right Point of Workflow HIMSS.org

14 CDS Five Rights Source: HIMSS.org

15 How CDSS work? Knowledge base or model Inference engine Interface Standalone system Connected to EMR Integrated Third party tools

16 Inference Engine A set of algorithms that apply knowledge/ models from knowledge base to provided input Includes reasoning methods Logic (strict or fuzzy) Probability Mixed taicarmen.wordpress.com

17 Inference x=3 y=2 Database x=? y=? Database z=? z=10 z = 2x + y Knowledge base z = 2x + y Knowledge base Deduc0on Abduc0on x=3 x1=3 y=2 Database z =?f(x,y) Knowledge base z=10 y1=2 x2=4 y2=3 Database Knowledge base z1=10 z2=? Induc0on Analogy Based on Coiera, 2003

18 Types of Inference Source: Michalski, 2003

19 Deduc6on Truth- preserving inference Given true premises, arrive at true conclusions The most used inference method in CDSS x=3 y=2 Database z=? z = 2x + y Knowledge base Deduc0on

20 Inference in Proposi6onal Logic A form of deduc6ve reasoning. Nota6on (β is derived from α by inference) α Ⱶ β α β

21 Rules of Inference Modus ponens (a.k.a. implica6on- elimina6on) α β, α β Modus tollens (denying the consequent) α β, ~β ~ α

22 Rules of Inference cont. And- elimina6on α 1 α 2 α n α i And- introduc6on α 1, α 2, α n α 1 α 2 α n

23 Rules of Inference cont. Or- introduc6on α i α 1 α 2 α n Unit resolu6on α β, ~ β α There are more inference rules.

24 How Decision Support Systems Do It? What happens if there are many rules? Forward chaining Backward chaining Different queuing strategies

25 Forward Chaining 1. Start with all available data/facts 2. Use all knowledge in knowledge base and inference engine to arrive at more data 3. Repeat 2 un6l goal is reached or no new data can be inferred The method is a direct mul6ple applica6on of modus ponens

26 Forward Chaining Source:

27 Example Facts (data): a, b, c Rules: b & f à g a & d à e a v c à f g & e à z Ques6on: is z true?

28 Forward Chaining Example Facts (data): a, b, c b & f à g a & d à e a v c à f g & e à z Facts: a, b, c, f b & f à g a & d à e a v c à f g & e à z Facts: a, b, c, f, g Not sa6sfied Not sa6sfied Sa6sfied f added to facts Not sa6sfied Sa6sfied g added to facts Not sa6sfied Sa6sfied nothing happens Not sa6sfied

29 Forward Chaining Example Facts (data): a, b, c, f, g b & f à g a & d à e a v c à f g & e à z Sa6sfied nothing happens Not sa6sfied Sa6sfied nothing happens Not sa6sfied Nothing happened stop algorithm Result: z cannot be inferred

30 Backward Chaining 1. Start with goal 2. Iden6fy rules that imply the goal 3. Check if the goal is sa6sfied Yes: stop algorithm No: add all facts from premise of rules to list of goals 4. Repeat 2 and 3 un6l no change

31 Backward Chaining

32 Example Facts (data): a, b, c Rules: b & f à g a & d à e a v c à f g & e à z Ques6on: is z true?

33 Backward Chaining Example Facts (data): a, b, c Goal: z g & e à z Goals: e, g, z b & f à g a & d à e Goals: d, e, f, g, z Rules: b & f à g a & d à e a v c à f g & e à z

34 Backward Chaining Example Facts (data): a, b, c Goals: d, e, f, g, z a v c à f Facts: a, b, c, f Goals: d, e, g, z b & f à g Facts: a, b, c, f, g Goals: d, e, z Rules: b & f à g a & d à e a v c à f g & e à z

35 Backward Chaining Example Facts: a, b, c, f, g Goals: d, e, z a & d à e g & e à z Rules: b & f à g a & d à e a v c à f g & e à z STOP algorithm no changes can be made! Could the algorithm be stopped sooner?

36 Queuing, Priori6zing Tricks Rules wai6ng for execu6on are put into a queue In order for inference algorithms to work more efficiently not all rules are executed equally Priori6es are assigned to rules

37 Abduc6on

38 Abduc6on (Abduc6ve Reasoning)

39 Abduc6on Abduc6on is oyen mistaken with deduc6on These forms of inference are very different The goal of abduc6on is to find the most plausible explana6on Abduc6on is a form of con6ngent inference Falsity preserving Example: finding diagnoses based on symptoms

40 Induc6on Falsity preserving inference Most data mining and machine learning methods do some forms of induc6ve inference Most typical example Scien6fic hypotheses formula6on Learning from data x=3 y=2 Database z =?f(x,y) Knowledge base Induc0on z=10

41 Learning from Data The role of induc6on is to infer plausible hypothesis that explains phenomenon described by data For example, given a set of pa6ents, an algorithm may induce a hypothesis why readmission rate is higher for some pa6ents than others AYer tes6ng, the induced hypothesis can serve as a model for predic6ng readmission for future pa6ents

42 Analogy Combina6on of Induc6on and Deduc6on Example: Pa6ent A has diabetes Pa6ent B is similar to pa6ent A Perhaps pa6ent B also has diabetes x1=3 y1=2 x2=4 y2=3 Database Knowledge base z1=10 z2=? Analogy

43 Uncertainty Again Randomness Probability is a good way to model i.e., out of 100 cases if a condi6on is given, the conclusion follows 80 6mes Vagueness Models imprecision, i.e., high temperature Adequacy Weigh6ng importance of rules to approximate expert behavior

44 Probabilis6c Reasoning The most common way of probabilis6c reasoning in healthcare is through Bayes formula and its variants The formula is counter- intui6ve, so one needs to be careful when plugging in numbers

45 Bayes Formula (odds form) Likelihood Ra6o Posterior Odds Prior Odds

46 Bayes Formula (odds form) If we have condi6onal independence of C1,, Cn in predic6ng H, the formula becomes

47 Bayes Formula Example Predic6ng re- hospitaliza6on risk p(r A,I,S,B)/p(not R A,I,S,B) = p(a R)/p(A not R) p(i R)/p(I not R) * p(s,b R)/p(S,B not R) * pr)/p(not R) A- age, I- insurance, S- surgery, B- hospitalized before Assump6on that age, and insurance are condi6onally independent for predic6ng re- hospitaliza6on

48 Bayesian Networks

49 Problem with Probability Using only probabilis6c models may not be adequate For example, if a certain infec6on is unlikely but fatal it must be adequately considered Probabilis6c models give preference to more common outcomes

50 Problem with Probability Clinicians make big decisions with small data, computers make small decisions with big data

51 Probability and Rules IF Fever AND Spots THEN Measles (with 0.93) Suppose that p(fever)=0.8 and p(spots)=0.65 p(measles) = 0.65 * 0.93 = (we use the lowest probability from condi6on and mul6ply by rule probability)

52 Reasoning with Clinical Knowledge Early example of CDSS (or expert system) is MYCIN (Shortliffe and Buchanan, 1975) Assist physicians who are not experts in an6bio6cs with treatments of blood infec6ons Detect if the pa6ent has significant infec6on Determine possible organisms involved Select set of drugs that may be appropriate Select the most appropriate drug or combina6on of drugs

53 MYCIN Physician User Consulta6on Program Dynamic Pa6ent Data Explana6on Program Sta6c Knowledge Base Knowledge Acquisi6on Program Infec6ous Disease Expert Source: Buchanan and Shortliffe, 1984

54 MYCIN Knowledge base used includes rules IF condi3on 1 holds with certainty x 1 AND condi3on 2 holds with certainty x 2 AND condi3on m holds with certainty x m THEN draw conclusion 1 with certainty y 1 AND draw conclusion 2 with certainty y 2 AND draw conclusion n with certainty y n Certainty factors: CF(ac6on)=CF(premise) x CF(rule) CF(premise)=min(CF(condi6on i )) for all condi6ons i

55 MICIN Rule Example IF 1) the stain of the organism is gramneg, and 2) the morphology of the organism is rod, and 3) the aerobicity of the organism is aerobic THEN there is strongly sugges6ve evidence (0.8) that the class of the organism is enterobacteriaceae Assuming certainty for condi6ons 1.0, 0.8, and 0.6, respec6vely, the certainty of conclusion is?

56 MYCIN Combining Evidence If more than one rule draws conclusion about a parameter, the following formula is used (X and Y are confidence factors from two rules)

57 Popular CDSS Alerts Reminders InfobuQons

58 Alerts Linked to CPOS or EMR systems Used to inform clinicians when something goes wrong Life threatening situa6ons, i.e. drug- drug interac6ons Cost- saving, i.e., duplicate tests Other, i.e., providing guidance, sugges6ng addi6onal tests

59 Alerts Usually implemented using rules Clinicians can override or accept Many studies on how clinicians react to alerts False posi6ves, alert fa6gue, acceptance, frequency Passive vs. ac6ve Knowledge quality Display Level severity of alert

60 Reminders Non- cri6cal situa6ons Immuniza6ons, tests, etc. Cri6cal situa6ons Tests due for ICU pa6ents Need to be integrated into workflow

61 InfobuQons HL7 standard for Context- Aware Knowledge Retrieval Passive form of providing evidence (in contrast to alerts) Many studies analyze use of infobuqons by clinicians

62 InfobuQons Source: Del Fiol et al., 2012

63 Non- Clinical Decision Support Revenue cycle management Medical coding & documenta6on Cost control (i.e., avoiding duplicate tests) Fraud detec6on Management

64 Other Issues

65 Legal Aspects Negligence law product or ac6vity must meet reasonable expecta6on of safety. Liability law product must not be harmful. It is unreasonable to assume that CDSS always make correct assessments physicians don t! Some problems: What happens if CDSS is wrong? What happens if CDSS is right but physician is wrong?

66 Regulatory Aspects Meaningful use Data privacy and security Regula6ons on medical soyware IOM recommends crea6on of a federal agency similar to NTSB (IOM, 2012)

67 Some Barriers and Challenges Alert fa6gue Over- relying on decision support Impact on care process and outcomes Match CDS to user inten6ons Integra6on with work processes & other systems Resources needed Acquisi6on and valida6on of pa6ent data Modeling/upda6ng medical knowledge Valida6on of systems performance

68 Current Direc6ons & Research Sharing Standardiza6on Regula6on Some research areas Where does the knowledge comes from? Natural language processing

69 HAP 752 Janusz Wojtusiak

Sets, Logic, and Probability As Used in Decision Support Systems

Sets, Logic, and Probability As Used in Decision Support Systems Sets, Logic, and Probability As Used in Decision Support Systems HAP 752 Advanced Health Informa6on Systems Janusz Wojtusiak, PhD George Mason University Spring 2014 Part of the inhumanity of the computer

More information

Development and Applica0on of Real- Time Clinical Predic0ve Models

Development and Applica0on of Real- Time Clinical Predic0ve Models Development and Applica0on of Real- Time Clinical Predic0ve Models Ruben Amarasingham, MD, MBA Associate Professor, UT Southwestern Medical Center AHRQ- funded R24 UT Southwestern Center for Pa?ent- Centered

More information

Understanding. Design & Sta/s/cs. in Clinical Trials

Understanding. Design & Sta/s/cs. in Clinical Trials Understanding Design & Sta/s/cs in Clinical Trials 1 Why bother? 2 Experience- Based Medicine? Benjamin Rush Father of American Psychiatry 3 Experience- Based Medicine? Supported blood- lejng as treatment

More information

Knowledge Based Systems

Knowledge Based Systems Knowledge Based Systems Human Expert A human expert is a specialist for a specific differentiated application field who creates solutions to customer problems in this respective field and supports them

More information

Process of Science and hypothesis tes2ng in Behavioral Ecology

Process of Science and hypothesis tes2ng in Behavioral Ecology Process of Science and hypothesis tes2ng in Behavioral Ecology Goal: understand the way that scien2fic hypotheses and methodologies are used to gain knowledge. What separates science from non- science?

More information

INFERENCING STRATEGIES

INFERENCING STRATEGIES INFERENCING STRATEGIES Table of Content Introduction Categories of Reasoning Inference Techniques Control Strategies Comparative Summary of Backward and Forward Chaining Conflict Resolution Goal Agenda

More information

Knowledge is rarely absolutely certain. In expert systems we need a way to say that something is probably but not necessarily true.

Knowledge is rarely absolutely certain. In expert systems we need a way to say that something is probably but not necessarily true. CmSc310 Artificial Intelligence Expert Systems II 1. Reasoning under uncertainty Knowledge is rarely absolutely certain. In expert systems we need a way to say that something is probably but not necessarily

More information

Engage and Empower Pa.ents with Interac.ve Technology. Northeast NAHAM Regional Conference Pa.ent Access: GeBng It Right Upfront October 22-23, 2012

Engage and Empower Pa.ents with Interac.ve Technology. Northeast NAHAM Regional Conference Pa.ent Access: GeBng It Right Upfront October 22-23, 2012 Engage and Empower Pa.ents with Interac.ve Technology Northeast NAHAM Regional Conference Pa.ent Access: GeBng It Right Upfront October 22-23, 2012 NAHAM - Pa.ent Access Services 2 Pa%ent Access Services

More information

Identifying Engineering, Clinical and Patient's Metrics for Evaluating and Quantifying Performance of Brain- Machine Interface Systems

Identifying Engineering, Clinical and Patient's Metrics for Evaluating and Quantifying Performance of Brain- Machine Interface Systems Identifying Engineering, Clinical and Patient's Metrics for Evaluating and Quantifying Performance of Brain- Machine Interface Systems Jose Pepe L. Contreras-Vidal, Ph.D. Department of Electrical & Computer

More information

Chapter 2. Knowledge Representation: Reasoning, Issues, and Acquisition. Teaching Notes

Chapter 2. Knowledge Representation: Reasoning, Issues, and Acquisition. Teaching Notes Chapter 2 Knowledge Representation: Reasoning, Issues, and Acquisition Teaching Notes This chapter explains how knowledge is represented in artificial intelligence. The topic may be launched by introducing

More information

Overview. cis32-spring2003-parsons-lect15 2

Overview. cis32-spring2003-parsons-lect15 2 EXPERT SYSTEMS Overview The last lecture looked at rules as a technique for knowledge representation. In a while we will go on to look at logic as a means of knowledge representation. First, however, we

More information

Overview EXPERT SYSTEMS. What is an expert system?

Overview EXPERT SYSTEMS. What is an expert system? EXPERT SYSTEMS Overview The last lecture looked at rules as a technique for knowledge representation. In a while we will go on to look at logic as a means of knowledge representation. First, however, we

More information

Inferencing in Artificial Intelligence and Computational Linguistics

Inferencing in Artificial Intelligence and Computational Linguistics Inferencing in Artificial Intelligence and Computational Linguistics (http://www.dfki.de/~horacek/infer-ai-cl.html) no classes on 28.5., 18.6., 25.6. 2-3 extra lectures will be scheduled Helmut Horacek

More information

CPS331 Lecture: Coping with Uncertainty; Discussion of Dreyfus Reading

CPS331 Lecture: Coping with Uncertainty; Discussion of Dreyfus Reading CPS331 Lecture: Coping with Uncertainty; Discussion of Dreyfus Reading Objectives: 1. To discuss ways of handling uncertainty (probability; Mycin CF) 2. To discuss Dreyfus views on expert systems Materials:

More information

Discordant MIC Analysis: Tes5ng for Superiority within a Non- inferiority Trial

Discordant MIC Analysis: Tes5ng for Superiority within a Non- inferiority Trial Discordant MIC Analysis: Tes5ng for Superiority within a Non- inferiority Trial Dean Follmann, Erica BriDain, and John Powers Na5onal Ins5tute of Allergy and Infec5ous Diseases November 19, 2014 1 Current

More information

Gestalt of Fatigue Risk Management within a Safety Management System

Gestalt of Fatigue Risk Management within a Safety Management System Gestalt of Fatigue Risk Management within a Safety Management System Aircraft Inspection & Maintenance Seminar Coogee Bay October 24, 2017 Robert ForsterLee Fatigue Enablers What is Gestalt? Gestalt is

More information

An important technical term

An important technical term An important technical term Inten&onality: the property of being about something else (which need not exist). Inten=onality might be just another name for representa+on or referen+al meaning. (In this

More information

Common Data Elements: Making the Mass of NIH Measures More Useful

Common Data Elements: Making the Mass of NIH Measures More Useful Common Data Elements WG Common Data Elements: Making the Mass of NIH Measures More Useful Jerry Sheehan Assistant Director for Policy Development Na?onal Library of Medicine Gene/c Alliance Webinar Series

More information

Welcome! Pragmatic Clinical Studies. David Hickam, MD, MPH Program Director Clinical Effectiveness Research. David Hickam, MD, MPH

Welcome! Pragmatic Clinical Studies. David Hickam, MD, MPH Program Director Clinical Effectiveness Research. David Hickam, MD, MPH Pragmatic Clinical Studies David Hickam, MD, MPH Program Director Clinical Effec2veness Research June 23, 2015 Welcome! David Hickam, MD, MPH Program Director Clinical Effectiveness Research 2 In this

More information

Clinical Decision Support Systems. 朱爱玲 Medical Informatics Group 24 Jan,2003

Clinical Decision Support Systems. 朱爱玲 Medical Informatics Group 24 Jan,2003 Clinical Decision Support Systems 朱爱玲 Medical Informatics Group 24 Jan,2003 Outline Introduction Medical decision making What are clinical decision support systems (CDSSs)? Historical perspective Abdominal

More information

Causal Inference from Complex Observa4onal Data. Samantha Kleinberg

Causal Inference from Complex Observa4onal Data. Samantha Kleinberg Causal Inference from Complex Observa4onal Data Samantha Kleinberg samantha.kleinberg@stevens.edu Three key points We need causal knowledge Causes are hard to find It s not hopeless! Most striking, society

More information

Sample Interaction: Explanation. Sample Interaction (cont d) Sample Interaction: Therapy. Sample Interaction: Diagnosis. How It Worked: Representation

Sample Interaction: Explanation. Sample Interaction (cont d) Sample Interaction: Therapy. Sample Interaction: Diagnosis. How It Worked: Representation Outline Rule-Based Systems 6.871-- Lecture 6 MYCIN Introduction»Task» Sample Interaction» Reasons for Success How It Worked» Knowledge Representation» Architecture and Control Structure» Inexact Inference»

More information

Genetic Tests and Genetic Counseling How to Analyze Your Own Genome

Genetic Tests and Genetic Counseling How to Analyze Your Own Genome Genetic Tests and Genetic Counseling 02-223 How to Analyze Your Own Genome Genetic Tests for Huntington Disease Hun7ngton Disease Incurable brain disorder that runs in families Movement, cogni7ve, and

More information

Nutrigenetics and Nutrigenomics in Clinical Research and Practice

Nutrigenetics and Nutrigenomics in Clinical Research and Practice Nutrigenetics and Nutrigenomics in Clinical Research and Practice Mar$n Kohlmeier, MD, PhD University of North Carolina at Chapel Hill Department of Nutri7on and UNC Nutri7on Research Ins7tute mkohlmeier@unc.edu

More information

Tackling Tobacco Through Re-engineered Primary Care

Tackling Tobacco Through Re-engineered Primary Care 2/27/18 Tackling Tobacco Through Re-engineered Primary Care Daren Wu, M.D. Chief Medical Officer Learning Objec>ves Understand the key stumbling blocks that can interfere with tobacco screening and treatment,

More information

The Role of PCP in Prostate Cancer Screening Beaver Creek Ma< T. Rosenberg

The Role of PCP in Prostate Cancer Screening Beaver Creek Ma< T. Rosenberg The Role of PCP in Prostate Cancer Screening Beaver Creek 2017 Ma< T. Rosenberg A Cri@cal Look at the Historical Flow Pa@ent concern Office visit History DRE PSA Biopsy Specimen with pathologist Too Many

More information

Physicians and possibly medical students and paramedics.

Physicians and possibly medical students and paramedics. MYCIN Introduction Problem domain: Selection of antibiotics for patients with serious infections. Medical decision making, particularly in clinical medicine is regarded as an "art form" rather than a "scientific

More information

The Moral Psychology Simplexity of Acceptable Risk in Safety Standards

The Moral Psychology Simplexity of Acceptable Risk in Safety Standards The Moral Psychology Simplexity of Acceptable Risk in Safety Standards by Andreas Johnsen andreas.johnsen@mdh.se April, 2016 Safety-critical systems Certification through safety standards Safety of electrical

More information

Resolving the PSA testing controversy. Professor Villis Marshall AC Professor Bruce Armstrong AM Professor Mark Frydenberg

Resolving the PSA testing controversy. Professor Villis Marshall AC Professor Bruce Armstrong AM Professor Mark Frydenberg Resolving the PSA testing controversy Professor Villis Marshall AC Professor Bruce Armstrong AM Professor Mark Frydenberg Professor Villis Marshall AC Introduc)on Guidelines aim to inform tes)ng for the

More information

Nova StatStrip Blood Glucose Meter Re-Cer7fica7on 2017

Nova StatStrip Blood Glucose Meter Re-Cer7fica7on 2017 SUNY Downstate Medical Center University Hospital of Brooklyn Point of Care Laboratory & Department of Nursing Services Ins7tute of Con7nuous Learning Nova StatStrip Blood Glucose Meter Re-Cer7fica7on

More information

Ethics Educa+on Case Studies

Ethics Educa+on Case Studies Ethics Educa+on Case Studies School of Physics and Astronomy Fall Semester, 2011 These materials were first created by the APS Ethics Educa+on Task Force to provide an introduc+on to some of the issues

More information

Considera*ons when undergoing personal genotyping

Considera*ons when undergoing personal genotyping Considera*ons when undergoing personal genotyping Kelly Ormond, MS, CGC Louanne Hudgins, MD, FACMG January 19, 2011 GENE 210 Disclosures and introduc*ons Professor Ormond provided paid consulta*on for

More information

SECTION 1: ABOUT HEPATITIS

SECTION 1: ABOUT HEPATITIS SECTION 1: ABOUT HEPATITIS Hepa33s Means Swollen Liver Many things can cause your liver to become swollen, including drinking a lot of alcohol; taking certain medica3ons or herbs; inhaling toxic fumes;

More information

B Your thoughts (belief) A The Event (antecedent) C Your feelings (consequence) JS Beck Requires a strong, posi2ve therapeu2c alliance

B Your thoughts (belief) A The Event (antecedent) C Your feelings (consequence) JS Beck Requires a strong, posi2ve therapeu2c alliance Thanks to Sona Dimidjian " Overview, cognitive model, and case conceptualization Sequence and structure of treatment Automatic thoughts Underlying assumptions and core beliefs Competence Cogni2ve therapy

More information

Hypothesis-Driven Research

Hypothesis-Driven Research Hypothesis-Driven Research Research types Descriptive science: observe, describe and categorize the facts Discovery science: measure variables to decide general patterns based on inductive reasoning Hypothesis-driven

More information

Casual Methods in the Service of Good Epidemiological Practice: A Roadmap

Casual Methods in the Service of Good Epidemiological Practice: A Roadmap University of California, Berkeley From the SelectedWorks of Maya Petersen 2013 Casual Methods in the Service of Good Epidemiological Practice: A Roadmap Maya Petersen, University of California, Berkeley

More information

Expert Systems. Artificial Intelligence. Lecture 4 Karim Bouzoubaa

Expert Systems. Artificial Intelligence. Lecture 4 Karim Bouzoubaa Expert Systems Artificial Intelligence Lecture 4 Karim Bouzoubaa Artificial Intelligence Copyright Karim Bouzoubaa 2 Introduction ES: Capture, represent, store and apply human K using a machine Practical

More information

Applica(on of Causal Inference Methods to Improve Treatment of HIV in Resource Limited Se?ngs

Applica(on of Causal Inference Methods to Improve Treatment of HIV in Resource Limited Se?ngs Applica(on of Causal Inference Methods to Improve Treatment of HIV in Resource Limited Se?ngs Maya Petersen works.bepress.com/maya_petersen Divisions of Biosta,s,cs and Epidemiology, University of California,

More information

Piaget s Studies in Generaliza2on. Robert L. Campbell Department of Psychology Clemson University June 2, 2012

Piaget s Studies in Generaliza2on. Robert L. Campbell Department of Psychology Clemson University June 2, 2012 Piaget s Studies in Generaliza2on Robert L. Campbell Department of Psychology Clemson University June 2, 2012 The triptych Recherches sur l abstrac.on réfléchissante (1971-1972; published 1977) Studies

More information

Debate Regarding Oseltamivir Use for Seasonal and Pandemic Influenza

Debate Regarding Oseltamivir Use for Seasonal and Pandemic Influenza Debate Regarding Oseltamivir Use for Seasonal and Pandemic Influenza Aeron Hurt WHO Collabora@ng Centre for Reference and Research on Influenza, Melbourne, Australia www.influenzacentre.org NA inhibitor

More information

Mental Health, Substance Abuse & Primary Care: Bridging Gaps in Access

Mental Health, Substance Abuse & Primary Care: Bridging Gaps in Access 1 Mental Health, Substance Abuse & Primary Care: Bridging Gaps in Access Christopher Carroll, Director, Health Care Financing and Systems Integration Substance Abuse and Mental Health Services Administration

More information

Social Cogni+ve Theory. Amanda Gerson

Social Cogni+ve Theory. Amanda Gerson Social Cogni+ve Theory Amanda Gerson Purpose of Theory To understand and predict individual and group behavior To identify methods in which behavior can be modified or changed Used in interventions aimed

More information

Artificial Intelligence Programming Probability

Artificial Intelligence Programming Probability Artificial Intelligence Programming Probability Chris Brooks Department of Computer Science University of San Francisco Department of Computer Science University of San Francisco p.1/25 17-0: Uncertainty

More information

Artificial Doctors In A Human Era

Artificial Doctors In A Human Era Artificial Doctors In A Human Era The term Artificial Intelligence (AI) is overused today. Unfortunately, this often leads to a misunderstanding of what AI is. Artificial intelligence is an umbrella term

More information

9/4/17. Acetaminophen Overdose Modelling

9/4/17. Acetaminophen Overdose Modelling cetaminophen Overdose Modelling cetaminophen (generic name for tylenol) is a pain reliever and fever reducer, used to treat many condi@ons such as headache, muscle aches, arthri@s, backache, toothaches,

More information

In this module we will cover Correla4on and Validity.

In this module we will cover Correla4on and Validity. In this module we will cover Correla4on and Validity. A correla4on coefficient is a sta4s4c that is o:en used as an es4mate of measurement, such as validity and reliability. You will learn the strength

More information

Inevitable Mens Rea & Legal Insanity In the Age of Neuroscience. Penn Center for Neuroscience & Society Philadelphia: April 7, 2016

Inevitable Mens Rea & Legal Insanity In the Age of Neuroscience. Penn Center for Neuroscience & Society Philadelphia: April 7, 2016 Inevitable Mens Rea & Legal Insanity In the Age of Neuroscience Penn Center for Neuroscience & Society Philadelphia: April 7, 2016 Stephen J. Morse, J.D., Ph.D. University of Pennsylvania Law School &

More information

Forward Looking Statements

Forward Looking Statements March 12, 2015 1 Forward Looking Statements This presenta5on contains forward- looking statements within the meaning of the Private Securi5es Li5ga5on Reform Act of 1995 that involve substan5al risks and

More information

Public Health / Public Works Introduc6on, reitera6on + Lessons 1-2. Pioneer Winter IDH 3034, IDH 4007

Public Health / Public Works Introduc6on, reitera6on + Lessons 1-2. Pioneer Winter IDH 3034, IDH 4007 Public Health / Public Works Introduc6on, reitera6on + Lessons 1-2 Pioneer Winter IDH 3034, IDH 4007 What s the purpose of this class? Learning Objec6ves Understand the principles of public health, epidemiology,

More information

Demonstra*ng Respect & Enhancing Trust: Mastering the Informed Consent Process. Informed consent. Objectives. Why obtain consent for research?

Demonstra*ng Respect & Enhancing Trust: Mastering the Informed Consent Process. Informed consent. Objectives. Why obtain consent for research? Demonstra*ng Respect & Enhancing Trust: Mastering the Informed Consent Process Michael Green, MD, MPH Professor of Pediatrics, Surgery & Clinical and Transla*onal Science Clinical Transla*onal Science

More information

A review of approaches to identifying patient phenotype cohorts using electronic health records

A review of approaches to identifying patient phenotype cohorts using electronic health records A review of approaches to identifying patient phenotype cohorts using electronic health records Shivade, Raghavan, Fosler-Lussier, Embi, Elhadad, Johnson, Lai Chaitanya Shivade JAMIA Journal Club March

More information

We ve Come a Long Way Baby! Forget the cigare7es, I want a vaginal swab!

We ve Come a Long Way Baby! Forget the cigare7es, I want a vaginal swab! We ve Come a Long Way Baby! Forget the cigare7es, I want a vaginal swab! Who I am Director, Infec@ous Diseases Laboratory at University of Alabama at Birmingham School of Medicine I captured Chlamydia

More information

Logistic Regression and Bayesian Approaches in Modeling Acceptance of Male Circumcision in Pune, India

Logistic Regression and Bayesian Approaches in Modeling Acceptance of Male Circumcision in Pune, India 20th International Congress on Modelling and Simulation, Adelaide, Australia, 1 6 December 2013 www.mssanz.org.au/modsim2013 Logistic Regression and Bayesian Approaches in Modeling Acceptance of Male Circumcision

More information

Evalua5ng Health Claims in Alt-Med

Evalua5ng Health Claims in Alt-Med Chapter 10 Evalua5ng Health Claims in Alt-Med There are in fact two things, science and opinion; the former begets knowledge, the laier ignorance. Hippocrates of Kos A Big Chunk of Change In the U.S. approximately

More information

IMPROVING GLOBAL ESTIMATES: PROCESS AND MILESTONES IATT Webinar June 7 th 2016

IMPROVING GLOBAL ESTIMATES: PROCESS AND MILESTONES IATT Webinar June 7 th 2016 Where did we start? Where did we get to? Where do we want to go? IMPROVING GLOBAL ESTIMATES: PROCESS AND MILESTONES IATT Webinar June 7 th 2016 Mar6na Penazzato Paediatric advisor HIV Department WHO, Geneva-

More information

Evalua&on and Management of Posterior Neck Pain

Evalua&on and Management of Posterior Neck Pain Evalua&on and Management of Posterior Neck Pain James J. Lehman, DC, MBA, FACO Associate Professor of Clinical Sciences University of Bridgeport College of Chiroprac&c Learning Objec&ves Correlate anatomy

More information

Learning Objec&ves. Evalua&on and Management of Posterior Neck Pain 4/8/15. Incidence of Neck Pain

Learning Objec&ves. Evalua&on and Management of Posterior Neck Pain 4/8/15. Incidence of Neck Pain Learning Objec&ves Evalua&on and Management of Posterior Neck Pain James J. Lehman, DC, MBA, FACO Associate Professor of Clinical Sciences University of Bridgeport College of Chiroprac&c Correlate anatomy

More information

Ohio Medical Marijuana Control Program

Ohio Medical Marijuana Control Program Ohio Medical Marijuana Control Program Guiding Principles Ohio Medical Marijuana Control Program is: 1. Pa;ent-centered and safe 2. Responsive, data-driven, and transparent 3. Flexible, scalable, and sustainable

More information

Ethics and Boundaries

Ethics and Boundaries Ethics and Boundaries Jim Seckman, MAC, CACII, CCS What are the defining characteris@cs of a profession? A body of knowledge A special group of skills Addresses a special problem Tes@ng for admission Lifelong

More information

Harvard-MIT Division of Health Sciences and Technology HST.952: Computing for Biomedical Scientists. Data and Knowledge Representation Lecture 6

Harvard-MIT Division of Health Sciences and Technology HST.952: Computing for Biomedical Scientists. Data and Knowledge Representation Lecture 6 Harvard-MIT Division of Health Sciences and Technology HST.952: Computing for Biomedical Scientists Data and Knowledge Representation Lecture 6 Last Time We Talked About Medical Coding Systems UMLS Today

More information

Pragma&c Clinical Trials

Pragma&c Clinical Trials Pragma&c Clinical Trials Susanne May, PhD Associate Professor Department of Biosta&s&cs, School of Public Health, University of Washington Preliminaries PLEASE ask ques&ons at any &me REALLY good clinical

More information

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

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

More information

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

Biosta's'cs Board Review. Parul Chaudhri, DO Family Medicine Faculty Development Fellow, UPMC St Margaret March 5, 2016

Biosta's'cs Board Review. Parul Chaudhri, DO Family Medicine Faculty Development Fellow, UPMC St Margaret March 5, 2016 Biosta's'cs Board Review Parul Chaudhri, DO Family Medicine Faculty Development Fellow, UPMC St Margaret March 5, 2016 Review key biosta's'cs concepts Understand 2 X 2 tables Objec'ves By the end of this

More information

6 Disasters in FCC Numbering: How it can be a disaster or a huge benefit? Dr. Z August, 2009

6 Disasters in FCC Numbering: How it can be a disaster or a huge benefit? Dr. Z August, 2009 6 Disasters in FCC Numbering: How it can be a disaster or a huge benefit? Dr. Z August, 2009 Real Numbers The number you have been using on your Sorenson VP may be a fake number. The FCC order forces Sorenson

More information

Chapter 11 Decision Making. Syllogism. The Logic

Chapter 11 Decision Making. Syllogism. The Logic Chapter 11 Decision Making Syllogism All men are mortal. (major premise) Socrates is a man. (minor premise) (therefore) Socrates is mortal. (conclusion) The Logic Mortal Socrates Men 1 An Abstract Syllogism

More information

Surviving Sepsis and Stewardship

Surviving Sepsis and Stewardship Surviving Sepsis and Stewardship Start Smart Then Focus Are these hopelessly compe5ng objec5ves? Dr David R Jenkins, Consultant Medical Microbiologist and Infec>on Control Doctor, University Hospitals

More information

A Trial Implementa.on of a High Density Health Informa.on Exchange Standard: Are We Ready for Coordinated Care in High Impact Condi.ons?

A Trial Implementa.on of a High Density Health Informa.on Exchange Standard: Are We Ready for Coordinated Care in High Impact Condi.ons? A Trial Implementa.on of a High Density Health Informa.on Exchange Standard: Are We Ready for Coordinated Care in High Impact Condi.ons? Michael Hogarth, MD, FACP CMIO, Athena Breast Health Network Professor,

More information

Action observation and action imagination: from pathology to the excellent sport performance

Action observation and action imagination: from pathology to the excellent sport performance Action observation and action imagination: from pathology to the excellent sport performance Imita'on Meltzoff & Moore, Science 1977 Rizzola8 and the Parma s group: The mirror system Open problems for

More information

Otis W. Brawley, MD, FACP

Otis W. Brawley, MD, FACP The Transformation of American Medicine (A Cancer Prospective) Otis W. Brawley, MD, FACP Chief Medical and Scientific Officer American Cancer Society Professor of Hematology, Medical Oncology, Medicine

More information

Ethics and Boundaries

Ethics and Boundaries Ethics and Boundaries Jim Seckman, MAC, CACII, CCS What are the defining characteris@cs of a profession? A body of knowledge A special group of skills Addresses a special problem Tes@ng for admission Lifelong

More information

Experience in Moving Neurological Medical Devices From Bench to Market

Experience in Moving Neurological Medical Devices From Bench to Market Experience in Moving Neurological Medical Devices From Bench to Market Cogni;ve Func;on following concussion Abla;on Therapy Clot Retriever for Ischemic Stroke Prosthe;c Arm Medical Device For Migraine

More information

Oncology Care Model Overview

Oncology Care Model Overview Oncology Care Model Overview Centers for Medicare & Medicaid Services Innova3on Center (CMMI) September 2017 Innova3on at CMS Center for Medicare & Medicaid Innova3on (Innova3on Center) Established by

More information

Health Informa.cs. Lecture 9. Samantha Kleinberg

Health Informa.cs. Lecture 9. Samantha Kleinberg Health Informa.cs Lecture 9 Samantha Kleinberg samantha.kleinberg@stevens.edu Next week: journal club For all papers: read, and prepare to comment on For your paper: Read the ar.cle (+ other references

More information

Psychological outcomes of cri2cal illness for pa2ents and family members. Erin K. Kross, MD Summer Lung Day June 18, 2010

Psychological outcomes of cri2cal illness for pa2ents and family members. Erin K. Kross, MD Summer Lung Day June 18, 2010 Psychological outcomes of cri2cal illness for pa2ents and family members Erin K. Kross, MD Summer Lung Day June 18, 2010 Outline Overview of psychological outcomes for pa2ents and family members ager cri2cal

More information

Integrated Mindfulness Interven1on

Integrated Mindfulness Interven1on Integrated Mindfulness Interven1on Elizabeth Berlasso, NSRCT, Psychotherapist Rob Dickson, Clinical Team Leader Tara Sampalli, PhD, Manager Minakshi Dhir, Research Associate Integrated Chronic Care Service,

More information

Listeria monocytogenes. Tom Duszynski, MPH, REHS Director of Surveillance and Inves>ga>on

Listeria monocytogenes. Tom Duszynski, MPH, REHS Director of Surveillance and Inves>ga>on Listeria monocytogenes Tom Duszynski, MPH, REHS Director of Surveillance and Inves>ga>on References Scallan, E., Hoekstra R.M., Angulo F.J., Tauxe R.V., Widdowson M.A., Roy S.L., et al. Foodborne illness

More information

Locke s Inverted Spectra

Locke s Inverted Spectra Locke s Inverted Spectra Neither would it carry any Imputa:on of Falshood to our simple Ideas, if by the different Structure of our Organs, it were so ordered, That the same Object should produce in several

More information

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

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

More information

Hummi Micro Draw Blood Transfer Device. An Important Addition to Your IVH Bundle

Hummi Micro Draw Blood Transfer Device. An Important Addition to Your IVH Bundle Hummi Micro Draw Blood Transfer Device An Important Addition to Your IVH Bundle Hummi Micro Draw & Micro T Connector For Infec6on Control and IVH Risk Reduc6on The Next Genera6on System for Closed Micro

More information

Right Answers, Wrong Ques2ons. Ralph I Horwitz

Right Answers, Wrong Ques2ons. Ralph I Horwitz Right Answers, Wrong Ques2ons Ralph I Horwitz Disclosures Employed by GlaxoSmithKline Views expressed reflect mine alone and not those of GSK Right Answer, Wrong Ques2on A young couple moves into an apartment

More information

Research Update: Effects of Alterna5ves to Tradi5onal Fungicide and Winter Fer5liza5on Prac5ces on Microdochium Patch

Research Update: Effects of Alterna5ves to Tradi5onal Fungicide and Winter Fer5liza5on Prac5ces on Microdochium Patch Research Update: Effects of Alterna5ves to Tradi5onal Fungicide and Winter Fer5liza5on Prac5ces on Microdochium Patch Clint Ma)ox, Alec Kowalewski, and Brian McDonald Department of Hor

More information

Ascendant Dx mission is to commercialize disruptive diagnostic technologies aiding diagnosis and treatment for diseases of women and children.

Ascendant Dx mission is to commercialize disruptive diagnostic technologies aiding diagnosis and treatment for diseases of women and children. Ascendant Dx mission is to commercialize disruptive diagnostic technologies aiding diagnosis and treatment for diseases of women and children. Our particular focus is on cancer, autoimmune diseases and

More information

Webinar Series Its All About the Interac0on Strategies for Pragma2c Organiza2on of Communica2on Systems PART 1

Webinar Series Its All About the Interac0on Strategies for Pragma2c Organiza2on of Communica2on Systems PART 1 Webinar Series Its All About the Interac0on Strategies for Pragma2c Organiza2on of Communica2on Systems PART 1 Presented by: Jane Goetz, Au2sm Coordinator & Lori Chambers, Regional Systems Coordinator

More information

Decision Making in Robots and Autonomous Agents

Decision Making in Robots and Autonomous Agents Decision Making in Robots and Autonomous Agents A Brief Survey of Models from Neuroeconomics Subramanian Ramamoorthy School of Informa>cs 31 March, 2015 What is Neuroeconomics? Studies that take the process

More information

Session 13 Objec+ves MSDA Na+onal Medicaid and CHIP Oral Health Symposium June 24 th 26 th, 2012

Session 13 Objec+ves MSDA Na+onal Medicaid and CHIP Oral Health Symposium June 24 th 26 th, 2012 2012 MSDA Na+onal Medicaid and CHIP Oral Health Symposium June 24 th 26 th, 2012 Session 13 Dental Quality Alliance Update Krishna Aravamudhan, BDS, MS (DQA) Martha Dellapena (MSDA) Session 13 Objec+ves

More information

Climate Test Bed (CTB) Overview

Climate Test Bed (CTB) Overview Climate Test Bed (CTB) Overview Jin Huang October 6, 2011 Fort Worth, TX Purpose of the CTB PIs Mee

More information

EEG evidence for mirror neuron dysfunc1on in au1sm spectrum disorders. Oberman, Hubbard, McCleery, Altschuler, Ramachandran, Pineda

EEG evidence for mirror neuron dysfunc1on in au1sm spectrum disorders. Oberman, Hubbard, McCleery, Altschuler, Ramachandran, Pineda EEG evidence for mirror neuron dysfunc1on in au1sm spectrum disorders Oberman, Hubbard, McCleery, Altschuler, Ramachandran, Pineda Au9sm Spectrum Disorders Characterized by deficits in social and communica9ve

More information

Regula'on of Medical Cannabis in Canada: Reflec'on on the Present and Future

Regula'on of Medical Cannabis in Canada: Reflec'on on the Present and Future Regula'on of Medical Cannabis in Canada: Reflec'on on the Present and Future Lynda G. Balneaves, RN, PhD Associate Professor and Kwok Yuen & Be6y Ho Chair in Integra=ve Medicine University of Toronto Disclosures

More information

Outbreak response in post- OPV2 withdrawal era. Strategic Advisory Group of Experts (SAGE) on immuniza;on, Geneva, 22 October 2014

Outbreak response in post- OPV2 withdrawal era. Strategic Advisory Group of Experts (SAGE) on immuniza;on, Geneva, 22 October 2014 Outbreak response in post- OPV2 withdrawal era Strategic Advisory Group of Experts (SAGE) on immuniza;on, Geneva, 22 October 2014 Request to SAGE Endorse the principles for outbreak response in post- OPV2

More information

Inference of patient-specific pathway activities from multi-dimensional cancer genomics data using PARADIGM. Bioinformatics, 2010

Inference of patient-specific pathway activities from multi-dimensional cancer genomics data using PARADIGM. Bioinformatics, 2010 Inference of patient-specific pathway activities from multi-dimensional cancer genomics data using PARADIGM. Bioinformatics, 2010 C.J.Vaske et al. May 22, 2013 Presented by: Rami Eitan Complex Genomic

More information

Power & Sample Size. Dr. Andrea Benedetti

Power & Sample Size. Dr. Andrea Benedetti Power & Sample Size Dr. Andrea Benedetti Plan Review of hypothesis testing Power and sample size Basic concepts Formulae for common study designs Using the software When should you think about power &

More information

The Importance of Iden0fying Women at Risk for BRCA1/2 Muta0ons for Referral to Cancer Gene0cs Services

The Importance of Iden0fying Women at Risk for BRCA1/2 Muta0ons for Referral to Cancer Gene0cs Services The Importance of Iden0fying Women at Risk for BRCA1/2 Muta0ons for Referral to Cancer Gene0cs Services Cecelia Bellcross, PhD, MS, CGC Emory University School of Medicine Department of Human Gene0cs Alliance

More information

ERA: Architectures for Inference

ERA: Architectures for Inference ERA: Architectures for Inference Dan Hammerstrom Electrical And Computer Engineering 7/28/09 1 Intelligent Computing In spite of the transistor bounty of Moore s law, there is a large class of problems

More information

Agenetic disorder serious, perhaps fatal without

Agenetic disorder serious, perhaps fatal without ACADEMIA AND CLINIC The First Positive: Computing Positive Predictive Value at the Extremes James E. Smith, PhD; Robert L. Winkler, PhD; and Dennis G. Fryback, PhD Computing the positive predictive value

More information

Lecture 3: Bayesian Networks 1

Lecture 3: Bayesian Networks 1 Lecture 3: Bayesian Networks 1 Jingpeng Li 1 Content Reminder from previous lecture: Bayes theorem Bayesian networks Why are they currently interesting? Detailed example from medical diagnostics Bayesian

More information

MODULE 3. Topic 5. Models and techniques of preven4on and posi4ve management of the conflict in Cultural Media4on

MODULE 3. Topic 5. Models and techniques of preven4on and posi4ve management of the conflict in Cultural Media4on MODULE 3 Topic 5 Models and techniques of preven4on and posi4ve management of the conflict in Cultural Media4on CONTENT I. Effec6ve Conflict Management II. Prac6ces for Individualists Dealing with Conflict

More information

RATIONALE AND INDICATION

RATIONALE AND INDICATION OUTPATIENT TOTAL HIP REPLACEMENT JOHN R. MOORE, IV, M.D. Since you have progressed to the point of serious considera4on of total hip replacement, there is a great deal of informa4on that is important for

More information

Using CBT techniques to support pa4ents with depression and anxiety

Using CBT techniques to support pa4ents with depression and anxiety Using CBT techniques to support pa4ents with depression and anxiety Andrew Grimmer Counselling Psychologist BABCP Accredited CBT Therapist bristolcbt.email@gmail.com www.bristolcbt.co.uk www.onlinecbtresources.co.uk

More information

Stepwise Knowledge Acquisition in a Fuzzy Knowledge Representation Framework

Stepwise Knowledge Acquisition in a Fuzzy Knowledge Representation Framework Stepwise Knowledge Acquisition in a Fuzzy Knowledge Representation Framework Thomas E. Rothenfluh 1, Karl Bögl 2, and Klaus-Peter Adlassnig 2 1 Department of Psychology University of Zurich, Zürichbergstraße

More information