### [Data Science Center Organization Chart](https://www.library.ucla.edu/visit/locations/data-science-center/) ```graphviz // Inspired by // https://stackoverflow.com/a/7374543/180275 digraph ORG { ranksep=0.2; node[shape=box width=2.3 height=0.6 fontname="Arial"]; CEO [ label = "Todd Grappone, AUL for Digital Initiatives and IT" ] CFO [ label = "Tim Dennis, Director, Data Science Center " ] staff_1 [ label = "Jamie Jamison, Data Collection Manager "] staff_2 [ label = "Leigh Phan, Data Scientist"] staff_3 [ label = "Doug Daniels, Emerging Tech Libraraian"] staff_4 [ label = "Zhiyuan Yao, Spatial Data Science Librarian"] staff_5 [ label = "Kristian Allen, Software Developer"] node[shape=none, width=0, height=0, label=""]; edge[dir=none]; CEO -> hierarchy_1 -> hierarchy_2 -> hierarchy_3; {rank=same; CFO -> hierarchy_1;} {rank=same; staff_1 -> staff_2 -> hierarchy_4 -> staff_3 -> staff_4 } {rank=same; CFO -> staff_5 [style="dotted"];} hierarchy_3 -> hierarchy_4 }