title | permalink |
---|---|
People |
/people/ |
{% assign people_sorted = site.people | sort: 'joined' %}
{% assign role_array = "pi|faculty|researchstaff|gradstudent|former|others|alumni" | split: "|" %}
{% for role in role_array %}
{% assign people_in_role = people_sorted | where: 'position', role %}
{% if people_in_role.size == 0 %} {% continue %} {% endif %}
{% if role == 'faculty' %}
{% elsif role == 'pi' %}
{% elsif role == 'gradstudent' %}
{% elsif role == 'researchstaff' %}
{% elsif role == 'former' %}
{% elsif role == 'others' %}
{% endif %}
{% if role != 'alumni' %}
{% for profile in people_sorted %}
{% if profile.position contains role %}
{% endif %}
{% endfor %}
{% if profile.avatar %} {% else %} {% endif %} {{ profile.name }}
{% else %}
Who are they | When were they here | Where they went |
---|---|---|
Tony Liu | Graduate Student (2018-2024) | Assistant Professor of Computer Science, Mount Holyoke College |
Xinyue Wang | Graduate Student (2021-2023) | PhD Student, Halıcıoğlu Data Science Institute, UCSD |
Justin Brantley | Post-doc (2021-2023) | Data Scientist, Texas Rangers, yes they did win the super something twice in a row after he joined them |
Laboratory | ||
Titipat Achakulvisut | Graduate Student (2014 - 2021) | Biomedical and Data Lab, Dept of Biomedical Engineering, Mahidol University, Thailand |
Pedro Ribeiro | Graduate Student (2018 - 2021) | Programmer Analyst at Cedars-Sinai Department of Computational Biomedicine |
{% endif %} | ||
{% endfor %} |