Network Analysis: Lecture 1. Sacha Epskamp

Size: px
Start display at page:

Download "Network Analysis: Lecture 1. Sacha Epskamp 02-09-2014"

Transcription

1 : Lecture 1 University of Amsterdam Department of Psychological Methods

2 Who are you? What is your specialization? Why are you here? Are you familiar with the network perspective? How familiar are you with?

3 Denny Borsboom Claudia van Borkulo Jolanda Kossakowski

4 Date Subject Lecturer Start Due Tu 02/09 Introduction Th 04/09 Intro to Assignment 1 Tu 09/09 Correlational structures Th 11/09 qgraph workshop Assignment 2 Assignment 1 Tu 16/09 Network descriptives Th 18/09 Centrality in qgraph Assignment 3 Assignment 2 Tu 23/09 Causal networks Denny Borsboom Th 25/09 Practical Denny Borsboom Assignment 4 Assignment 3 Tu 30/09 Directed networks Claudia van Borkulo Th 02/10 Practical Claudia van Borkulo Assignment 5 Assignment 4 Tu 07/10 Undirected networks Th 09/10 Practical Assignment 6 & Final Project Assignment 5 Tu 14/10 Final project Th 16/10 Final project Assignment 6 Tu 21/10 Th 23/10 Fr 24/10 Final project presentations Final project presentations Final project report Assignments are due on 11:00, the final project report on 24:00

5 Assignments Assignments are made available during the practicals on Thursday The deadline for every assignment is the start of the next practical Assignments should be handed in on blackboard Most assignments contain an essay question These should be written as proper scientific reports Include reference list, correct APA formatting, etcetera These will be graded on writing quality in addition to content Assignments have to be written in English Assignment 6 will be significantly smaller than other assignments

6 Final Project Groups of 2 Choose a dataset Apply the methodology discussed in this course Apply the methods of week 5 and 6 to estimate network structures Apply the methodology discussed in week 3 Substantively interpret the results Conceptually interpret the meaning of network analysis on your dataset Write a 1500 word scientific report on your findings 10 minute presentations in the last week Creativity is rewarded! Detailed info to follow

7 Grading 50% Assignments 50% Final project Both must be at least 5.5

8 Network Models (2015) This course is not the same course as the Network Models course given by Lourens Waldorp Generally NM is a followup course to NA (NA is not required for NM) You are allowed to do both! NA teaches you to apply the network methodology to psychological data and NM teaches you a deeper understanding of graph theory More equations in NM and more pretty pictures in NA Some overlap, but not that much

9

10 is the statistical programming language used throughout the esearch master programme: Multivariate Analysis Programming Skills: SEM and other statistical courses You could very well use it during research projects as well This course requires a basic understanding of ead data into Work with vectors, matrices and data frames Creating Indexing Use functions in, and consult their help pages Correlate data ead data into

11 If you don t already know : Install from Install Studio from this Thursday during practical ead the very short introduction to on blackboard A nice introduction to is also given at

12 Euler s problem

13 Euler s problem

14 Worry Insomnia MD Concentration Fatigue

15 Worry Insomnia MD Concentration Fatigue

16 Worry Insomnia MD Concentration Fatigue

17 Worry Insomnia MD Concentration Fatigue

18 Worry Insomnia MD Concentration Fatigue

19 Worry Insomnia MD Concentration Fatigue

20 Worry Insomnia MD Concentration Fatigue

21 Worry Insomnia Concentration Fatigue

22 Worry Insomnia Concentration Fatigue

23 Mutualism Van der Maas et al. (2006)

24 Psychology as a Disorders usually first diagnosed in infancy, childhood or adolescence Delirium, dementia, and amnesia and other cognitive disorders Mental disorders due to a general medical condition Substance related disorders Schizophrenia and other psychotic disorders Mood disorders Anxiety disorders Somatoform disorders Factitious disorders Dissociative disorders Sexual and gender identity disorders Eating disorders Sleep disorders Impulse control disorders not elsewhere classified Adjustment disorders Personality disorders Symptom is featured equally in multiple chapters Disorders usually first diagnosed in infancy, childhood or adolescence Delirium, dementia, and amnesia and other cognitive disorders Mental disorders due to a general medical condition Substance related disorders Schizophrenia and other psychotic disorders Mood disorders Anxiety disorders Somatoform disorders Factitious disorders Dissociative disorders Sexual and gender identity disorders Eating disorders Sleep disorders Impulse control disorders not elsewhere classified Adjustment disorders Personality disorders Symptom is featured equally in multiple chapters

25 What is a network? A network is a set of nodes connected by a set of edges Nodes are also called vertices Edges are also called links Networks are also called graphs

26 Node 1 Edge Node 2

27 What is a network? A network is a set of nodes connected by a set of edges A node represents an entity, this can be anything: People Cities Symptoms Psychological constructs An edge represents some connection between two nodes. Again, this can be anything: Friendship / contact Distance Causality Interaction

28 Anne is friends with Laura: Anne Friendship Laura

29 Anne is friends with Laura and oger, but Laura is not friends with oger: Anne oger Laura

30 Networks can be weighted Anne is better friends with met oger than Laura: Anne oger Laura

31 Weights can be signed Anne is friends with oger and Laura, but oger and Laura don t like each other at all! Anne oger Laura

32 Edge weights Weights can be positive or negative, and indicates the strength of an edge, with zero indicating no strength (identical to the absence of an edge) Nodes that are connected by a strong edge can be seen as close by or easily reachable from one to the other Sometimes an edge has a length rather than a weight This is a positive value indicating the distance between two nodes A length of indicates no edge A weight is often recoded to a length by taking the inverse of the absolute value of the weight

33 Networks can be directed Anne likes Laura, but Laura doesn t like Anne: Anne Laura

34 Edges can be weighted or unweighted A network with weighted edges is called a weighted graph Otherwise it is called an unweighted graph Edges can be directed or undirected If all edges are directed the network is called a directed graph If all edges are not directed the network is called an undirected graph Otherwise it is called a mixed graph

35 A A D Undirected Unweighted B D Undirected Weighted B C C A A D Directed Unweighted B D Directed Weighted B C C

36 A directed network with no cycles is called a Directed Acyclic Graph (DAG) A cycle means that you can not start at a node and encounter it again by following directed edges This includes no self-loops As we will see in later lectures, DAGs are very useful in that they represent a clear dependency structure between the nodes But, the assumption on acylicness is very strict and often not tenable

37 A A D Cyclic B D Acyclic B C C

38 Mathematical notation In mathematics, a graph G is considered an ordered pair of a set V of vertices (nodes) and a set E edges: 1 G = {V, E} V = {1, 2, 3} E = {(1, 2), (2, 3), (3, 1)} 3 2

39 Adjacency matrices Let V be the number of nodes. An adjacency matrix is a square V V matrix in which each element is 0 or 1. If there is a 1 in row i and column j it means there is an edge from node i to node j A 0 denotes that there is no edge Undirected networks are encoded with a symmetrical adjacency matrix

40 Adjacency matrices A =

41 Adjacency matrices A =

42 Weights Matrices An weights matrix is identical to an adjacency matrix except it encodes the weight of the edge A 0 still indicates no edge Higher absolute values indicate stronger edges Undirected networks are encoded with a symmetrical adjacency matrix

43 Weights matrices W =

44 Weights matrices W =

45 Edgelist Let E be the number of nodes. An edgelist is a E 2 matrix containing a row for each edge The first column contains the node of origin and the second column the node of destination In weighted networks, a third column indicates the edge weight

46 Edgelist 1 2 E =

47 Edgelist 1 2 E =

48 Edgelist E =

49 Edgelist E =

50 Interpreting Networks A network can be interpreted in different ways: As a model of interacting components Information can spread from node to node via edges As a causal model (weeks 4-5) As a predictive model (week 6)

51 Interacting components

52

53

54

55

56

57

58

59

60

61

62 Friendship

63 Friendship

64 elationships

65 Sexual contacts

66 Networks can be simulated given sufficient information about a population:

67 If a real network can not be obtained an approximation can be simulated.

68 virus...

69 Generalized Anxiety: Chronic Anxiety Anxiety about more than one event Irritability No control of anxiety Muscle tension Sleep Disturbances Concentration problems estlessness Fatigue Major Depression: Depressed mood Loss of interest in pleasurable things Weight problems Self-reproach (thoughts of) suicide Sleep disturbances Concentration problems estlessness Fatigue

70 Generalized Anxiety: Chronic Anxiety Anxiety about more than one event Irritability No control of anxiety Muscle tension Sleep Disturbances Concentration problems estlessness Fatigue Major Depression: Depressed mood Loss of interest in pleasurable things Weight problems Self-reproach (thoughts of) suicide Sleep disturbances Concentration problems estlessness Fatigue

71 (Cramer, Waldorp, van der Maas, Borsboom, et al., 2010)

72 Disorders usually first diagnosed in infancy, childhood or adolescence Delirium, dementia, and amnesia and other cognitive disorders Mental disorders due to a general medical condition Substance related disorders Schizophrenia and other psychotic disorders Mood disorders Anxiety disorders Somatoform disorders Factitious disorders Dissociative disorders Sexual and gender identity disorders Eating disorders Sleep disorders Impulse control disorders not elsewhere classified Adjustment disorders Personality disorders Symptom is featured equally in multiple chapters Disorders usually first diagnosed in infancy, childhood or adolescence Delirium, dementia, and amnesia and other cognitive disorders Mental disorders due to a general medical condition Substance related disorders Schizophrenia and other psychotic disorders Mood disorders Anxiety disorders Somatoform disorders Factitious disorders Dissociative disorders Sexual and gender identity disorders Eating disorders Sleep disorders Impulse control disorders not elsewhere classified Adjustment disorders Personality disorders Symptom is featured equally in multiple chapters (Borsboom, Cramer, Schmittmann, Epskamp, & Waldorp, 2011)

73 0.7 Correlation Average Shortest Path Length MDE x DYS MDE x AGPH MDE x SOP MDE x SIP MDE x PD MDE x APD DYS X AGPH DYS X SOP DYS X SIP DYS X PD DYS X APD AGPH X SOP AGPH X SIP AGPH X PD AGPH X APD SOP X SIP SOP X PD SOP X APD SIP X PD SIP X APD PD X APD

74 For Thursday, read:, a Network Perspective The Network Takeover A (very) short introduction to

75 I Borsboom, D., Cramer, A. O., Schmittmann, V. D., Epskamp, S., & Waldorp, L. J. (2011). The small world of psychopathology. PloS one, 6(11), e Cramer, A. O., Waldorp, L. J., van der Maas, H. L., Borsboom, D., et al. (2010). : A network perspective. Behavioral and Brain Sciences, 33(2-3), Van der Maas, H. L. J., Dolan, C. V., Grasman,. P. P. P., Wicherts, J. M., Huizenga, H. M., & aijmakers, M. E. J. (2006). A dynamical model of general intelligence: the positive manifold of intelligence by mutualism. Psychological review, 113(4), 842.

The complexity of psychopathology:! A network approach

The complexity of psychopathology:! A network approach The complexity of psychopathology:! A network approach Denny%Borsboom% University%of%Amsterdam www.psychosystems.org Overview The network idea! Conceptual consequences:! Disorders and their boundaries!

More information

CRITERIA CHECKLIST. Serious Mental Illness (SMI)

CRITERIA CHECKLIST. Serious Mental Illness (SMI) Serious Mental Illness (SMI) SMI determination is based on the age of the individual, functional impairment, duration of the disorder and the diagnoses. Adults must meet all of the following five criteria:

More information

How to Read the DSM-IV A Tutorial for Beginners

How to Read the DSM-IV A Tutorial for Beginners How to Read the DSM-IV A Tutorial for Beginners By Dr. Robert Tippie, Ph.D. MARET Systems International Previously we explained the validity of pastors using the DSM-IV. In this article we will discuss

More information

PSYC 270 Abnormal Psychology

PSYC 270 Abnormal Psychology PSYC 270 Abnormal Psychology 3 semester hour credits Course Description: A survey of the classification, symptoms, and etiology of psychological disorders. This class focuses on the entire range and scope

More information

Abnormal Psychology Course Syllabus Spring Semester, 2006

Abnormal Psychology Course Syllabus Spring Semester, 2006 Abnormal Psychology Course Syllabus Spring Semester, 2006 Course Title: Abnormal Psychology Course Number: CLP 3144 (Reference Number 0344) Class Time: Tuesdays and Thursdays, 4:00 PM 5:15 PM Location:

More information

Objective 4: Students will be able to identify normal human developmental milestones and human sexuality throughout the lifespan.

Objective 4: Students will be able to identify normal human developmental milestones and human sexuality throughout the lifespan. Med 3 Behavioral Science Spring 2009 Deborah Gerrity, Ph.D. 481-8837; dgerrity@auamed.net Lecture: 11:30-12:20 MTWTF Jim Rice, Ph.D. 481-8858; jrice@auamed.net Office Hours By Appointment Don Kastuk, Ph.D.

More information

Mental health issues in the elderly. January 28th 2008 Presented by Éric R. Thériault etheriau@lakeheadu.ca

Mental health issues in the elderly. January 28th 2008 Presented by Éric R. Thériault etheriau@lakeheadu.ca Mental health issues in the elderly January 28th 2008 Presented by Éric R. Thériault etheriau@lakeheadu.ca Cognitive Disorders Outline Dementia (294.xx) Dementia of the Alzheimer's Type (early and late

More information

309.28 F43.22 Adjustment disorder with mixed anxiety and depressed mood Adjustment disorder with disturbance of conduct

309.28 F43.22 Adjustment disorder with mixed anxiety and depressed mood Adjustment disorder with disturbance of conduct Description ICD-9-CM Code ICD-10-CM Code Adjustment reaction with adjustment disorder with depressed mood 309.0 F43.21 Adjustment disorder with depressed mood Adjustment disorder with anxiety 309.24 F43.22

More information

YALE UNIVERSITY Department of Psychology 2 Hillhouse Avenue, New Haven, Connecticut 06520

YALE UNIVERSITY Department of Psychology 2 Hillhouse Avenue, New Haven, Connecticut 06520 YALE UNIVERSITY Department of Psychology 2 Hillhouse Avenue, New Haven, Connecticut 06520 S180: Abnormal Psychology Instructor: David Klemanski Location: Kirtland Hall, Room 207 Day/Time: Tuesdays and

More information

PY345 ABNORMAL PSYCHOLOGY COURSE SYLLABUS FALL, 2013 MWF 12:00-12:50

PY345 ABNORMAL PSYCHOLOGY COURSE SYLLABUS FALL, 2013 MWF 12:00-12:50 PY345 ABNORMAL PSYCHOLOGY COURSE SYLLABUS FALL, 2013 MWF 12:00-12:50 Instructor: Jared Bartels, Ph.D. Office: Baity Hall 108a Email: bartelsj@moval.edu Phone: 660-831-4127 Office Hours: MWF 10:00-11:30;

More information

DATA ANALYSIS II. Matrix Algorithms

DATA ANALYSIS II. Matrix Algorithms DATA ANALYSIS II Matrix Algorithms Similarity Matrix Given a dataset D = {x i }, i=1,..,n consisting of n points in R d, let A denote the n n symmetric similarity matrix between the points, given as where

More information

North-Grand High School Psychology 2015-2016

North-Grand High School Psychology 2015-2016 North-Grand High School Psychology 2015-2016 Ms. Fryer and Ms. Blum E-mail: afryer@cps.edu or mblum@cps.edu (Please do not email me at aledwards@cps.edu) Free Periods- 1 st, 5 th, and 6 th period Coarse

More information

City University of Hong Kong

City University of Hong Kong City University of Hong Kong Information on a Course offered by Department of Applied Social Sciences with effect from Semester A in 2014/2015 Part I Course Title: Course Code: Course Duration: Abnormal

More information

EXHIBIT D, COVERED BEHAVIORAL HEALTH DIAGNOSES

EXHIBIT D, COVERED BEHAVIORAL HEALTH DIAGNOSES EXHIBIT D, COVERED BEHAVIORAL HEALTH DIAGNOSES Part I- Mental Health Covered Diagnoses 295-298.9 295 Schizophrenic s (the following fifth-digit sub-classification is for use with category 295) 0 unspecified

More information

Mental Health ICD-10 Codes Department of Health and Mental Hygiene

Mental Health ICD-10 Codes Department of Health and Mental Hygiene Mental Health ICD-10 Codes Department of Health and Mental Hygiene (2) For dates of service on or after October 1, 2015: F200 F201 F202 F203 F205 F2081 F2089 F209 F21 F22 F23 F24 F250 F251 F258 F259 F28

More information

Provider Notice 1.13. May 30, 2008. Pre-Authorization 1915(b) Service

Provider Notice 1.13. May 30, 2008. Pre-Authorization 1915(b) Service Provider Notice 1.13 May 30, 2008»» Pre-Authorization 1915(b) Service 1915(b) Attendant Care Services (CPT T1019HE) and 1915(b) Case Conference services (CPT 99366, 99367, 99368) are pre-authorized services

More information

Amphetamines Addiction

Amphetamines Addiction Introduction Amphetamines, which are classified as stimulants, work by using the dopamine reward system of the brain. When these drugs are used, the user s central nervous system is simulated which causes

More information

ICD-10 Mental Health Billable Diagnosis Codes in Alphabetical Order by Description

ICD-10 Mental Health Billable Diagnosis Codes in Alphabetical Order by Description Mental Health Billable s in Alphabetical Order by Note: SSIS stores code descriptions up to 100 characters. Actual code description can be longer than 100 characters. F40.241 Acrophobia F43.0 Acute stress

More information

Comparison of Two Dual Diagnosis Tracks: Enhanced Dual Diagnosis versus Standard Dual Diagnosis Treatment Report Date: July 17, 2003

Comparison of Two Dual Diagnosis Tracks: Enhanced Dual Diagnosis versus Standard Dual Diagnosis Treatment Report Date: July 17, 2003 Comparison of Two Dual Diagnosis Tracks: Enhanced Dual Diagnosis versus Standard Dual Diagnosis Treatment Report Date: July 17, 2003 Objective: To compare treatment outcomes and treatment costs for four

More information

BOARD OF PHARMACY SPECIALITIES 2215 Constitution Avenue, NW Washington, DC 20037-2985 202-429-7591 FAX 202-429-6304 bps@aphanet.org www.bpsweb.

BOARD OF PHARMACY SPECIALITIES 2215 Constitution Avenue, NW Washington, DC 20037-2985 202-429-7591 FAX 202-429-6304 bps@aphanet.org www.bpsweb. BOARD OF PHARMACY SPECIALITIES 2215 Constitution Avenue, NW Washington, DC 20037-2985 202-429-7591 FAX 202-429-6304 bps@aphanet.org www.bpsweb.org Content Outline for the PSYCHIATRIC PHARMACY SPECIALTY

More information

CHAPTER 5 MENTAL, BEHAVIOR AND NEURODEVELOPMENT DISORDERS (F01-F99) March 2014. 2014 MVP Health Care, Inc.

CHAPTER 5 MENTAL, BEHAVIOR AND NEURODEVELOPMENT DISORDERS (F01-F99) March 2014. 2014 MVP Health Care, Inc. CHAPTER 5 MENTAL, BEHAVIOR AND NEURODEVELOPMENT DISORDERS (F01-F99) March 2014 2014 MVP Health Care, Inc. CHAPTER 5 CHAPTER SPECIFIC CATEGORY CODE BLOCKS F01-F09 Mental disorders due to known physiological

More information

COURSE OUTLINE PSYC 204 ABNORMAL PSYCHOLOGY 45 HOURS 3 CREDITS

COURSE OUTLINE PSYC 204 ABNORMAL PSYCHOLOGY 45 HOURS 3 CREDITS APPLIED ARTS DIVISION School of Liberal Arts Fall, 2015 COURSE OUTLINE PSYC 204 ABNORMAL PSYCHOLOGY 45 HOURS 3 CREDITS PREPARED BY: James McClelland DATE: May, 2015 APPROVED BY: DATE: APPROVED BY ACADEMIC

More information

Introduction to Abnormal Psychology PSY 3604, section 001 University of Minnesota, Fall 2011

Introduction to Abnormal Psychology PSY 3604, section 001 University of Minnesota, Fall 2011 Introduction to Abnormal Psychology PSY 3604, section 001 University of Minnesota, Fall 2011 Instructor: Jim Porter, M.A., porterj@umn.edu Class Location: 133 Tate (Physics Building) Time: Monday and Wednesday,

More information

PSYC 340 Abnormal Psychology Syllabus

PSYC 340 Abnormal Psychology Syllabus PSYC 340 Abnormal Psychology Syllabus Professor: Dr. Jacob Jones, Ph.D. Office Hours: H-224A/ MW: 11-12, T-TH: 11-12 or by appointment Office Phone: 248-1254 E-Mail: jacjones@coloradomesa.edu STUDENT LEARNING

More information

DSM-5 to ICD-9 Crosswalk for Psychiatric Disorders

DSM-5 to ICD-9 Crosswalk for Psychiatric Disorders DSM-5 to ICD-9 Crosswalk for Psychiatric s The crosswalk found on the pages below contains codes or descriptions that have changed in the DSM-5 from the DSM-IV TR. DSM-5 to ICD-9 crosswalk is available

More information

Abnormal Psychology PSY-350-TE

Abnormal Psychology PSY-350-TE Abnormal Psychology PSY-350-TE This TECEP tests the material usually taught in a one-semester course in abnormal psychology. It focuses on the causes of abnormality, the different forms of abnormal behavior,

More information

TABLE 6E--REVISED DIAGNOSIS CODE TITLES Page 1 of 9 October 1, 2004

TABLE 6E--REVISED DIAGNOSIS CODE TITLES Page 1 of 9 October 1, 2004 TABLE 6E--REVISED DIAGNOSIS CODE TITLES Page 1 of 9 041.82 Bacteroides fragilis 070.41 Acute hepatitis C with hepatic coma 070.51 Acute hepatitis C without mention of hepatic coma 250.00 Diabetes mellitus

More information

Abnormal Behavior (W2620) Columbia University Course Syllabus, Spring 2012

Abnormal Behavior (W2620) Columbia University Course Syllabus, Spring 2012 Abnormal Behavior (W2620) Columbia University Course Syllabus, Spring 2012 Instructor: E mett McCaskill, Ph.D. Email: ew87@columbia.edu or emccaski@barnard.edu Office Locations: 356 SchExt, Columbia and

More information

Washington State Regional Support Network (RSN)

Washington State Regional Support Network (RSN) Access to Care Standards 11/25/03 Eligibility Requirements for Authorization of Services for Medicaid Adults & Medicaid Older Adults Please note: The following standards reflect the most restrictive authorization

More information

DSM-5 Do Not Use ICD -10 Codes

DSM-5 Do Not Use ICD -10 Codes DSM-5 Do Not Use ICD -10 Codes There are ICD-10 codes that DSM 5 is not compatible with. This spreadsheet details the ICD-10 codes that are NOT compatible with DSM 5. ICD10_DX_CD ICD10_DX_DESC F03.90 Unspecified

More information

ADVANCED DIPLOMA IN COUNSELLING AND PSYCHOLOGY

ADVANCED DIPLOMA IN COUNSELLING AND PSYCHOLOGY ACC School of Counselling & Psychology Pte Ltd www.acc.edu.sg Tel: (65) 6339-5411 9 Penang Road #13-22 Park Mall SC Singapore 238459 1) Introduction to the programme ADVANCED DIPLOMA IN COUNSELLING AND

More information

Covered Diagnoses & Crosswalk of DSM-IV Codes to ICD-9-CM Codes

Covered Diagnoses & Crosswalk of DSM-IV Codes to ICD-9-CM Codes Covered Diagnoses & Crosswalk of DSM-IV Codes to ICD-9-CM Codes What is the crosswalk? The crosswalk is a document designed to help you determine which ICD-9-CM diagnosis code corresponds to a particular

More information

Advanced Abnormal Psychology (PSY 46000-01) CRN 12239 Fall Semester 2015 Dr. David Young, Professor of Psychology. Course Syllabus

Advanced Abnormal Psychology (PSY 46000-01) CRN 12239 Fall Semester 2015 Dr. David Young, Professor of Psychology. Course Syllabus Advanced Abnormal Psychology (PSY 46000-01) CRN 12239 Fall Semester 2015 Dr. David Young, Professor of Psychology Course Syllabus (Presentation Rubric) Monday, Wednesday, Friday, 10-10:50 a.m. Office:

More information

Behavioral Health Screening Coding Requirements

Behavioral Health Screening Coding Requirements Behavioral Health Screening Coding Requirements The codes to be used to document the receipt of a Behavioral Health (Mental Health and Substance Abuse) Screening are as follows: Option 1: Evaluation and

More information

SGL: Stata graph library for network analysis

SGL: Stata graph library for network analysis SGL: Stata graph library for network analysis Hirotaka Miura Federal Reserve Bank of San Francisco Stata Conference Chicago 2011 The views presented here are my own and do not necessarily represent the

More information

Master of Arts in Psychology: Counseling Psychology

Master of Arts in Psychology: Counseling Psychology Deanship of Graduate Studies King Saud University Master of Arts in Psychology: Counseling Psychology Department of Psychology College of Education Master of Arts in Psychology: Counseling Psychology 2007/2008

More information

PSYO1032 Syllabus Online Course Introduction to Psychology and Neuroscience II: From Social Interaction to Psychopathology

PSYO1032 Syllabus Online Course Introduction to Psychology and Neuroscience II: From Social Interaction to Psychopathology PSYO0 Syllabus Online Course Introduction to Psychology and Neuroscience II: From Social Interaction to Psychopathology INSTRUCTORS Name Office Phone e- mail Jennifer Stamp Leanne Stevens LSC 5 LSC 55

More information

Texas State Technical College COURSE SYLLABUS PSYC 2301 GENERAL PSYCHOLOGY. INSTRUCTOR: Kathy L. Lanoy EMAIL: kllanoy@tstc.edu CELL: 956-245-0294

Texas State Technical College COURSE SYLLABUS PSYC 2301 GENERAL PSYCHOLOGY. INSTRUCTOR: Kathy L. Lanoy EMAIL: kllanoy@tstc.edu CELL: 956-245-0294 Texas State Technical College COURSE SYLLABUS PSYC 2301 GENERAL PSYCHOLOGY INSTRUCTOR: Kathy L. Lanoy EMAIL: kllanoy@tstc.edu CELL: 956-245-0294 COURSE (CATALOG) DESCRIPTION General Psychology is a survey

More information

DSM IV TR Diagnostic Codes. (In Numeric Order) DSM IV Codes: Through revisions on 10.01.1996 and 10.01.2005. Code Description Code Description

DSM IV TR Diagnostic Codes. (In Numeric Order) DSM IV Codes: Through revisions on 10.01.1996 and 10.01.2005. Code Description Code Description 290.0 Dementia of the Alzheimer's type, with late onset, uncomplicated NO DSM IV TR 290 code / See codes [294.10 294.1x] 290.10A Dementia due to Creutzfeldt Jakob disease NO DSM IV TR 290.10 code / See

More information

Glossary Of Terms Related To The Psychological Evaluation Pain

Glossary Of Terms Related To The Psychological Evaluation Pain Glossary Of Terms Related To The Psychological Evaluation Pain Excerpted From The BHI 2 Manual By Daniel Bruns and John Mark Disorbio 2003 by Pearson Assessments. All rights reserved. Addiction: A chronic

More information

PSY 212 Abnormal Psychology

PSY 212 Abnormal Psychology Technical College of the Lowcountry Arts & Sciences Division 921 Ribaut Road Building 9, Room 102 Beaufort, SC 29901 843-525-8281 PSY 212 Abnormal Psychology Course Description This course is a study of

More information

PSY 350 ABNORMAL PSYCHOLOGY SPRING 2011

PSY 350 ABNORMAL PSYCHOLOGY SPRING 2011 PSY 350 Spring 2011 Page 1 of 5 PSY 350 ABNORMAL PSYCHOLOGY SPRING 2011 Course Information Instructor Information Title: Psy 350 Name: Dr. Sawssan Ahmed Reference Number: 22542 Phone: (858) 966-7703 ext.

More information

Syllabus Psychology 100

Syllabus Psychology 100 Syllabus Psychology 100 Professor: Dr. Franklin Thompson Office: 204 South Hall Phone: 207-768-9417 e-mail: franklin.thompson@yahoo.com University of Maine at Presque Isle Psy 100 Section 3 General Psychology

More information

Loyola University Chicago Department of Psychology. PSYCH 331: ABNORMAL PSYCHOLOGY Fall 2015

Loyola University Chicago Department of Psychology. PSYCH 331: ABNORMAL PSYCHOLOGY Fall 2015 Psych 331 Fall 2015 1 Loyola University Chicago Department of Psychology PSYCH 331: ABNORMAL PSYCHOLOGY Fall 2015 Course: PSYC 331 Course Time: Tuesdays 4:15-6:45 PM Course Location: Crown Center Rm. 210

More information

TEEN MARIJUANA USE WORSENS DEPRESSION

TEEN MARIJUANA USE WORSENS DEPRESSION TEEN MARIJUANA USE WORSENS DEPRESSION An Analysis of Recent Data Shows Self-Medicating Could Actually Make Things Worse Millions of American teens* report experiencing weeks of hopelessness and loss of

More information

[KQ 804] FEBRUARY 2007 Sub. Code: 9105

[KQ 804] FEBRUARY 2007 Sub. Code: 9105 [KQ 804] FEBRUARY 2007 Sub. Code: 9105 (Revised Regulations) Theory : Two hours and forty minutes Q.P. Code: 419105 Maximum : 100 marks Theory : 80 marks M.C.Q. : Twenty minutes M.C.Q. : 20 marks 1. A

More information

Introduction to Psychology (PSY 105E O FALL 2013) Weisz

Introduction to Psychology (PSY 105E O FALL 2013) Weisz INTRODUCTION TO PSYCHOLOGY 105 PDE Specification: On Line This is a three-credit course and requires the equivalent of 42 hours of classroom learning. A traditional course is equivalent to three class

More information

Specialty Mental Health Services OUTPATIENT TABLE

Specialty Mental Health Services OUTPATIENT TABLE Specialty Mental Health Services Enclosure 3 295.10 Schizophrenia, Disorganized Type F20.1 Disorganized schizophrenia 295.20 Schizophrenia, Catatonic Type F20.2 Catatonic schizophrenia 295.30 Schizophrenia,

More information

Attachment 5 Arizona s Crosswalk for DC: 0-3R, DSM-IV-TR and ICD-10-CM 1

Attachment 5 Arizona s Crosswalk for DC: 0-3R, DSM-IV-TR and ICD-10-CM 1 Arizona Department of Health Services/Division of Behavioral Health Services Practice Tool, Working with the Birth to Five Population Attachment 5 Arizona s Crosswalk for DC: 0-3R, DSM-IV-TR and ICD-10-CM

More information

Provider Training. Behavioral Health Screening, Referral, and Coding Requirements

Provider Training. Behavioral Health Screening, Referral, and Coding Requirements Provider Training Behavioral Health Screening, Referral, and Coding Requirements Training Outline I. Behavioral Health Screening Requirements and Referrals II. Healthy Behaviors Substance and Alcohol Abuse

More information

Diagnosis Codes Requiring PASRR Level II_011.22.11.xls

Diagnosis Codes Requiring PASRR Level II_011.22.11.xls 291.0 DELIRIUM TREMENS ALCOHOL WITHDRAWAL DELIRIUM Mental Illness 291.1 ALCOHOL AMNESTIC DISORDEALCOHOL INDUCED PERSISTING AMNESTIC DISORDER Mental Illness 291.2 ALCOHOLIC DEMENTIA NEC ALCOHOL INDUCED

More information

Providence Theological Seminary CP5202 Psychopathology Online Course May 3-July 5, 2014

Providence Theological Seminary CP5202 Psychopathology Online Course May 3-July 5, 2014 CP5202 Psychopathology Page 1 Providence Theological Seminary CP5202 Psychopathology Online Course May 3-July 5, 2014 Instructor: Sharon Habermann, Ph.D., R.Psych. Email: smhabermann@gmail.com Course Syllabus

More information

ICD- 9 Source Description ICD- 10 Source Description

ICD- 9 Source Description ICD- 10 Source Description 291.0 Alcohol withdrawal delirium F10.121 Alcohol abuse with intoxication delirium 291.0 Alcohol withdrawal delirium F10.221 Alcohol dependence with intoxication delirium 291.0 Alcohol withdrawal delirium

More information

OTC Abuse. Dr. Eman Said Abd-Elkhalek Lecturer of Pharmacology & Toxicology Faculty of Pharmacy Mansoura University

OTC Abuse. Dr. Eman Said Abd-Elkhalek Lecturer of Pharmacology & Toxicology Faculty of Pharmacy Mansoura University OTC Abuse Dr. Eman Said Abd-Elkhalek Lecturer of Pharmacology & Toxicology Faculty of Pharmacy Mansoura University Opiates Abuse Opioids are a group of natural, partially synthetic, or synthetic drugs

More information

POST GRADUATE DIPLOMA IN AND PSYCHOLOGICAL COUNSELLING SYLLABUS

POST GRADUATE DIPLOMA IN AND PSYCHOLOGICAL COUNSELLING SYLLABUS POST GRADUATE DIPLOMA IN AND PSYCHOLOGICAL COUNSELLING SYLLABUS Course Code Paper I Fundamentals of Psychology MCP 11 Paper II Developmental Psychology MCP 12 Paper III Psychopathalogy and Mental Health

More information

Drugs PSYCHOSIS. Depression. Stress Medical Illness. Mania. Schizophrenia

Drugs PSYCHOSIS. Depression. Stress Medical Illness. Mania. Schizophrenia Drugs Stress Medical Illness PSYCHOSIS Depression Schizophrenia Mania Disorders In preschool children imaginary friends and belief in monsters under the bed is normal (it may be normal in older developmentally

More information

LANGARA COLLEGE Department of Psychology PSYCHOLOGY 2318 PSYCHOLOGY OF THE EXCEPTIONAL CHILD. CRN: 20115 Instructor: J.W. Barton, Ph.D.

LANGARA COLLEGE Department of Psychology PSYCHOLOGY 2318 PSYCHOLOGY OF THE EXCEPTIONAL CHILD. CRN: 20115 Instructor: J.W. Barton, Ph.D. Summer Session 2011 LANGARA COLLEGE Department of Psychology PSYCHOLOGY 2318 PSYCHOLOGY OF THE EXCEPTIONAL CHILD CRN: 20115 Instructor: J.W. Barton, Ph.D. Class Section: A01 Office: B252d Class Time: M

More information

Zachary Monaco Georgia College Olympic Coloring: Go For The Gold

Zachary Monaco Georgia College Olympic Coloring: Go For The Gold Zachary Monaco Georgia College Olympic Coloring: Go For The Gold Coloring the vertices or edges of a graph leads to a variety of interesting applications in graph theory These applications include various

More information

Transitioning to ICD-10 Behavioral Health

Transitioning to ICD-10 Behavioral Health Transitioning to ICD-10 Behavioral Health Jeri Leong, R.N., CPC, CPC-H, CPMA Healthcare Coding Consultants of Hawaii LLC 1 Course Objectives Review of new requirements to ICD-10-CM Identify the areas of

More information

hepatolenticular degeneration (E83.0) human immunodeficiency virus [HIV] disease (B20) hypercalcemia (E83.52) hypothyroidism, acquired (E00-E03.

hepatolenticular degeneration (E83.0) human immunodeficiency virus [HIV] disease (B20) hypercalcemia (E83.52) hypothyroidism, acquired (E00-E03. ICD-10-CM Codes for Mental, Behavioral and Neurodevelopmental Disorders Chapter 5 Mental, Behavioral and Neurodevelopmental disorders (F01-F99) Includes: disorders of psychological development Excludes2:

More information

Complete List of DSM-IV Codes

Complete List of DSM-IV Codes Complete List of DSM-IV Codes The following 2 tables give basic codes for all DSM-IV diagnoses. Note that the numbers are the least important part of the diagnoses: Additional verbiage, often not stated

More information

Attachment A. Code Beginning Review

Attachment A. Code Beginning Review Attachment A ICD-10-CM Mental Disorders Diagnosis Codes and s Subject to Certification of Admission/Concurrent/Continued Stay Review Based on the Admitting Diagnosis Code This list contains principal diagnosis

More information

PSYC 245: Abnormal Psychology

PSYC 245: Abnormal Psychology PSYC 245: Abnormal Psychology Course Overview This course is designed to provide an introduction to a wide variety of psychological disorders and related concepts. As you will read about in more detail

More information

DSM-5 ONLINE SCENARIO SIMULATOR UPDATED NATIONAL CLINICAL MENTAL HEALTH COUNSELING EXAMINATION ARTHUR-BRENDE STUDY SUPPLEMENT

DSM-5 ONLINE SCENARIO SIMULATOR UPDATED NATIONAL CLINICAL MENTAL HEALTH COUNSELING EXAMINATION ARTHUR-BRENDE STUDY SUPPLEMENT ARTHUR-BRENDE STUDY SUPPLEMENT NATIONAL CLINICAL MENTAL HEALTH COUNSELING EXAMINATION ONLINE SCENARIO SIMULATOR DSM-5 TM Disorders: Diagnosis To Referral DSM-5 UPDATED 1 Gary L. Arthur, Ed.D., LPC, NCC,

More information

Bergen Community College Division of Business, Math and Social Sciences Department of Social and Behavioral Science

Bergen Community College Division of Business, Math and Social Sciences Department of Social and Behavioral Science Bergen Community College Division of Business, Math and Social Sciences Department of Social and Behavioral Science Bergen Community College Division of Business, Social Sciences & Public Services Department

More information

ICD-9/DSM IV TO ICD-10 CROSSWALK TABLE

ICD-9/DSM IV TO ICD-10 CROSSWALK TABLE ICD-9/DSM IV TO ICD-10 CROSSWALK TABLE DIAGNOSIS MEETS OUTPATIENT "MEDICAL NECESSITY" CRITERIA ICD-9 DSM IV Description ICD-10 ICD-10 Description PSYCHOTIC DISORDERS 295.30 Schizophrenia, Paranoid Type

More information

DSM 5 Opioid Related Disorders. Dr. Phil O Dwyer Oakland University Brookfield Clinics

DSM 5 Opioid Related Disorders. Dr. Phil O Dwyer Oakland University Brookfield Clinics DSM 5 Opioid Related Disorders Dr. Phil O Dwyer Oakland University Brookfield Clinics Cead Mile Failte Opioids A classification of drugs derived from the opium plant. Common opioids: Morphine Heroin Codeine

More information

Care Management Scale--Youth Rev. 10/26/07

Care Management Scale--Youth Rev. 10/26/07 Care Management Scale--Youth Rev. 10/26/07 Client Name: ID: Date: _ Person Completing: Chronicity: Client has a qualifying diagnosis (see attached list) Mental Health condition was first documented to

More information

PhD. IN (Psychological and Educational Counseling)

PhD. IN (Psychological and Educational Counseling) PhD. IN (Psychological and Educational Counseling) I. GENERAL RULES CONDITIONS: Plan Number 2012 1. This plan conforms to the regulations of the general frame of the programs of graduate studies. 2. Areas

More information

Bipolar Disorder. When people with bipolar disorder feel very happy and "up," they are also much more active than usual. This is called mania.

Bipolar Disorder. When people with bipolar disorder feel very happy and up, they are also much more active than usual. This is called mania. Bipolar Disorder Introduction Bipolar disorder is a serious mental disorder. People who have bipolar disorder feel very happy and energized some days, and very sad and depressed on other days. Abnormal

More information

Approvable Antipsychotic ICD-9 Diagnoses

Approvable Antipsychotic ICD-9 Diagnoses Page 6 Atypical Antipsychotics Approvable Antipsychotic ICD-9 Diagnoses Approvable ICD-9 Approvable Diagnosis Description Schizophrenic disorders 295.00 Simple Type Schizophrenia, Unspecified State 295.01

More information

PSY 2200: ABNORMAL PSYCHOLOGY Place & Time: BO 1059; TR 2-3:15pm Fall 2014

PSY 2200: ABNORMAL PSYCHOLOGY Place & Time: BO 1059; TR 2-3:15pm Fall 2014 PSY 2200: ABNORMAL PSYCHOLOGY Place & Time: BO 1059; TR 2-3:15pm Fall 2014 Instructor: Joni L. Mihura, PhD Teaching Assistant: Dan Charek, MA Office: UH 1067 Office: UH 1069 Office Hrs: Tu 3:15-6:00; W

More information

THE UNIVERSITY OF TEXAS AT AUSTIN SCHOOL OF SOCIAL WORK

THE UNIVERSITY OF TEXAS AT AUSTIN SCHOOL OF SOCIAL WORK THE UNIVERSITY OF TEXAS AT AUSTIN SCHOOL OF SOCIAL WORK Course Number: SW 393R1 Instructor s name: Cynthia Franklin, Ph.D e-mail: Unique Number: 61040 Office Number: SSW 3.106 cfranklin@mail.utexas.edu

More information

PSYCH 460 CLINICAL CHILD PSYCHOLOGY SPRING 2013

PSYCH 460 CLINICAL CHILD PSYCHOLOGY SPRING 2013 PSYCH 460 CLINICAL CHILD PSYCHOLOGY SPRING 2013 Professor: Deirdre Radosevich, Ph.D. Class Time: Mon & Wed 8:00am-9:20am Class Location: MAC 109 Office Location: MAC C314 In-Person Office Hours: Mon &

More information

Psychology Courses-1

Psychology Courses-1 Psychology Courses-1 PSY 096/Orientation to Psychology 0 course units phis advising seminar is required for all freshman and external transfer students enrolled as Psychology majors (all double majors

More information

Social Media Mining. Network Measures

Social Media Mining. Network Measures Klout Measures and Metrics 22 Why Do We Need Measures? Who are the central figures (influential individuals) in the network? What interaction patterns are common in friends? Who are the like-minded users

More information

Psychology Courses-1

Psychology Courses-1 Psychology Courses-1 Psychology: Course Descriptions PSY 096/Orientation to Psychology PSY 097/Exploring the Psychology Major PSY 098/Exploring the Psychology Profession PSY 099/Psychology Professional

More information

ADDICTION & MENTAL HEALTH YEAR END SERVICE SUMMARY

ADDICTION & MENTAL HEALTH YEAR END SERVICE SUMMARY ADDICTION & MENTAL HEALTH YEAR END SERVICE SUMMARY April 1, 2008 March 31, 2009 Prepared by: Information Management, Evaluation and Research,, ADDICTION & MENTAL HEALTH - YEAR END SERVICE SUMMARY FY2008-09

More information

AP Psychology 2008-2009 Academic Year

AP Psychology 2008-2009 Academic Year AP Psychology 2008-2009 Academic Year Course Description: The College Board Advanced Placement Program describes Advanced Placement Psychology as a course that is designed to introduce students to the

More information

Course Syllabus: PSYCHOLOGY 3500 -- Abnormal Psychology (Fall, 2011)

Course Syllabus: PSYCHOLOGY 3500 -- Abnormal Psychology (Fall, 2011) Course Syllabus: PSYCHOLOGY 3500 -- Abnormal Psychology (Fall, 2011) Instructor: Class Time: Dr. Jennifer Mather Office - C888 Phone - 403-329-2423 E-Mail - mather@uleth.ca; (Turnaround time about 24 hours)

More information

Social Media Mining. Graph Essentials

Social Media Mining. Graph Essentials Graph Essentials Graph Basics Measures Graph and Essentials Metrics 2 2 Nodes and Edges A network is a graph nodes, actors, or vertices (plural of vertex) Connections, edges or ties Edge Node Measures

More information

Improving Inpatient Psychiatric Payment Methods

Improving Inpatient Psychiatric Payment Methods Improving Inpatient Psychiatric Payment Methods Donald M. Steinwachs, Ph.D Professor and Director Health Services Research and Development Center Bloomberg School of Public Health Funded by NIMH Grant

More information

Feeling Moody? Major Depressive. Disorder. Is it just a bad mood or is it a disorder? Mood Disorders. www.seclairer.com S Eclairer 724-468-3999

Feeling Moody? Major Depressive. Disorder. Is it just a bad mood or is it a disorder? Mood Disorders. www.seclairer.com S Eclairer 724-468-3999 Feeling Moody? Is it just a bad mood or is it a disorder? Major Depressive Disorder Prevalence: 7%; 18-29 years old; Female>Male DDx: Manic episodes with irritable mood or mixed episodes, mood disorder

More information

Psychology: Course Descriptions

Psychology: Course Descriptions Psychology Courses-1 Psychology: Course Descriptions PSY 096/Orientation to Psychology PSY 097/Exploring the Psychology Major PSY 098/Exploring the Psychology Profession PSY 099/Psychology Professional

More information

Dual diagnosis: working together

Dual diagnosis: working together Dual diagnosis: working together Tom Carnwath RCGP conference Birmingham 2007 DSM-IV & cocaine Cocaine intoxication Cocaine withdrawal Cocaine-induced sleep disorder Cocaine-induced sexual dysfunction

More information

Expository Counseling Center Basic Training Course

Expository Counseling Center Basic Training Course Expository Counseling Center Basic Training Course The Big Picture of Training A. Students will attend 56 weeks of training that will cover over 160 hours of biblical counseling training B. Students will

More information

Bipolar disorders: Changes from DSM IV TR to DSM 5

Bipolar disorders: Changes from DSM IV TR to DSM 5 Bipolar disorders: Changes from DSM IV TR to DSM 5 M. Amin Esmaeili, MD, MPH Iranian Research Center for HIV/AIDS (IRCHA) Iranian National Center for Addiction Studies (INCAS) Mood disorders committee

More information

Complex Network Analysis of Brain Connectivity: An Introduction LABREPORT 5

Complex Network Analysis of Brain Connectivity: An Introduction LABREPORT 5 Complex Network Analysis of Brain Connectivity: An Introduction LABREPORT 5 Fernando Ferreira-Santos 2012 Title: Complex Network Analysis of Brain Connectivity: An Introduction Technical Report Authors:

More information

M.A. DEGREE EXAMINATION, DECEMBER 2009. First Year. Psychology. Answer any FIVE of the following questions. Each question carries 15 marks.

M.A. DEGREE EXAMINATION, DECEMBER 2009. First Year. Psychology. Answer any FIVE of the following questions. Each question carries 15 marks. (DPSY 01) First Year Paper I GENERAL PSYCHOLOGY 1. Explain the definition and scope of psychology. 2. Explain the patterns of brain and behavior in human psychology? 3. Write about perceptual constancy

More information

Optum By United Behavioral Health. 2015 Florida Medicaid Managed Medical Assistance (MMA) Level of Care Guidelines

Optum By United Behavioral Health. 2015 Florida Medicaid Managed Medical Assistance (MMA) Level of Care Guidelines Optum By United Behavioral Health 2015 Florida Medicaid Managed Medical Assistance (MMA) Level of Care Guidelines Therapeutic group care services are community-based, psychiatric residential treatment

More information

PSY 3250: Abnormal Child Psychology Spring 2010 Tuesday 6:00 to 9:00 pm, BEHS 115

PSY 3250: Abnormal Child Psychology Spring 2010 Tuesday 6:00 to 9:00 pm, BEHS 115 Psych. 3250, Spring 2010, p. 1 PSY 3250: Abnormal Child Psychology Spring 2010 Tuesday 6:00 to 9:00 pm, BEHS 115 Instructor: Sheryl R. Schindler Office: Department of Psychology, University of Utah, BEHS

More information

Welcome New Employees. Clinical Aspects of Mental Health, Developmental Disabilities, Addictive Diseases & Co-Occurring Disorders

Welcome New Employees. Clinical Aspects of Mental Health, Developmental Disabilities, Addictive Diseases & Co-Occurring Disorders Welcome New Employees Clinical Aspects of Mental Health, Developmental Disabilities, Addictive Diseases & Co-Occurring Disorders After this presentation, you will be able to: Understand the term Serious

More information

Effective Care Management for Behavioral Health Integration

Effective Care Management for Behavioral Health Integration Effective Care Management for Behavioral Health Integration Title: Effective Care Management for Behavioral Health Integration A process improvement initiative focused on improving mental health outcomes

More information

ABNORMAL PSYCHOLOGY V89.0051 - Fall, 2009 Mon. & Wed., 11:00 12:15 Cantor, 101

ABNORMAL PSYCHOLOGY V89.0051 - Fall, 2009 Mon. & Wed., 11:00 12:15 Cantor, 101 DEPARTMENT OF PSYCHOLOGY ABNORMAL PSYCHOLOGY V89.0051 - Fall, 2009 Mon. & Wed., 11:00 12:15 Cantor, 101 NEW YORK UNIVERSITY 1 Course Instructor Professor David L. Wolitzky TA: Sophia Nargonaya 212 998-7905

More information

IMPORTANT! READ CAREFULLY TO ENSURE THAT YOUR CLAIMS MEET THE NEW DIAGNOSIS CODING REQUIREMENTS

IMPORTANT! READ CAREFULLY TO ENSURE THAT YOUR CLAIMS MEET THE NEW DIAGNOSIS CODING REQUIREMENTS Invalid Hospice Diagnosis Codes, Effective October 1, 2014 To: NHPCO Members From: NHPCO Regulatory Team Date: October 2, 2014 IMPORTANT! READ CAREFULLY TO ENSURE THAT YOUR CLAIMS MEET THE NEW DIAGNOSIS

More information

Unit 4: Personality, Psychological Disorders, and Treatment

Unit 4: Personality, Psychological Disorders, and Treatment Unit 4: Personality, Psychological Disorders, and Treatment Learning Objective 1 (pp. 131-132): Personality, The Trait Approach 1. How do psychologists generally view personality? 2. What is the focus

More information

AP Psychology Bishop England High School Course Syllabus: 2015-2016 Teacher: Mrs. Martini

AP Psychology Bishop England High School Course Syllabus: 2015-2016 Teacher: Mrs. Martini AP Psychology Bishop England High School Course Syllabus: 2015-2016 Teacher: Mrs. Martini E- mail: amartini@behs.com Room: 252 A Course Description: Voicemail: 843-849- 9599 AP Psychology is a one- year

More information

IL DHS/DMH DSM 5 Diagnoses Effective 10-1-2015 Target Population: Serious Mental Illness (SMI) for DHS/DMH funded MH services

IL DHS/DMH DSM 5 Diagnoses Effective 10-1-2015 Target Population: Serious Mental Illness (SMI) for DHS/DMH funded MH services IL DHS/DMH DSM 5 Diagnoses Effective 10-1-2015 Target Population: Serious Mental Illness (SMI) for DHS/DMH funded MH services ICD-10 DSM-V Description F22 Delusional Disorder F23 Brief Psychotic Disorder

More information

Documentation Guidelines for ADD/ADHD

Documentation Guidelines for ADD/ADHD Documentation Guidelines for ADD/ADHD Hope College Academic Success Center This document was developed following the best practice recommendations for disability documentation as outlined by the Association

More information