Changes between Version 8 and Version 9 of jazz/19-08-29


Ignore:
Timestamp:
Aug 29, 2019, 10:38:31 PM (5 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/19-08-29

    v8 v9  
    55{{{
    66#!graphviz
    7 digraph "VI" { rankdir=TD; node [shape=record];
     7digraph "VI" {
     8  rankdir=TD;
     9  node [shape=record];
     10  subgraph inpatient {
     11    label = "Inpatinet";
    812    "Hospital" -> "ED";
    913    "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  }
    1026}
    1127}}}