Collapsing Longitudinal Data Across Related Events and Imputing Endpoints

Size: px
Start display at page:

Download "Collapsing Longitudinal Data Across Related Events and Imputing Endpoints"

Transcription

1 Collapsing Longitudinal Data Across Related Events and Imputing Endpoints James Joseph, INC Research, King of Prussia, PA INTRODUCTION When attempting to answer a research question, the best study design is determined by the information a solution requires and a product of the available data and analytical methods. Data collection methods for clinical research questions often involve performing assessments at scheduled time points. The resulting data is longitudinal and allows analysts to approximate the length of time that an event of interest was observed. The approximation can be performed using PROC MEANS: simply retrieve the minimum and maximum value of a variable for each classification of observations. The technique allows researchers to ask: How long have values from a particular lab test for this subject been out of range? Over what span of the trial did a subject adhere to protocol? Collapsing data and imputing its endpoints can also be useful when event durations are desired but data is spare or collected in an untimely fashion. An analyst exploring safety data may wonder whether an isolated record of a rash on a subject s neck is related to a more recent record of a rash on the same subject s torso. Scientific knowledge of the infection s distributional characteristics may provide enough evidence to claim that the two records indicate one infection (whose spreading behavior is reasonable) rather than two independent and isolated cases of infection. Collapsing this data is justified and can result in a more accurate depiction of a subject s condition over time. Classification variables may not be present in the data used in retrospective studies, thereby requiring additional programming steps before collapsing observations within each custom class. Perhaps you d like to discover the average number of one-syllable sounds a baby girl pronounces before she is able to pronounce a two-syllable word? When does she begin tackling three syllables? How do these estimates compare to those of baby boys? To answer these questions, a programmer locates the earliest and latest records of one-syllable words before a two-syllable word is observed for each subject. In this paper, we present a fictional case study that insists on classifying observations according to their relation and proximity to each other before collapsing the observations within each class and imputing their endpoints. The underlying is illustrated by utilizing DATA STEP programming. A more convenient solution using PROC MEANS is also offered. Computations are validated in BASE SAS 9.0 through 9.3. BACKGROUND Psychoactive drugs change the chemical makeup of the brain and influence thoughts, moods, sensations, and behaviors. They are used to treat a variety of indications pertaining to the mind, such as depression, anxiety, narcolepsy, and schizophrenia, to name a few. The subjective nature of these indications largely constrain treatment outcome data to be sourced from self-report measures like the Montgomery-Asberg Depression Rating Scale (MADRS) (used to measures the severity of depressive episodes) or the Suicide Intent Scale (SIS) (used to quantify suicidal intent). The reliability of self-report scales is challenged by both controllable and uncontrollable biasing factors. The interviewer or experimental setting can bestow unintended influence on the responder s feedback. The responder may exaggerate or downplay the degree of his or her response for any number of reasons that are known or unknown to responders and/or observers. The result can sometimes be data that features a high level of intra-individual variance. Sometimes this variance can be decreased by collapsing observations that are related to one another in some way that is scientifically justifiable.

2 PURPOSE A pharmaceutical company wishes to perform a retrospective study to derive estimates for the duration and incidence of psychotic episodes associated with amphetamine withdrawal amongst abusers of their popular drug, XYZ, an amphetamine salt preparation for the treatment of Attention Deficit Disorder. Two psychiatric symptoms common to amphetamine withdrawal that are of particular interest to the researchers are (a) depression, and (b) suicidal ideation. DEFINING THE PROBLEM An episode is a period of time characterized by impaired mental functioning. Researchers are interested in the nature of two types of episodes: depressive episodes and suicidal episodes. Each type of episode is characterized by a pattern of symptoms over time. Remission is period of time during which an episode was not observed in the patient. If the remission period is long enough, the patient is considered recovered from the episode and any subsequent episode is independent from the former. Scientific literature on the nature, time course and severity of amphetamine withdrawal symptoms prompted researchers to decide that it is highly unlikely that a subject fully recovers from depressive symptoms overnight. Therefore, if depressive symptoms are apparent on successive days, those records comprise a depressive episode. If severe suicidal thoughts appear within two days of either symptom (depression or suicidal ideation), the researchers claim that the set of proximate symptoms comprise a suicidal episode. Isolated symptoms are considered single-symptoms episodes of their respective type. These rules will be applied regardless of the existence of missing data. In order for the researchers to summarize the duration and incidence of depressive episodes and suicidal episodes due to withdrawal from XYZ amongst drug abusers, symptom records fitting the aforementioned patterns must be collapsed into a single event record that features a start date equivalent to that of the earliest symptom in the pattern and the end date equivalent to that of the last symptom in the pattern. Your expertise is requested in restructuring the dataset in Table 1 so that there is one record per episode. THE DATA Mental health data on patients whose medication history includes XYZ was acquired from a substance abuse treatment facility. The data originally contained the daily scores that patients earned on MADRS and SIS self-report measures. A MADRS score greater than 4 indicates the presence of depressive symptoms. SIS scores of 29 or above indicate high intent to commit suicide. For the purposes of this tutorial, only records showing any degree of depression (MADRS > 4) and high degrees of suicidal intent (SIS > 29) are considered. Those records are presented vertically in Table 1. A graphical representation is found in Figure 1. Notice that the data has been manufactured to represent a variety of symptom patterns. For example, according to the rules set forth to determine episode, subjects 1001 and 1002 have three symptoms and three episodes each, while subject 1006 has six symptoms and one episode. From the data representations below and the rules defined above, how many symptoms and episodes do you expect for each subject?

3 Variable Name: SUBJECT SYMFLAG SYMDECODE STDY Label: Subject ID Symptom Flag Symptom Decode Study day of Assessment A Depressive Symptoms A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent B High Suicidal Intent B High Suicidal Intent A Depressive Symptoms A Depressive Symptoms A Depressive Symptoms A High Suicidal Intent A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent B High Suicidal Intent B High Suicidal Intent B High Suicidal Intent B High Suicidal Intent A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent A Depressive Symptoms A Depressive Symptoms A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent A Depressive Symptoms B High Suicidal Intent A Depressive Symptoms A Depressive Symptoms A Depressive Symptoms A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent A Depressive Symptoms 9 Table 1. Subject Symptom Records of Interest and Corresponding Study Day of Assessment

4 Figure 1. Timeline of Depressive (A) and Suicidal (B) Symptoms Amongst XYZ Abusers If depressive symptoms appear on successive days, those records comprise one depressive episode. If high suicidal intent is observed two or less days away from any other symptom or episode, that set of records comprise a suicidal episode.

5 COMPUTATION AND EXPLANATION Read in the data: data SOURCE; input subject 1-4 symflag $ 9 symdecode $ stdy 33; cards; 1001 A Depressive Symptoms A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent B High Suicidal Intent B High Suicidal Intent A Depressive Symptoms A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent B High Suicidal Intent B High Suicidal Intent B High Suicidal Intent B High Suicidal Intent A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent A Depressive Symptoms A Depressive Symptoms A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent A Depressive Symptoms B High Suicidal Intent A Depressive Symptoms A Depressive Symptoms A Depressive Symptoms A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent A Depressive Symptoms A Depressive Symptoms B High Suicidal Intent A Depressive Symptoms 9 ;

6 This procedure requires that the data be sorted by subject and ascending study data. proc sort data=source (keep=subject symflag stdy); by subject stdy; Conditional logic is used to classify distinct episodes. Create a variable that will change its value when event records are not sufficiently related. data IDENTIFY; set SOURCE; by subject; retain n; if first.subject then n = 0; Conditions to collapse: a) Depression records are 1 day apart, and b) Suicidal ideation within 2 days of any other symptom. Only perform these conditional operations within subjects, not between. if first.subject eq 0 and ((stdy - lag1(stdy)) <= 1 and symflag = "A") or ((stdy-lag1(stdy)) <=2 and symflag = "B") or ((stdy-lag1(stdy)) <=2 and lag1(symflag) = "B") then EPInum = n; If records are sufficiently related, then increase counter by one; else do; n+1; EPInum=n; end; drop n;

7 Label the episodes (classes) as either depressive or suicidal. If an episode contains a period of severe suicidal ideation, then it is a suicidal episode; otherwise, it is a depressive episode. data temp1; set IDENTIFY; length EPIname $50; if symflag = "B" then do; EPIname = "Suicidal"; output; end; drop stdy; Merge EPIname onto the data that has identified the individual episodes. EPInum uniquely identifies episodes within subjects; data NAMED; merge IDENTIFY temp1; by subject EPInum; if EPIname = " " then EPIname = "Depressive"; COLLAPSE RECORDS WITHIN AN EPISODE USING PROC MEANS EPInum can be used to identify unique episode within subjects, but it does not describe the type of episode that was experienced. data NAMED; set NAMED; EPISODE = compress(epiname, " ") " - " put(epinum, 2.) ; proc means data=named noprint; class subject EPISODE; var stdy; types subject*episode; output out=epiproc (drop=_type freq_) min=start max=end; title "Suicidal and Depressive Episodes PROC MEANS"; proc print data=epiproc;

8 COLLAPSE RECORDS WITHIN AN EPISODE MANUALLY Identify the endpoints of an episode and capture their study day. Delete non-endpoint records. data EPIMAN; set NAMED; by subject EPInum; if first.epinum then startday = stdy; if last.epinum then endday = stdy; if startday = endday =. then delete; The lag function cannot be used within a conditional statement, so in preparation for the final step, create variables that represent their values. STARTDAY_ will be used to pull STARTDAY into the latest record of an episode (which already contains ENDDAY). SUBJECT_ will be used to make sure we're operating within subjects; startday_ = lag1(startday); subject_ = lag1(subject); Finally, combine endpoint records into one episode record with start day and end day. The earlier record containing the start point is not of use anymore. if startday =. and last.epinum and subject_=subject then startday = startday_; if first.epinum and (first.epinum ^= last.epinum) then delete; drop symflag EPInum stdy startday_ subject_; title "Suicidal and Depressive Episodes - Manual"; proc print data=epiman;

9 COMPARE OUTPUTS Suicidal and Depressive Episodes PROC MEANS Obs subject EPISODE Start End Depressive Depressive Depressive Suicidal Suicidal Suicidal Depressive Depressive Suicidal Suicidal Suicidal Depressive Suicidal Suicidal Depressive Depressive Suicidal Suicidal Suicidal Suicidal and Depressive Episodes - Manual Obs subject EPIname startday endday Depressive Depressive Depressive Suicidal Suicidal Suicidal Depressive Suicidal Depressive Suicidal Suicidal Suicidal Depressive Suicidal Suicidal Depressive Depressive Suicidal Suicidal 6 9 Output 1. PROC MEANS endpoint imputation Manual endpoint imputation have produced the same episode records.

10 CONCLUSION We applied conditional logic to group symptom records by the patterns they exhibited over time and then explored two approaches that successfully created a dataset containing one record per episode. The manual approach was an exercise in DATA STEP programming logic while the PROC MEANS approach was presented to offer a more practical solution to collapsing related records and assigning it the appropriate endpoint dates. The fictional researchers can now use the resulting dataset to answer a number of questions: how many episodes of each type does a typical XYZ abuser experience before recovery? How long does the average episodes last? What subject characteristics influence these parameters? In this example, event records were collapsed over time. Applications may require collapsing records over other continuous scales, such as space. For example, imagine that data on the field distribution of two different species of wildflowers are available. It is later discovered that these wildflowers are co-dependent. To determine the distribution of their co-dependent colonies, researchers use the available data and classify individual wildflowers of both species into groups according to their proximity to each other. By classifying observations conditionally and collapsing related events, much more can be learned from data than originally intended! REFERENCES: The nature, time course and severity of amphetamine withdrawal (2004) Defining remission on the Montgomery-Asberg depression rating scale. Montgomery-Asberg Depression Rating Scale (MADRS) Assessment Summary Sheet Beck s Suicide Intent Scale (1975) clive.edublogs.org/files/2007/11/beck-suicide-intent-scale.doc SAS Learning Module Collapsing across observations in SAS

11 ACKNOWLEDGMENTS SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. indicates USA registration. CONTACT INFORMATION Questions and comments are valued and encouraged. Contact the author at: James Joseph INC Research 680 American Way King of Prussia, PA Work Phone: james.joseph@incresearch.com Web: * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

USING DATA TOOLS TO EFFECTIVELY

USING DATA TOOLS TO EFFECTIVELY USING DATA TOOLS TO EFFECTIVELY ASSESS THE ACTIVITIES/PROGRAMS THAT SERVE OUR STUDENTS North Orange County Community College District School of Continuing Education Office of Institutional Research and

More information

Supplementary Material

Supplementary Material Supplementary Material Supplementary Table 1. Symptoms assessed, number of items assessed, scoring, and cut-off points for the psychiatric rating scales: Montgomery Åsberg Depression Rating Scale, Hamilton

More information

Pharmaceutical Applications

Pharmaceutical Applications Creating an Input Dataset to Produce Incidence and Exposure Adjusted Special Interest AE's Pushpa Saranadasa, Merck & Co., Inc. Abstract Most adverse event (AE) summary tables display the number of patients

More information

A SAS Macro to Present a Summary Table of the Number of Patients Having Experienced Adverse Events in a Clinical Trial

A SAS Macro to Present a Summary Table of the Number of Patients Having Experienced Adverse Events in a Clinical Trial A SAS Macro to Present a Summary Table of the Number of Patients Having Experienced Adverse Events in a Clinical Trial Christoph Gerlinger * and Ursula Franke ** * Laboratoires Fournier S.C.A. and ** biodat

More information

11. NATIONAL DAFNE CLINICAL AND RESEARCH DATABASE

11. NATIONAL DAFNE CLINICAL AND RESEARCH DATABASE 11. NATIONAL DAFNE CLINICAL AND RESEARCH DATABASE The National DAFNE Clinical and Research database was set up as part of the DAFNE QA programme (refer to section 12) to facilitate Audit and was updated

More information

University of Alaska Connected! FAQs

University of Alaska Connected! FAQs University of Alaska Connected! FAQs 1. What is Connected? Connected! allows employees and spouses/fips to connect a fitness device or app to Healthyroads.com. This will allow additional tracking options

More information

ProScript User Guide. Pharmacy Access Medicines Manager

ProScript User Guide. Pharmacy Access Medicines Manager User Guide Pharmacy Access Medicines Manager Version 3.0.0 Release Date 01/03/2014 Last Reviewed 11/04/2014 Author Rx Systems Service Desk (T): 01923 474 600 Service Desk (E): servicedesk@rxsystems.co.uk

More information

PharmaSUG Paper QT38

PharmaSUG Paper QT38 PharmaSUG 2015 - Paper QT38 Statistical Review and Validation of Patient Narratives Indrani Sarkar, inventiv Health Clinical, Indiana, USA Bradford J. Danner, Sarah Cannon Research Institute, Tennessee,

More information

Lev Sverdlov, Ph.D., Innapharma, Inc., Park Ridge, NJ

Lev Sverdlov, Ph.D., Innapharma, Inc., Park Ridge, NJ Sensitivity of PROC DISCRIM for Different List of Variables to Separate a Study Population by Treatment Subgroups in Clinical Trial With a New Antidepressant Lev Sverdlov, Ph.D., Innapharma, Inc., Park

More information

Psychosis and Substance Use. Prevalence Attitudes to substance use Assessment Approaches and interventions

Psychosis and Substance Use. Prevalence Attitudes to substance use Assessment Approaches and interventions Psychosis and Substance Use Prevalence Attitudes to substance use Assessment Approaches and interventions WHO IS LIKELY TO TAKE SUBSTANCES? 83.6% Antisocial Personality Disorder 56.1% Bipolar Affective

More information

Feidhmeannacht na Seirbhíse Sláinte

Feidhmeannacht na Seirbhíse Sláinte Feidhmeannacht na Seirbhíse Sláinte Health Service Executive TITLE FORENAME SURNAME ADDRESS 1 ADDRESS 2 ADDRESS 3 COUNTY Feidhmeannacht na Seirbhíse Sláinte Seirbhís Aisíoca Príomhchúraim Bealach amach

More information

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

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

More information

Extract Information from Large Database Using SAS Array, PROC FREQ, and SAS Macro

Extract Information from Large Database Using SAS Array, PROC FREQ, and SAS Macro SESUG 2016 Paper CC-160 Extract Information from Large Database Using SAS Array, PROC FREQ, and SAS Macro Lifang Zhang, Department of Biostatistics and Epidemiology, Augusta University ABSTRACT SAS software

More information

PROGRAMMER S SAFETY KIT: Important Points to Remember While Programming or Validating Safety Tables

PROGRAMMER S SAFETY KIT: Important Points to Remember While Programming or Validating Safety Tables PharmaSUG 2012 - Paper IB09 PROGRAMMER S SAFETY KIT: Important Points to Remember While Programming or Validating Safety Tables Sneha Sarmukadam, Statistical Programmer, PharmaNet/i3, Pune, India Sandeep

More information

A SAS Macro to Investigate Statistical Power in Meta-analysis Jin Liu, Fan Pan University of South Carolina Columbia

A SAS Macro to Investigate Statistical Power in Meta-analysis Jin Liu, Fan Pan University of South Carolina Columbia Paper 109 A SAS Macro to Investigate Statistical Power in Meta-analysis Jin Liu, Fan Pan University of South Carolina Columbia ABSTRACT Meta-analysis is a quantitative review method, which synthesizes

More information

Programmatic Challenges of Dose Tapering Using SAS

Programmatic Challenges of Dose Tapering Using SAS ABSTRACT: Paper 2036-2014 Programmatic Challenges of Dose Tapering Using SAS Iuliana Barbalau, Santen Inc., Emeryville, CA Chen Shi, Santen Inc., Emeryville, CA Yang Yang, Santen Inc., Emeryville, CA In

More information

Implementing Worst Rank Imputation Using SAS

Implementing Worst Rank Imputation Using SAS Paper SP12 Implementing Worst Rank Imputation Using SAS Qian Wang, Merck Sharp & Dohme (Europe), Inc., Brussels, Belgium Eric Qi, Merck & Company, Inc., Upper Gwynedd, PA ABSTRACT Classic designs of randomized

More information

ADaM Tips for Exposure Summary

ADaM Tips for Exposure Summary ABSTRACT PharmaSUG China 2016 Paper 84 ADaM Tips for Exposure Summary Kriss Harris, SAS Specialists Limited, Hertfordshire, United Kingdom Have you ever created the Analysis Dataset for the Exposure Summary

More information

CaseBuilder - Quick Reference Guide

CaseBuilder - Quick Reference Guide ADP UNEMPLOYMENT COMPENSATION MANAGEMENT CaseBuilder - Quick Reference Guide After signing into CaseBuilder, the first screen the user will see is called the Dashboard. The user can then navigate to any

More information

OneTouch Reveal Web Application. User Manual for Healthcare Professionals Instructions for Use

OneTouch Reveal Web Application. User Manual for Healthcare Professionals Instructions for Use OneTouch Reveal Web Application User Manual for Healthcare Professionals Instructions for Use Contents 2 Contents Chapter 1: Introduction...4 Product Overview...4 Intended Use...4 System Requirements...

More information

Summary ID#7029. Clinical Study Summary: Study F1D-MC-HGKQ

Summary ID#7029. Clinical Study Summary: Study F1D-MC-HGKQ CT Registry ID# 7029 Page 1 Summary ID#7029 Clinical Study Summary: Study F1D-MC-HGKQ Clinical Study Report: Versus Divalproex and Placebo in the Treatment of Mild to Moderate Mania Associated with Bipolar

More information

Links in PDF documents are not guaranteed to work. To follow a web link, please use the MCD Website. Jurisdiction Oregon. Retirement Date N/A

Links in PDF documents are not guaranteed to work. To follow a web link, please use the MCD Website. Jurisdiction Oregon. Retirement Date N/A Local Coverage Determination (LCD): MolDX: GeneSight Assay for Refractory Depression (L36324) Links in PDF documents are not guaranteed to work. To follow a web link, please use the MCD Website. Contractor

More information

Drug Surveillance and Effectiveness Epidemiology Research - Questions to Ask your Epidemiologist

Drug Surveillance and Effectiveness Epidemiology Research - Questions to Ask your Epidemiologist Drug Surveillance and Effectiveness Epidemiology Research - Questions to Ask your Epidemiologist Roberta Glass, OptumInsight Life Sciences, Waltham, Massachusetts ABSTRACT As a SAS analyst starting work

More information

II3B GD2 Depression and Suicidality in Human Research

II3B GD2 Depression and Suicidality in Human Research Office of Human Research Protection University of Nevada, Reno II3B GD2 Depression and Suicidality in Human Research Overview Research studies that include measures for depression and suicidality should

More information

ProviderNews FEBRUARY

ProviderNews FEBRUARY ProviderNews FEBRUARY 2017 Reminder: decimal billing required on time-based therapy codes for BadgerCare Plus members In accordance with Forward Health guidelines, Security Health Plan requires decimal

More information

mehealth for ADHD Parent Manual

mehealth for ADHD Parent Manual mehealth for ADHD adhd.mehealthom.com mehealth for ADHD Parent Manual al Version 1.0 Revised 11/05/2008 mehealth for ADHD is a team-oriented approach where parents and teachers assist healthcare providers

More information

1. Introduction. 2. Objectives. 2.1 Primary objective

1. Introduction. 2. Objectives. 2.1 Primary objective 1. Introduction This document describes the statistical analysis and reporting to be undertaken for paroxetine adult suicidality data. The data include trials submitted, or planned to be submitted, as

More information

Strategies for handling missing data in randomised trials

Strategies for handling missing data in randomised trials Strategies for handling missing data in randomised trials NIHR statistical meeting London, 13th February 2012 Ian White MRC Biostatistics Unit, Cambridge, UK Plan 1. Why do missing data matter? 2. Popular

More information

Lev Sverdlov, Ph.D., John F. Noble, Ph.D., Gabriela Nicolau, Ph.D. Innapharma Inc., Suffern, New York

Lev Sverdlov, Ph.D., John F. Noble, Ph.D., Gabriela Nicolau, Ph.D. Innapharma Inc., Suffern, New York SAS APPLICATION FOR PHARMACOKINETIC EVALUATION AND ANALYSIS OF THE EFFECT OF TREATMENT WITH A NEW ANTIDEPRESSANT DRUG IN A POPULATION WITH MAJOR DEPRESSION Lev Sverdlov, Ph.D., John F. Noble, Ph.D., Gabriela

More information

The Beauty of the Logic Model A Practical Approach to Developing and Using the Logic Model

The Beauty of the Logic Model A Practical Approach to Developing and Using the Logic Model The Beauty of the Logic Model A Practical Approach to Developing and Using the Logic Model A Professional Development Program Presented at the NMC Conference Midland, Texas September 16, 2009 Presented

More information

Lev Sverdlov, Ph.D.; John F. Noble, Ph.D.; Gabriela Nicolau, Ph.D. Innapharma, Inc., Upper Saddle River, NJ

Lev Sverdlov, Ph.D.; John F. Noble, Ph.D.; Gabriela Nicolau, Ph.D. Innapharma, Inc., Upper Saddle River, NJ THE RESULTS OF CLUSTER ANALYSIS OF CLINICAL DATA USING THE FASTCLUS PROCEDURE Lev Sverdlov, Ph.D.; John F. Noble, Ph.D.; Gabriela Nicolau, Ph.D. Innapharma, Inc., Upper Saddle River, NJ ABSTRACT The objective

More information

Online courses for anxiety and depression CLINICIAN USER GUIDE. Frequently Asked Questions. thiswayup.org.au clinician user guide v2.

Online courses for anxiety and depression CLINICIAN USER GUIDE. Frequently Asked Questions. thiswayup.org.au clinician user guide v2. Online courses for anxiety and depression CLINICIAN USER GUIDE Frequently Asked Questions thiswayup.org.au clinician user guide v2.2 1 Contents Who Are We?... 3 What is CBT?... 4 What is icbt?... 4 Why

More information

Depression Disease Navigation

Depression Disease Navigation Depression Disease Navigation The depression disease navigation program is designed to reach out to members who have been diagnosed with major depression disorder. This is accomplished by promoting treatment

More information

About this consent form

About this consent form Protocol Title: Development of the smoking cessation app Smiling instead of Smoking Principal Investigator: Bettina B. Hoeppner, Ph.D. Site Principal Investigator: n/a Description of Subject Population:

More information

A SAS sy Study of ediary Data

A SAS sy Study of ediary Data A SAS sy Study of ediary Data ABSTRACT PharmaSUG 2017 - Paper BB14 A SAS sy Study of ediary Data Amie Bissonett, inventiv Health Clinical, Minneapolis, MN Many sponsors are using electronic diaries (ediaries)

More information

BORN Ontario: NSO DERF Training Guide FEBRUARY 2012

BORN Ontario: NSO DERF Training Guide FEBRUARY 2012 BORN Ontario: NSO DERF Training Guide FEBRUARY 2012 NSO DERF Encounter NSO sends newborn screening records to the BORN Information System (BIS) regularly throughout each day. When a risk letter is printed,

More information

Observational Coding Assignment Instructions for doing the assignment

Observational Coding Assignment Instructions for doing the assignment Instructions for doing the assignment Following this page you will find a description of the assignment on observation coding. To do this assignment you will need to click on the link provided on the intranet

More information

360 Degree Feedback Assignment. Robert M. Clarkson. Virginia Commonwealth University. EDLP 703 Understanding Self as Leader: Practical Applications

360 Degree Feedback Assignment. Robert M. Clarkson. Virginia Commonwealth University. EDLP 703 Understanding Self as Leader: Practical Applications Running head: 360 DEGREE FEEDBACK 1 360 Degree Feedback Assignment Robert M. Clarkson Virginia Commonwealth University EDLP 703 Understanding Self as Leader: Practical Applications Commented [O1]: All

More information

Addiction, Pain, & Public Health website -

Addiction, Pain, & Public Health website - Addiction, Pain, & Public Health website - www.doctordeluca.com/ Dispensing of Controlled Substances for the Treatment of Pain -- Drug Enforcement Administration (DEA), Department of Justice; ACTION: Interim

More information

What are the experiences of therapeutic relationships on in-patient wards by people who dissociate?

What are the experiences of therapeutic relationships on in-patient wards by people who dissociate? I am looking for people who may like to take part in a piece of research I am undertaking for my thesis as a part of my Clinical Psychology Doctorate. The research aims to explore how people who dissociate

More information

ABSTRACT INTRODUCTION

ABSTRACT INTRODUCTION Adaptive Randomization: Institutional Balancing Using SAS Macro Rita Tsang, Aptiv Solutions, Southborough, Massachusetts Katherine Kacena, Aptiv Solutions, Southborough, Massachusetts ABSTRACT Adaptive

More information

Assessment: Interviews, Tests, Techniques. Clinical Psychology Lectures

Assessment: Interviews, Tests, Techniques. Clinical Psychology Lectures Lecture 6 Assessment: Interviews, Tests, Techniques Clinical Psychology Lectures Psychodiagnostic Assessment Also termed: personality assessment, diagnostic assessment, pretreatment assessments or psychological

More information

PROGRAMME SPECIFICATION UNDERGRADUATE PROGRAMMES

PROGRAMME SPECIFICATION UNDERGRADUATE PROGRAMMES PROGRAMME SPECIFICATION UNDERGRADUATE PROGRAMMES KEY FACTS Programme name Psychology Award BSc (Hons) School School of Arts and Social Sciences Department or equivalent Department of Psychology UCAS Code

More information

Girls on the Run Treasure Valley

Girls on the Run Treasure Valley Girls on the Run Treasure Valley Sponsorship Opportunities Girls on the Run is not all about running. It is about becoming a team. - Coach Erin We inspire girls to be joyful, healthy and confident using

More information

The FASTCLUS Procedure as an Effective Way to Analyze Clinical Data

The FASTCLUS Procedure as an Effective Way to Analyze Clinical Data The FASTCLUS Procedure as an Effective Way to Analyze Clinical Data Lev Sverdlov, Ph.D., Innapharma, Inc., Park Ridge, NJ ABSTRACT This paper presents an example of the fast cluster analysis (SAS/STAT,

More information

Improved Transparency in Key Operational Decisions in Real World Evidence

Improved Transparency in Key Operational Decisions in Real World Evidence PharmaSUG 2018 - Paper RW-06 Improved Transparency in Key Operational Decisions in Real World Evidence Rebecca Levin, Irene Cosmatos, Jamie Reifsnyder United BioSource Corp. ABSTRACT The joint International

More information

Help and Healing: Section 2: Treatment Planning. Treatment and Timelines. Depression Treatment Reference. Care Team Communication

Help and Healing: Section 2: Treatment Planning. Treatment and Timelines. Depression Treatment Reference. Care Team Communication Help and Healing: Resources for Depression Care and Recovery Section 2: Treatment Planning Treatment and Timelines Depression Treatment Reference Care Team Communication Provider Education Tool - Questions

More information

Medtech32 Diabetes Get Checked II Advanced Form Release Notes

Medtech32 Diabetes Get Checked II Advanced Form Release Notes Medtech32 Diabetes Get Checked II Advanced Form Release Notes These Release Notes contain important information for all Medtech32 Users. Please ensure that they are circulated amongst all your staff. We

More information

Preparation for Change: The Tower of Strengths and the Weekly Planner

Preparation for Change: The Tower of Strengths and the Weekly Planner This manual was developed as part of the National Institute on Drug Abuse (NIDA) Grant DA08608, Cognitive Enhancements for the Treatment of Probationers (CETOP). The Preparation for Change: The Tower of

More information

Summary Table Voluntary Product Accessibility Template. Supports. Please refer to. Supports. Please refer to

Summary Table Voluntary Product Accessibility Template. Supports. Please refer to. Supports. Please refer to Date Aug-07 Name of product SMART Board 600 series interactive whiteboard SMART Board 640, 660 and 680 interactive whiteboards address Section 508 standards as set forth below Contact for more information

More information

Psychotropic Medication

Psychotropic Medication FOM 802-1 1 of 10 OVERVIEW The use of psychotropic medication as part of a child s comprehensive mental health treatment plan may be beneficial and should include consideration of all alternative interventions.

More information

Imputing Dose Levels for Adverse Events

Imputing Dose Levels for Adverse Events Paper HO03 Imputing Dose Levels for Adverse Events John R Gerlach & Igor Kolodezh CSG Inc., Raleigh, NC USA ABSTRACT Besides the standard reporting of adverse events in clinical trials, there is a growing

More information

A Psychiatric & Addictive Disease Healthcare System for Children and Adults

A Psychiatric & Addictive Disease Healthcare System for Children and Adults Treatment Trails A Psychiatric & Addictive Disease Healthcare System for Children and Adults Welcome to Holly Hill Hospital Welcome to the Holly Hill Hospital Adult Campus located in Raleigh, North Carolina.

More information

GCSE PSYCHOLOGY UNIT 2 FURTHER RESEARCH METHODS

GCSE PSYCHOLOGY UNIT 2 FURTHER RESEARCH METHODS GCSE PSYCHOLOGY UNIT 2 FURTHER RESEARCH METHODS GCSE PSYCHOLOGY UNIT 2 SURVEYS SURVEYS SURVEY = is a method used for collecting information from a large number of people by asking them questions, either

More information

Phone Screen. Beginning the Psychoeducational Process: The Intake. The Psychoeducational Process and Elements throughout Care

Phone Screen. Beginning the Psychoeducational Process: The Intake. The Psychoeducational Process and Elements throughout Care Brian McKain, RN, MSN Christina Hanna, MS 1. Identify and explain the components used to assess and diagnose depression 2. How to share the wealth with both patients and their parents 3. Understand that

More information

natal Marijuana and Public Health: The Colorado Perspective

natal Marijuana and Public Health: The Colorado Perspective natal Marijuana and Public Health: The Colorado Perspective Larry Wolk, MD MSPH Executive Director and CMO September 2015 1 natal 2 natal CDPHE Role Medical Marijuana Registry Medical Marijuana Research

More information

FluSafe: Tool for Tracking Healthcare Worker Immunizations in IIS

FluSafe: Tool for Tracking Healthcare Worker Immunizations in IIS FluSafe: Tool for Tracking Healthcare Worker Immunizations in IIS Aaron Bieringer Data Quality Analyst, MIIC Program September 20, 2012 Outline FluSafe Overview Current Process Proposed Enhancements Next

More information

Minnesota State Board of Assessors

Minnesota State Board of Assessors Minnesota State Board of Assessors DUAL NOTICE: Notice of Intent to Adopt Rules Without a Public Hearing Unless 25 or More Persons Request a Hearing, and Notice of Hearing if 25 or More Requests for Hearing

More information

Explores the definition of abnormal behavior and causes, classifications, and assessments for psychological disorders.

Explores the definition of abnormal behavior and causes, classifications, and assessments for psychological disorders. PSY 2010, Abnormal Psychology Course Syllabus Course Description Explores the definition of abnormal behavior and causes, classifications, and assessments for psychological disorders. Prerequisites PSY

More information

Thompson, Valerie A, Ackerman, Rakefet, Sidi, Yael, Ball, Linden, Pennycook, Gordon and Prowse Turner, Jamie A

Thompson, Valerie A, Ackerman, Rakefet, Sidi, Yael, Ball, Linden, Pennycook, Gordon and Prowse Turner, Jamie A Article The role of answer fluency and perceptual fluency in the monitoring and control of reasoning: Reply to Alter, Oppenheimer, and Epley Thompson, Valerie A, Ackerman, Rakefet, Sidi, Yael, Ball, Linden,

More information

CALIFORNIA COUNTIES TREATMENT RECORD REQUIREMENTS

CALIFORNIA COUNTIES TREATMENT RECORD REQUIREMENTS CALIFORNIA COUNTIES TREATMENT RECORD REQUIREMENTS Every service provided is subject to Beacon Health Options, State of California and federal audits. All treatment records must include documentation of

More information

Screening for Depression and Suicide

Screening for Depression and Suicide Screening for Depression and Suicide Christa Smith, PsyD Western Interstate Commission for Higher Education Boulder, Colorado 10/2/2008 Background My background A word about language Today stopics Why

More information

Hypnosis Self Hypnosis Powerful And Fast Working Hypnosis Techniques To Hypnotize Anyone Now Self Hypnosismind Controlhypnosis Techiniques

Hypnosis Self Hypnosis Powerful And Fast Working Hypnosis Techniques To Hypnotize Anyone Now Self Hypnosismind Controlhypnosis Techiniques Hypnosis Self Hypnosis Powerful And Fast Working Hypnosis Techniques To Hypnotize Anyone Now Self We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks

More information

Management of Chronic Non Cancer Pain Tool Instruction Manual for Practice Solutions Electronic Medical Record Intended Tool Use

Management of Chronic Non Cancer Pain Tool Instruction Manual for Practice Solutions Electronic Medical Record Intended Tool Use Management of Chronic Non Cancer Pain Tool Instruction Manual for Practice Solutions Electronic Medical Record Intended Tool Use Clinical best practices and recommendations that follow the Centre for Effective

More information

Understanding lymphoma: the importance of patient data

Understanding lymphoma: the importance of patient data Understanding lymphoma: the importance of patient data Introduction what is a cancer registry and why is it important? Cancer registries collect detailed, personalised information and data about cancer

More information

4/29/2018 8:39 PM Approved (Changed Course) PSYCH 5 Course Outline as of Fall 2014

4/29/2018 8:39 PM Approved (Changed Course) PSYCH 5 Course Outline as of Fall 2014 4/29/2018 8:39 PM Approved (Changed Course) PSYCH 5 Course Outline as of Fall 2014 CATALOG INFORMATION Dept and Nbr: PSYCH 5 Title: ABNORMAL PSYCH Full Title: Abnormal Psychology Last Reviewed: 10/28/2013

More information

A Sleeping Monitor for Snoring Detection

A Sleeping Monitor for Snoring Detection EECS 395/495 - mhealth McCormick School of Engineering A Sleeping Monitor for Snoring Detection By Hongwei Cheng, Qian Wang, Tae Hun Kim Abstract Several studies have shown that snoring is the first symptom

More information

A Step-by-Step Guide for Rubicon Pharmacists Delivering the RubiReview Program (SMAP)

A Step-by-Step Guide for Rubicon Pharmacists Delivering the RubiReview Program (SMAP) A Step-by-Step Guide for Rubicon Pharmacists Delivering the RubiReview Program (SMAP) May 2014 RubiReview Program Overview... 3 Overview... 3 Adherence Packaging (RubiPaks)... 4 Eligibility... 4 Financial

More information

Presents TREATMENT OF ADOLESCENTS WITH SUBSTANCE USE DISORDERS MODULE 2

Presents TREATMENT OF ADOLESCENTS WITH SUBSTANCE USE DISORDERS MODULE 2 Presents TREATMENT OF ADOLESCENTS WITH SUBSTANCE USE DISORDERS MODULE 2 Internet Based Coursework 3 hours of educational credit Approved by such credentialing bodies as: National Association of Alcoholism

More information

PerformCare Provider Network Scott Daubert PhD, VP Provider Network & Account Management. AD ICD-10-CM Frequently Asked Questions

PerformCare Provider Network Scott Daubert PhD, VP Provider Network & Account Management. AD ICD-10-CM Frequently Asked Questions Provider Notice To: From: PerformCare Provider Network Scott Daubert PhD, VP Provider Network & Account Management Date: April 23, 2015 Subject: AD 15 105 ICD-10-CM Frequently Asked Questions The Centers

More information

Multiple Diagnostic Interface (MDI) User Guide

Multiple Diagnostic Interface (MDI) User Guide Multiple Diagnostic Interface (MDI) User Guide 2014 GM Customer Care and Aftersales. Made in the U.S.A. All rights reserved. MDI is a registered trademark of General Motors. 1 Important Information Everything

More information

LAB ASSIGNMENT 4 INFERENCES FOR NUMERICAL DATA. Comparison of Cancer Survival*

LAB ASSIGNMENT 4 INFERENCES FOR NUMERICAL DATA. Comparison of Cancer Survival* LAB ASSIGNMENT 4 1 INFERENCES FOR NUMERICAL DATA In this lab assignment, you will analyze the data from a study to compare survival times of patients of both genders with different primary cancers. First,

More information

Introducing ValueOptions Clinical Care Alerts

Introducing ValueOptions Clinical Care Alerts Introducing ValueOptions Clinical Care Alerts January 2013 Agenda What are Clinical Care Alerts? How does it work? What are the benefits? Questions and Answers 2 The Issue of Poor Medication Adherence

More information

MEDICATION GUIDE WELLBUTRIN (WELL byu-trin) (bupropion hydrochloride) Tablets

MEDICATION GUIDE WELLBUTRIN (WELL byu-trin) (bupropion hydrochloride) Tablets MEDICATION GUIDE WELLBUTRIN (WELL byu-trin) (bupropion hydrochloride) Tablets Read this Medication Guide carefully before you start using WELLBUTRIN and each time you get a refill. There may be new information.

More information

Patient Manual Brainsway Deep Transcranial Magnetic Stimulation (Deep TMS) System for Treatment of Major Depressive Disorder

Patient Manual Brainsway Deep Transcranial Magnetic Stimulation (Deep TMS) System for Treatment of Major Depressive Disorder Dr. Zahida Tayyib www.mvptms.com Patient Manual Brainsway Deep Transcranial Magnetic Stimulation (Deep TMS) System for Treatment of Major Depressive Disorder If you are considering Brainsway Deep treatment

More information

Propensity Score Methods for Causal Inference with the PSMATCH Procedure

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

More information

PSYCHOLOGY HUMAN SUBJECT POOL AY

PSYCHOLOGY HUMAN SUBJECT POOL AY General Features of the Psychology Human Subject Pool The Psychology Human Subject Pool (Subject Pool) provides a system for coordinating enrollment in Department research involving human subjects. The

More information

Not sure if a talking therapy is for you?

Not sure if a talking therapy is for you? South Tyneside NHS Foundation Trust Primary Care Mental Health Service Not sure if a talking therapy is for you? Take a look at the different types of therapy we have available to find out more about them.

More information

Investigator Initiated Study Proposal Form

Investigator Initiated Study Proposal Form Please submit completed form to IISReview@KCI1.com Date Submitted Name & Title Institution Address Phone Number Email Address Principal Investigator / Institution YES NO Multi Center Study Acelity Product(s)

More information

USDA Demonstration Project for Non-Congregate Feeding for Outdoor Summer Meal Sites Experiencing Excessive Heat

USDA Demonstration Project for Non-Congregate Feeding for Outdoor Summer Meal Sites Experiencing Excessive Heat SUMMER FOOD SERVICE PROGRAM CLARIFICATION OF FEDERAL POLICY In Texas, organizations contracting directly with the (TDA) to operate nutrition programs federally funded through the United States Department

More information

Lab 7 (100 pts.): One-Way ANOVA Objectives: Analyze data via the One-Way ANOVA

Lab 7 (100 pts.): One-Way ANOVA Objectives: Analyze data via the One-Way ANOVA STAT 350 (Spring 2015) Lab 7: SAS Solution 1 Lab 7 (100 pts.): One-Way ANOVA Objectives: Analyze data via the One-Way ANOVA A. (50 pts.) Do isoflavones increase bone mineral density? (ex12-45bmd.txt) Kudzu

More information

Changes to the Organization and Diagnostic Coverage of the SCID-5-RV

Changes to the Organization and Diagnostic Coverage of the SCID-5-RV Changes to the Organization and Diagnostic Coverage of the SCID-5-RV Core vs. Enhanced SCID configuration A number of new disorders have been added to the SCID-5-RV. To try to reduce the length and complexity

More information

Hope FIRST: An Innovative Treatment for First Episode Psychosis PRESENTATION BY REBECCA FLATTERY, LCSW AND BRIAN ROHLOFF, LPC

Hope FIRST: An Innovative Treatment for First Episode Psychosis PRESENTATION BY REBECCA FLATTERY, LCSW AND BRIAN ROHLOFF, LPC Hope FIRST: An Innovative Treatment for First Episode Psychosis PRESENTATION BY REBECCA FLATTERY, LCSW AND BRIAN ROHLOFF, LPC What is a first episode of psychosis? The word psychosis is used to describe

More information

Graph Display of Patient Profile Using SAS

Graph Display of Patient Profile Using SAS PharmaSUG 2018 - Paper DV-17 Graph Display of Patient Profile Using SAS Yanwei Han, Seqirus USA Inc., Cambridge, MA Hongyu Liu, Seqirus USA Inc., Cambridge, MA ABSTRACT We usually create patient profile

More information

Response to. GPhC Consultation. Guidance to ensure a safe and effective pharmacy team.

Response to. GPhC Consultation. Guidance to ensure a safe and effective pharmacy team. Response to GPhC Consultation on Guidance to ensure a safe and effective pharmacy team. Contact Helga Mangion National Pharmacy Association Mallinson House 38-42 St Peter s Street St Albans Herts AL1 3NP

More information

Arts Administrators and Healthcare Providers

Arts Administrators and Healthcare Providers Arts Administrators and Healthcare Providers Table of Contents Part One: Creating Music and Programs 2 Preparing to Start a Program 2 Finding Funding 2 Selecting Partner Arts Organizations or Healthcare

More information

Dementia Direct Enhanced Service

Dementia Direct Enhanced Service Vision 3 Dementia Direct Enhanced Service England Outcomes Manager Copyright INPS Ltd 2015 The Bread Factory, 1A Broughton Street, Battersea, London, SW8 3QJ T: +44 (0) 207 501700 F:+44 (0) 207 5017100

More information

BIOLOGY. The range and suitability of the work submitted

BIOLOGY. The range and suitability of the work submitted Overall grade boundaries BIOLOGY Grade: E D C B A Mark range: 0-7 8-15 16-22 23-28 29-36 The range and suitability of the work submitted In this session essays were submitted in a wide range of appropriate

More information

university client training program

university client training program COURSE OFFERINGS university client training program Dear Valued Client, Since our inception in 1997, TSI Healthcare has followed a guiding principle that support and training do not end after implementation.

More information

THE AFIX PRODUCT TRAINING MANUAL

THE AFIX PRODUCT TRAINING MANUAL THE AFIX PRODUCT TRAINING MANUAL Last Updated: 11/30/2018 Table of Contents The AFIX Product End User Training AFIX Cohort. 4 Provider Selection... 4 Assessment Selection..... 7 Reports.......10 Flexible

More information

Schizophrenia is a serious mental health condition that affects

Schizophrenia is a serious mental health condition that affects Schizophrenia Schizophrenia is a serious mental health condition that affects a person s thoughts, feelings and behaviours. Whilst it is serious, schizophrenia is both treatable and manageable, and we

More information

There are no course prerequisites for this course other than being an RBA (Regents Bachelor of Arts) student.

There are no course prerequisites for this course other than being an RBA (Regents Bachelor of Arts) student. RBIO3 BIO301 Drugs, Brain, and Behavior Master Course Syllabus Course Overview (QM Standards 1.2) Course description: Drugs, Brain and Behavior is an eight-week online, three credit hour course. The class

More information

Colorado Summit. Updates for Providers in the Colorado Medicaid Dental Program. This issue of the Colorado Summit will cover the following:

Colorado Summit. Updates for Providers in the Colorado Medicaid Dental Program. This issue of the Colorado Summit will cover the following: Colorado Summit Updates for Providers in the Colorado Medicaid Dental Program Vol. 3 February 2015 Dear Dental Provider, DentaQuest is pleased to be working with the Department on the important job of

More information

Creating Multiple Cohorts Using the SAS DATA Step Jonathan Steinberg, Educational Testing Service, Princeton, NJ

Creating Multiple Cohorts Using the SAS DATA Step Jonathan Steinberg, Educational Testing Service, Princeton, NJ Creating Multiple Cohorts Using the SAS DATA Step Jonathan Steinberg, Educational Testing Service, Princeton, NJ ABSTRACT The challenge of creating multiple cohorts of people within a data set, based on

More information

Previous Study Return to List Next Study

Previous Study Return to List Next Study A service of the U.S. National Institutes of Health Trial record 1 of 1 for: 42603ATT3013 Previous Study Return to List Next Study A Study to Evaluate Effectiveness and Safety of Prolonged Release OROS

More information

The Leeds Reliable Change Indicator

The Leeds Reliable Change Indicator The Leeds Reliable Change Indicator Simple Excel (tm) applications for the analysis of individual patient and group data Stephen Morley and Clare Dowzer University of Leeds Cite as: Morley, S., Dowzer,

More information

Importance of Cell Stock Concentration for Accurate Target Cell Recovery

Importance of Cell Stock Concentration for Accurate Target Cell Recovery TECHNICAL NOTE Importance of Cell Stock Concentration for Accurate Target Cell Recovery INTRODUCTION 10x Genomics Single Cell Protocols require suspensions of viable, single cells (Single Cell Protocols

More information

Using the NWD Integrative Screener as a Data Collection Tool Agency-Level Aggregate Workbook

Using the NWD Integrative Screener as a Data Collection Tool Agency-Level Aggregate Workbook Using the NWD Integrative Screener as a Data Collection Tool Agency-Level Aggregate Workbook The NWD Integrative Screener was designed to be user friendly for providers and agencies. Many items and health

More information

Connecticut Medicaid Emerging Adults

Connecticut Medicaid Emerging Adults Connecticut Medicaid Emerging Adults Child/Adolescent Quality, Access & Policy Committee April 18, 2018 Christopher Bory, PsyD, Beacon Health Options Agenda 1. National Context a. Gap in understanding

More information

LEWIS & CLARK COLLEGE

LEWIS & CLARK COLLEGE 1 LEWIS & CLARK COLLEGE GRADUATE SCHOOL OF EDUCATION AND COUNSELING CPSY 522-01: DIAGNOSIS OF MENTAL & EMOTIONAL DISORDERS SPRING 2012 Instructor: Thomas Joseph Doherty, Psy.D. Email: tdoherty@lclark.edu

More information