Changes between Version 8 and Version 9 of jazz/19-08-29
- Timestamp:
- Aug 29, 2019, 10:38:31 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
jazz/19-08-29
v8 v9 5 5 {{{ 6 6 #!graphviz 7 digraph "VI" { rankdir=TD; node [shape=record]; 7 digraph "VI" { 8 rankdir=TD; 9 node [shape=record]; 10 subgraph inpatient { 11 label = "Inpatinet"; 8 12 "Hospital" -> "ED"; 9 13 "ED" -> "Hospitalist"; 14 "Hospitalist" -> "Specialist"; 15 "Specialist" -> "Nurses"; 16 "Nurses" -> "Patient"; 17 } 18 subgraph outpatient { 19 label = "Outpatinet"; 20 "Nurse Practitioner" -> "Primary Care"; 21 "Primary Care" -> "Cardiologist"; 22 "Cardiologist" -> "Interventionalist"; 23 "Interventionalist" -> "Cardiac Surgeon"; 24 "Cardiac Surgeon" -> "Patient"; 25 } 10 26 } 11 27 }}}