├── .github └── ISSUE_TEMPLATE │ ├── --add-new-industry-group--.md │ ├── --add-new-program--.md │ ├── --hiring-css-researchers--.md │ ├── -add-new-researcher-.md │ └── -hiring-css-students-.md ├── LICENSE ├── README.md ├── README_ch.md ├── industry_en.md ├── programs_en.md └── researcher_en.md /.github/ISSUE_TEMPLATE/--add-new-industry-group--.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: " 【Add New Industry Group】 " 3 | about: " Add a missing industry group" 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | Name of the Group: 11 | 12 | Link to the Official Website: 13 | 14 | Comment (optional): 15 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--add-new-program--.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: " 【Add New Program】 " 3 | about: " Add a missing program" 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | Name of the Program: 11 | 12 | 13 | Link to the Official Website: 14 | 15 | Comment (optional) 16 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--hiring-css-researchers--.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: " 【Hiring CSS Researchers】 " 3 | about: " If you're looking for researchers who is interested in CSS, you can promote 4 | your opportunity here. Please close the issue when your opening is closed" 5 | title: '' 6 | labels: '' 7 | assignees: '' 8 | 9 | --- 10 | 11 | 12 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/-add-new-researcher-.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "【Add New Researcher】" 3 | about: Add a missing researcher (or give existing researcher a new category) 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | Name of the Researcher 11 | 12 | 13 | Link to the Official Website 14 | 15 | 16 | Comment (change to make, or what new tag to add) 17 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/-hiring-css-students-.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "【Hiring CSS Students】" 3 | about: If you're looking for students who is interested in CSS, you can promote your 4 | opportunity. Please close the issue when your openning is closed 5 | title: '' 6 | labels: '' 7 | assignees: '' 8 | 9 | --- 10 | 11 | 12 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Hongbo Fang 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Programs, Researchers, Groups on Computational Social Science 2 | 3 | This project keeps a record of master/phd programs , as well as researchers and industry groups working in computational social science. The aim of the project is to help students/researchers interested in computational social science with graduate application and job search. ([Chinese version/中文版](https://github.com/fhbzc/program-computational-social-science/blob/main/README_ch.md)) 4 | 5 | [Master/PhD Programs (Grouped based on Country/Region)](https://github.com/fhbzc/program-computational-social-science/blob/main/programs_en.md) 6 | 7 | [Researchers (Grouped based on topics)](https://github.com/fhbzc/program-computational-social-science/blob/main/researcher_en.md) 8 | 9 | [Industry Groups (Grouped based on Country/Region)](https://github.com/fhbzc/program-computational-social-science/blob/main/industry_en.md) 10 | 11 | ## Disclaimer! 12 | 13 | The programs/researchers/groups listed in this document in the field of computational social science are for reference only, with the purpose of facilitating information flow and sharing. The inclusion of these researchers/program does not imply our endorsement of their institutions, projects, or research directions. We encourage readers to further explore and evaluate these researchers and their institutions based on their own needs. 14 | 15 | ## What is Computational Social Science? 16 | Formally, the idea of compuatational social science research is initiated in a [Science paper](https://www.science.org/doi/full/10.1126/science.1167742?casa_token=_cfPz3X3Rm4AAAAA%3AVTQelmhEE36GXIJ5nsbpuDQcM_A31Axi8u655kvGG0nGxWIDntiR6YDbKaFdzrMW20OFIdhzmfaiog) published in 2009. It is an rising interdisciplinary academic sub-field concerned with computational approaches to the social sciences, and is attracting more and more researchers into the field. 17 | 18 | ## Why we create this document? 19 | As a relatively new and interdisciplinary field, computational social science attracts researchers from diverse domains and institutions. However, formal academic structures, such as dedicated departments of computational social science, are rare, making it challenging to identify relevant researchers and programs. To cope with the problem, we have created this document to facilitate information sharing within the field, helping interested students and researchers find suitable programs, collaborators, and advisors. 20 | 21 | Given the large number of researchers/programs in the domain, it is practically impossible for us to include everyone in the field, and it is not the goal as well. We hope this document can be a go-to place when looking for resources in the domain, though not exhaustive. 22 | 23 | ## How should I use this project? 24 | You can use the following documents to find programs/groups/researchers related to computational social science. 25 | 26 | **Master/PhD Programs** contains a list of master and phd programs in computational social science. It is organized based on country/regions, so that you can look for programs in your desired country/region. 27 | 28 | **Researchers** contains a list of researchers working on computational social science. It is organized based on research topics, so that you can look for researchers in the topic you are interested in. 29 | 30 | **Industry Groups** contains a list of industry groups working on computational social science, organized by country/regions. It is helpful for internship search, and for researchers looking for industry position. 31 | 32 | ## How to contribute to the project? 33 | We welcome all contributions to the project, please submit pull requests or issues to add information you know, and to provide feedback. 34 | 35 | Particularly, if you want to add new information about program/researcher/group via issues, please add the name and a link to personal/official website so that we can verify the information. 36 | 37 | Here is a simple template you are encouraged to use when adding new information: 38 | 39 | - Name (of the researcher/group/program) 40 | - Link (link to official or personal website) 41 | - Comments (For example, reasons to add, this item is optional) 42 | 43 | If you want to add new information via pull requests, please edit the content in the files we created (i.e. Master/PhD Programs; Researchers; Industry Groups), and follow the format used in the existing document. 44 | 45 | There is no strict rule about who counts as computational social sciensts. Generally speaking, researchers with a quantative and computational mindset and works on social problems should qualify to be added. We will provide feedback if your suggestion is not added. 46 | 47 | We thank everyone who contributes to the project. 48 | 49 | ## Acknowledgement 50 | This is a grassroots project initiated by PhD students in computational social science, and it won't be what it is without the contributions from the broad open-source community. Please refer to the [contributors](https://github.com/fhbzc/computational-social-science-program-group-people/graphs/contributors) to view the full list of contributors. 51 | 52 | Particularly, we want to recognize people who are not in the above list, but also made contributions to the projects in many ways: [Liangshu Dai](http://sociology.zju.edu.cn/index.php/Teacher/details.html?id=95&tid=19&sid=3), [Ziwen Chen](https://www.gsb.stanford.edu/programs/phd/academic-experience/students/ziwen-chen), [Swarma Club](https://swarma.org/). 53 | 54 | ## Contact 55 | Please reach out to *Hongbo Fang* via fanghongdoublebo@gmail.com 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /README_ch.md: -------------------------------------------------------------------------------- 1 | # 计算社会科学领域的学术项目,研究人员和工业界研究组 2 | 3 | 该项目记录了全球范围内的计算社会科学相关的硕士/博士项目,以及在此领域工作的研究人员和行业组织。项目旨在帮助对计算社会科学感兴趣的学生和研究人员,在申请研究生或寻找工作时提供参考。([英文版](https://github.com/fhbzc/computational-social-science-program-group-people/blob/main/README.md)) 4 | 5 | [硕士/博士项目 (按国家/地区分组)](https://github.com/fhbzc/program-computational-social-science/blob/main/programs_en.md) 6 | 7 | [研究人员 (按研究主题分组)](https://github.com/fhbzc/program-computational-social-science/blob/main/researcher_en.md) 8 | 9 | [业界研究组 (按国家/地区分组)](https://github.com/fhbzc/program-computational-social-science/blob/main/industry_en.md) 10 | 11 | ## 免责声明! 12 | 13 | 本文件中列出的计算社会科学领域的研究人员/项目/科研组仅供参考,旨在促进信息的流通和共享。列出这些研究人员/ 项目并不代表我们对他们所在的机构、项目或研究方向的认可或背书。请读者根据自身需求进一步了解和评估这些研究人员及其所在机构。 14 | 15 | ## 什么是计算社会科学? 16 | 计算社会科学这一研究理念正式起源于2009年发表的一篇[《科学》期刊论文](https://www.science.org/doi/full/10.1126/science.1167742?casa_token=_cfPz3X3Rm4AAAAA%3AVTQelmhEE36GXIJ5nsbpuDQcM_A31Axi8u655kvGG0nGxWIDntiR6YDbKaFdzrMW20OFIdhzmfaiog)。作为一个新兴的跨学科领域,它关注社会科学中的计算方法,吸引了越来越多的研究者。 17 | 18 | ## 我们为什么创建这个文档? 19 | 作为一个相对较新的跨学科领域,计算社会科学吸引了来自不同领域和机构的研究人员。然而,专门的计算社会科学学术机构或部门较少,这使得找到相关的研究人员和项目变得有些困难。为了应对这一问题,我们创建了这个文档,旨在促进领域内的信息共享,帮助感兴趣的学生和研究人员找到合适的项目、合作伙伴和导师。 20 | 21 | 鉴于该领域的研究人员和项目数量众多,我们不可能列出所有参与研究的学者和项目。尽管如此,我们希望这个项目能够帮助计算社会科学的学生和从业者们更快地查找相关项目和学者。 22 | 23 | ## 我该如何使用这个项目? 24 | 您可以利用以下文档来查找与计算社会科学相关的项目、组织和研究人员。 25 | 26 | **硕士/博士项目** 列出与计算社会科学相关的硕士和博士项目,按国家/地区进行分类,便于在您感兴趣的国家/地区查找项目。 27 | 28 | **研究人员** 按照研究主题列出了从事计算社会科学的研究人员,便于您根据兴趣找到相关的研究人员。 29 | 30 | **行业组织** 列出了从事计算社会科学的行业组织,按国家/地区分类。这对寻找实习机会或研究人员寻找行业职位非常有帮助。 31 | 32 | ## 如何为项目做贡献? 33 | 我们欢迎大家为项目做出贡献,您可以通过提交pull request或issue来添加您所知的信息,或提供反馈。 34 | 35 | 如果您希望通过issue添加新信息,请提供研究人员/组织/项目的名称及其官方网站或个人网站链接,以便我们核实信息。 36 | 37 | 您可以使用以下简单的模板来添加新信息: 38 | 39 | - 名称(研究人员/组织/项目的名称) 40 | - 链接(指向官方网站或个人网站的链接) 41 | - 备注(例如,添加的原因,此项为可选) 42 | 43 | 如果您想通过pull request添加新信息,请编辑我们创建的文件(例如:硕士/博士项目、研究人员、行业组织),并遵循现有文档中使用的格式。 44 | 45 | 对于计算社会科学研究人员的定义并没有严格规定。一般来说,具有定量和计算思维并且从事社会问题研究的人员可以被列入。如果您的建议未被采纳,我们将提供反馈。 46 | 47 | 感谢所有为项目做出贡献的人。 48 | 49 | ## 致谢 50 | 这是由计算社会科学博士生发起的草根项目,没有来自开源社区的广泛贡献,它无法发展到今天。请参阅["贡献者"](https://github.com/fhbzc/computational-social-science-program-group-people/graphs/contributors)以查看完整的贡献者名单。 51 | 52 | 除此以外,我们还要感谢以下不在贡献者名单上,但仍然为这个项目作出巨大贡献的朋友们:[Liangshu Dai](http://sociology.zju.edu.cn/index.php/Teacher/details.html?id=95&tid=19&sid=3), [Ziwen Chen](https://www.gsb.stanford.edu/programs/phd/academic-experience/students/ziwen-chen), [Swarma Club](https://swarma.org/) 53 | 54 | ## 联系方式 55 | 请通过邮箱 *fanghongdoublebo@gmail.com* 联系 *Hongbo Fang* 56 | -------------------------------------------------------------------------------- /industry_en.md: -------------------------------------------------------------------------------- 1 | 2 | # United States of America 3 | 4 | **[Computational Social Science Group, Microsoft Research, New York](https://www.microsoft.com/en-us/research/theme/computational-social-science/)** 5 | 6 | **[Social Media Collective Group, Microsoft Research, New England](https://socialmediacollective.org/about/)** 7 | 8 | 9 | 10 | # Mainland China 11 | 12 | **[Social Computing Group, Microsoft Research Asia](https://www.microsoft.com/en-us/research/group/social-computing-beijing/)** 13 | -------------------------------------------------------------------------------- /programs_en.md: -------------------------------------------------------------------------------- 1 | # Master programs 2 | 3 | ## China, Mainland 4 | 5 | **[Nanjing University, Computational Communication Collaboratory](https://socrateslab.github.io/en/)** 6 | 7 | **[The Chinese University of Hong Kong, Shenzhen, MSc in Computational Social Science](https://hsspg.cuhk.edu.cn/en/msccss)** 8 | 9 | **[Xi'an Jiaotong University, School of Journalism and New Media 智能传播系](https://xmtxy.xjtu.edu.cn/info/1008/6235.htm)** 10 | 11 | ## Hong Kong, China 12 | 13 | **[The Chinese University of Hong Kong, MPhil in Sociology](https://www.soc.cuhk.edu.hk/postgraduate/mphil-phd-programme/introduction/)** 14 | 15 | **[The University of Hong Kong, Master of Social Sciences in the field of Social Data Analytics](https://admissions.hku.hk/tpg/programme/master-social-sciences-field-social-data-analytics)** 16 | 17 | ## United States of America 18 | 19 | **[Massachusetts Institute of Technology, Master in Media Arts & Sciences](https://www.media.mit.edu/graduate-program/about-media-arts-sciences/)** 20 | 21 | **[George Mason University, Master in Interdisciplinary Studies, Computational Social Science](https://integrative.gmu.edu/programs/la-mais-isin-css)** 22 | 23 | **[Stanford University, Master in Symbolic Systems](https://symsys.stanford.edu/graduates/masters-program)** 24 | 25 | **[University of California, Berkeley, Master of Computational Social Science](https://macss.berkeley.edu/)** 26 | 27 | **[University of California San Diego, Master in Computational Social Science](https://css.ucsd.edu/masters/index.html)** 28 | 29 | **[University of Chicago, Master in Computational Social Science](https://macss.uchicago.edu/)** 30 | 31 | # PhD programs (Examples of reseachers in the program/institution listed) 32 | 33 | ## Canada 34 | 35 | **[University of Toronto, Phd in Computer Science](https://web.cs.toronto.edu/graduate/phd)** ([Ashton Anderson](https://www.cs.toronto.edu/~ashton/)) 36 | 37 | **[University of British Columbia, Phd in Sociology](https://sociology.ubc.ca/graduate/phd-program/)** ([Clayton Childress](https://claytonchildress.weebly.com), [Laura Nelson](https://www.lauraknelson.com/)) 38 | 39 | ## China, Mainland 40 | 41 | **[Beijing Normal University, PhD in System Science](https://sss.bnu.edu.cn/rcpy/xsbs/zsjz2/index.htm)** ([Jiang Zhang/张江](https://jake.swarma.org/index.html), [An Zeng/曾安](https://sss.bnu.edu.cn/szdw/zzjs/js/8b4c96518e694080a5319f428abe045f.htm)) 42 | 43 | **[Nanjing University, Computational Communication Collaboratory](https://socrateslab.github.io/en/)** 44 | 45 | **[Nanjing University, PhD in Information Management](https://im.nju.edu.cn/13281/list.htm)** ([Jiang Li/李江](https://im.nju.edu.cn/lj/list.htm)) 46 | 47 | **[Nanjing University, PhD in Social and Behavioral Sciences](https://sociology.nju.edu.cn/rcpy/listm.htm)** ([Yunsong Chen/陈云松](https://sociology.nju.edu.cn/99/38/c17737a301368/pagem.htm)) 48 | 49 | **[Peking University, PhD in Information Management](http://www.im.pku.edu.cn/zsxm/bsxm/index.htm)** ([Yi Bu/步一](https://buyi08.wixsite.com/yi-bu)) 50 | 51 | **[Shanghai Jiao Tong University, PhD in International and Public Affairs](https://www.sipa.sjtu.edu.cn/list/kcjx1)** ([Dongbo Shi/史冬波](https://www.shidongbo.com/%E4%B8%AD%E6%96%87)) 52 | 53 | **[Sun Yat-sen University, PhD in Sociology&Anthropology](https://ssa.sysu.edu.cn/taxonomy/term/156)** ([Yucheng Liang/梁玉成](https://ssa.sysu.edu.cn/teacher/2468)) 54 | 55 | **[Tsinghua University, PhD in Computer Science and Technology](https://www.cs.tsinghua.edu.cn/jwjx/yjs.htm)** ([Jie Tang/唐杰](https://keg.cs.tsinghua.edu.cn/jietang/), [Zhiyuan Liu/刘知远](https://nlp.csai.tsinghua.edu.cn/~lzy/index_cn.html)) 56 | 57 | **[Tsinghua University, PhD in Electrial Engineering](https://www.eea.tsinghua.edu.cn/rcpy/yjspy.htm)** ([Fengli Xu/徐丰力](https://fenglixu.github.io/)) 58 | 59 | **[Tsinghua University, PhD in Political Science](https://www.sss.tsinghua.edu.cn/info/1023/2087.htm)** ([Tianguang Meng/孟天广](https://www.dps.tsinghua.edu.cn/info/1179/2841.htm)) 60 | 61 | **[Tsinghua University, PhD in Sociology](https://www.sss.tsinghua.edu.cn/zsxx/bsszs1.htm)** ([Jiade Luo/罗家德](https://www.sss.tsinghua.edu.cn/info/1043/3910.htm)) 62 | 63 | **[Wuhan University, PhD in Sociology](https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://shxx.whu.edu.cn/&ved=2ahUKEwjetJ2qiYyJAxVPg4kEHVvgEYsQFnoECB0QAQ&usg=AOvVaw2xL-tcP3MfLo_HxAwCrCjr)** ([Weigang Gong/龚为纲](http://bdi.whu.edu.cn/teacherinfo.aspx?id=433)) 64 | 65 | **[Xi'an Jiaotong University, School of Journalism and New Media 智能传播系](https://xmtxy.xjtu.edu.cn/info/1008/6235.htm)** 66 | 67 | **[Zhejiang University, PhD in Computer Science and Technology](http://www.cs.zju.edu.cn/csen/26989/list.htm)** ([Yang Yang/杨洋](http://yangy.org/)) 68 | 69 | **[Zhejiang University, PhD in Media and International Culture](http://www.cmic.zju.edu.cn/35565/list.htm)** ([Zike Zhang/张子柯](https://person.zju.edu.cn/zkz#)) 70 | 71 | **[Zhejiang University, PhD in Public Affairs](http://www.spa.zju.edu.cn/spachinese/13235/list.htm)** ([Xiaoguang Fan/范晓光](https://person.zju.edu.cn/en/steve)) 72 | 73 | **[Zhejiang University, PhD in Sociology](http://sociology.zju.edu.cn/index.php/Research/index.html?tid=31&pid=64&sid=5)** ([Lianghao Dai/戴良灏](http://sociology.zju.edu.cn/index.php/Teacher/details.html?id=95&tid=19&sid=3), [Linzhuo Li/李林倬](http://sociology.zju.edu.cn/index.php/Teacher/details.html?id=147&tid=19&sid=3), [Bolun Zhang/张博伦](http://sociology.zju.edu.cn/index.php/Teacher/details.html?id=196&tid=19&sid=3), [Xiaoming Zhang/张晓鸣](http://sociology.zju.edu.cn/index.php/Teacher/details.html?id=177&tid=19&sid=3)) 74 | 75 | ## European Continent 76 | 77 | **[Institut Europeen d'Administration des Affaires, PhD in Management](https://www.insead.edu/phd/admissions-and-financing)** ([Frédéric Godart](https://www.insead.edu/faculty-personal-site/frederic-godart)) 78 | 79 | **[Max Planck Institute, PhD in Computer and Information Science](https://www.cis.mpg.de/csmaxplanck-overview/)** ([Iyad Rahwan](https://www.rahwan.me/)) 80 | 81 | **[Saarland University, PhD in Computer Science](https://www.graduateschool-computerscience.de/admissions/)** ([Ingmar Weber](https://ingmarweber.de/)) 82 | 83 | **[University of Zurich, PhD in Communication and Media Research](https://www.ikmz.uzh.ch/en/studies/doctorate.html)** ([Jing Zeng](https://www.ikmz.uzh.ch/en/research/divisions/computational-social-and-communication-science/team/jing-zeng.html)) 84 | 85 | ## Hong Kong, China 86 | 87 | **[Chinese University of Hong Kong, PhD in Communications](https://rpg.com.cuhk.edu.hk/ph-d-in-communication/)** ([King-wa Fu](https://sites.google.com/site/fukingwa/), [Hai Liang](https://drhailiang.com/), [Tian Yang](https://www.com.cuhk.edu.hk/people/yang-tian/)) 88 | 89 | **[Chinese University of Hong Kong, PhD in Sociology](https://www.soc.cuhk.edu.hk/postgraduate/mphil-phd-programme/introduction/)** ([Siqi Han](https://sqhsoc.github.io/), [Jaemin Lee](https://www.soc.cuhk.edu.hk/profile/lee-jaemin/), [Ling Zhu](https://www.soc.cuhk.edu.hk/profile/zhu-ling/)) 90 | 91 | **[Hong Kong Baptist University, PhD in Communication](https://coms.hkbu.edu.hk/postgraduate-education/research-postgraduate-rpg-programme-students.html)** ([Anfan Chen](https://coms.hkbu.edu.hk/faculty-and-staff/anfan-chen.html)) 92 | 93 | **[University of Hong Kong, PhD in Public Administration and Politics](https://ppa.hku.hk/programmes/rpg/mphil-phd)** ([Haohan Chen](https://haohanchen.github.io/)) 94 | 95 | ## Singapore 96 | 97 | **[National University of Singapore, PhD in Communications](https://fass.nus.edu.sg/cnm/phd/)** ([Kokil Jaidka](https://discovery.nus.edu.sg/17291-kokil-jaidka), [Renwen Zhang/张人文](https://discovery.nus.edu.sg/20836-renwen-zhang), [Subhayan Mukerjee](https://discovery.nus.edu.sg/19113-subhayan-mukerjee), [Weiyu Zhang/张玮玉](https://discovery.nus.edu.sg/1768-weiyu-zhang/about)) 98 | 99 | ## United Kingdom 100 | 101 | **[University of Oxford, DPhil in Information, Communication and the Social Sciences](https://www.ox.ac.uk/admissions/graduate/courses/dphil-information-communication-and-social-sciences)** ([Scott Hale](https://www.oii.ox.ac.uk/people/profiles/scott-hale/), [Xiaowen Dong](https://web.media.mit.edu/~xdong/), [Mark Graham](https://www.oii.ox.ac.uk/people/profiles/mark-graham/), [Bernie Hogan](https://www.oii.ox.ac.uk/people/profiles/bernie-hogan/)) 102 | 103 | **[University of Oxford, DPhil in Social Data Science](https://www.oii.ox.ac.uk/study/dphil-in-social-data-science/)** ([Scott Hale](https://www.oii.ox.ac.uk/people/profiles/scott-hale/), [Xiaowen Dong](https://web.media.mit.edu/~xdong/), [Mark Graham](https://www.oii.ox.ac.uk/people/profiles/mark-graham/), [Bernie Hogan](https://www.oii.ox.ac.uk/people/profiles/bernie-hogan/)) 104 | 105 | **[University of Warwick, PhD in Interdisciplinary Studies](https://warwick.ac.uk/fac/cross_fac/cim/apply-to-study/phd-programmes/)** ([Ching Jin](https://warwick.ac.uk/fac/cross_fac/cim/people/ching-jin/)) 106 | 107 | ## United States of America 108 | 109 | **[Brown University, PhD in Sociology](https://www.brown.edu/academics/sociology/programs/phd)** ([Jennifer Candipan](https://vivo.brown.edu/display/jcandipa), [Han Zhang](https://hanzhang.xyz/)) 110 | 111 | **[Carnegie Mellon University University, PhD in Human Computer Interaction](https://hcii.cmu.edu/academics/phd-hci)** ([Hirokazu Shirado](https://www.shirado.net/), [Haiyi Zhu](https://haiyizhu.com/), [Geoff Kaufman](https://www.hcii.cmu.edu/people/geoff-kaufman), [Aniket Kittur](https://kittur.org/)) 112 | 113 | **[Carnegie Mellon University University, PhD in Social and Decision Science](https://www.cmu.edu/dietrich/sds/graduate/index.html)** ([Simon DeDeo](https://sites.santafe.edu/~simon/)) 114 | 115 | **[Carnegie Mellon University University, PhD in Societal Computing](https://sc.cs.cmu.edu/)** ([Kathleen Carley](http://www.casos.cs.cmu.edu/bios/carley/carley.html), [Patrick Park](https://patpark.org/)) 116 | 117 | **[Cornell University, PhD in Communications](https://sociology.cornell.edu/graduate)** ([Michael Macy](https://sociology.cornell.edu/michael-macy)) 118 | 119 | **[Cornell University, PhD in Information Science](https://infosci.cornell.edu/phd)** ([Jon Kleinberg](https://www.cs.cornell.edu/home/kleinber/), [Yian Yin](https://www.yianyin.net/), [Michael Macy](https://sociology.cornell.edu/michael-macy)) 120 | 121 | **[Cornell University, PhD in Sociology](https://sociology.cornell.edu/graduate)** ([Michael Macy](https://sociology.cornell.edu/michael-macy), [David Strang](https://sociology.cornell.edu/david-strang)) 122 | 123 | **[Columbia University, PhD in Political Science.](https://polisci.columbia.edu/content/phd-program)** ([Naoki Egami](https://naokiegami.com), [Suresh Naidu](https://sites.santafe.edu/~snaidu/)) 124 | 125 | **[Columbia University, PhD in Sociology](https://sociology.columbia.edu/content/phd-program-overview)** ([Peter Bearman](https://sociology.columbia.edu/content/peter-bearman), [Yao Lu](https://www.columbia.edu/~yl2479/)) 126 | 127 | **[Duke University, PhD in Sociology](https://sociology.duke.edu/graduate)** ([Chris Bail](https://www.chrisbail.net/), [James Moody](https://sociology.duke.edu/james-moody), [Craig Rawlings](https://scholars.duke.edu/person/craig.rawlings), [Lynn Smith-Lovin](https://scholars.duke.edu/person/smithlov)) 128 | 129 | **[Emory University, PhD in Sociology](https://sociology.emory.edu/graduate/faqs.html)** ([Weihua An](https://sociology.emory.edu/people/bios/An-Weihua.html)) 130 | 131 | **[Georgia Institute of Technology, PhD in Human-Centered Computing](https://www.cc.gatech.edu/degree-programs/phd-human-centered-computing)** ([Munmun De Choudhury](http://www.munmund.net/), [Clio Andris](https://planning.gatech.edu/people/clio-andris)) 132 | 133 | **[George Mason University, PhD in Computational Social Science](https://science.gmu.edu/academics/departments-units/computational-data-sciences/computational-social-science-phd)** 134 | 135 | **[Harvard University, PhD in Government](https://gsas.harvard.edu/program/government)** ([Kosuke Imai](https://imai.fas.harvard.edu), [Gary King](https://gking.harvard.edu)) 136 | 137 | **[Harvard University, PhD in Sociology](https://sociology.fas.harvard.edu/pages/graduate)** ([Joscha Legewie](https://sociology.fas.harvard.edu/people/joscha-legewie), [Ellis Monk](https://www.ellismonk.com#), [Xiang Zhou](https://sociology.fas.harvard.edu/people/xiang-zhou)) 138 | 139 | **[Indiana University Bloomington, Ph.D. in Informatics](https://informatics.indiana.edu/programs/phd-informatics/index.html)** ([YY Ahn](http://yongyeol.com/)) 140 | 141 | **[Massachusetts Institute of Technology, PhD in Media Arts & Sciences (apply through master program)](https://www.media.mit.edu/graduate-program/about-media-arts-sciences/)** ([Alex Pentland](https://www.media.mit.edu/people/sandy/overview/), [Deb Roy](https://www.media.mit.edu/people/dkroy/overview/)) 142 | 143 | **[Massachusetts Institute of Technology, PhD in Sloan](https://mitsloan.mit.edu/phd#tour-welcome)** ([Sinan Aral](https://www.sinanaral.io/), [Dean Eckles](https://www.deaneckles.com/), [David Rand](https://davidrand-cooperation.com/), [Abdullah Almaatouq](http://amaatouq.io/)) 144 | 145 | **[Massachusetts Institute of Technology, PhD in Social & Engineering Systems](https://idss.mit.edu/academics/ses_doc/)** ([Alex Pentland](https://www.media.mit.edu/people/sandy/overview/)) 146 | 147 | **[Michigan State University, PhD in Political Science](https://polisci.msu.edu/graduate/index.html)** ([Andy Halterman](https://andrewhalterman.com)) 148 | 149 | **[Northeastern University, PhD in Network Science](https://www.networkscienceinstitute.org/phd)** ([Albert-László Barabási](https://www.barabasilab.com/), [David Lazer](https://www.lazerlab.net/people/david-lazer)) 150 | 151 | **[Northeastern University, PhD in Sociology](https://cssh.northeastern.edu/socant/program/phd-in-sociology/)** ([Chuncheng Liu](https://www.chunchengliu.com/About), [Cassie McMillan](https://www.cassiemcmillan.com/)) 152 | 153 | **[Northwestern University, PhD in Management & Organizations](https://www.kellogg.northwestern.edu/doctoral/programs/management-and-organizations.aspx)** (The [NICO](https://www.nico.northwestern.edu/) group) 154 | 155 | **[Northwestern University, PhD in Media, Technology, and Society](https://mts.northwestern.edu/program-of-study/)** ([Emőke-Ágnes Horvát](https://agneshorvat.soc.northwestern.edu/), [Noshir Contractor](https://nosh.northwestern.edu/), [Yingdan Lu](https://yingdanlu.com/), [Aaron Shaw](https://communication.northwestern.edu/faculty/aaron-shaw.html)) 156 | 157 | **[Northwestern University, PhD in Sociology](https://sociology.northwestern.edu/graduate/)** ([Andrew Papachristos](https://sociology.northwestern.edu/people/faculty/core/andrew-v.--papachristos-.html), [Doron Shiffer-Sebba](https://doronshiffersebba.com/), [Oscar Stuhler](https://oscarstuhler.org/)) 158 | 159 | **[Northwestern University, PhD in Technology and Social Behavior](https://tsb.northwestern.edu/)** ([Nick Diakopoulos](https://www.nickdiakopoulos.com/)) 160 | 161 | **[New York University, PhD in Sociology](https://as.nyu.edu/departments/sociology/graduate/phd-program.html)** ([Delia Baldassari](https://deliabaldassarri.org/), [Bart Bonikowski](https://wp.nyu.edu/bonikowski/), [Paul DiMaggio](https://as.nyu.edu/faculty/paul-dimaggio.html), [Guillermina Jasso](https://as.nyu.edu/faculty/guillermina-jasso.html), [Carly Knight](https://carlyrknight.org/), [BK Lee](https://as.nyu.edu/faculty/bk-lee.html), [Simone Zhang](https://simonezhang.com)) 162 | 163 | **[Ohio State University, PhD in Sociology](https://sociology.osu.edu/graduate-program)** ([Dana Haynie](https://sociology.osu.edu/people/haynie.7), [David Melamed](https://u.osu.edu/melamed9/)) 164 | 165 | **[Pennsylvannia State University, PhD in Political Science](https://polisci.la.psu.edu/graduate/why-study-at-penn-state/application-process/)** ([Bruce Desmarais](https://brucedesmarais.com)) 166 | 167 | **[Princeton University, PhD in Politics](https://politics.princeton.edu/graduate)** ([Arthur Spirling](https://arthurspirling.org), [Brandon Stewart](https://bstewart.scholar.princeton.edu/), [Rocio Titiunik](https://titiunik.scholar.princeton.edu)) 168 | 169 | **[Princeton University, PhD in Sociology](https://gradschool.princeton.edu/academics/degrees-requirements/fields-study/sociology)** ([Matthew Salganik](http://www.princeton.edu/~mjs3/), [Brandon Stewart](https://bstewart.scholar.princeton.edu/)) 170 | 171 | **[Purdue University, PhD in Communications](https://cla.purdue.edu/communication/graduate/)** ([Jessica Collier](https://cla.purdue.edu/directory/profiles/jessica-r-collier.html), [Jeremy Foote](https://cla.purdue.edu/directory/profiles/jeremy-foote.html)) 172 | 173 | **[Purdue University, PhD in Political Science](https://cla.purdue.edu/academic/polsci/gradprog/)** ([Bryce Dietrich](https://cla.purdue.edu/directory/profiles/bryce-dietrich.html)) 174 | 175 | **[Purdue University, PhD in Sociology](https://www.cla.purdue.edu/academic/sociology/graduate/phd/index.html)** ([Alina Arseniev-Koehler](https://cla.purdue.edu/directory/profiles/alina-arseniev-koehler.html)) 176 | 177 | **[Rutgers University, PhD in Sociology](https://sociology.rutgers.edu/academics/graduate/graduate-program)** ([Thomas Davidson](https://www.thomasrdavidson.com/), [Paul McLean](https://sociology.rutgers.edu/people/faculty/core-department-faculty/core-department-faculty-member/163-paul-mclean)) 178 | 179 | **[Stanford University, PhD in Computer Science](https://www.cs.stanford.edu/admissions/phd-admissions)** ([Diyi Yang](https://cs.stanford.edu/~diyiy/), [Dan Jurafsky](http://web.stanford.edu/~jurafsky/)) 180 | 181 | **[Stanford University, PhD in Communications](https://comm.stanford.edu/phd)** ([Jennifer Pan](https://jenpan.com)) 182 | 183 | **[Stanford University, PhD in Management Science and Engineering](https://msande.stanford.edu/academics-admissions/graduate/phd-program/phd-degree#computational)** ([Johan Ugander](http://stanford.edu/~jugander/), [Walter Powell](https://woodypowell.com/), [Amir Goldberg](https://www.gsb.stanford.edu/faculty-research/faculty/amir-goldberg)) 184 | 185 | **[Stanford University, PhD at Graduate School of Business](https://www.gsb.stanford#.edu/programs/phd)** ([Walter Powell](https://woodypowell.com/), [Amir Goldberg](https://www.gsb.stanford.edu/faculty-research/faculty/amir-goldberg), [Douglas Guilbeault](https://www.gsb.stanford.edu/faculty-research/faculty/douglas-r-guilbeault)) 186 | 187 | **[Stanford University, PhD in Political Science](https://politicalscience.stanford.edu/graduate-program/phd-admissions)** ([Justin Grimmer](https://politicalscience.stanford.edu/people/justin-ryan-grimmer), [Jennifer Pan](https://jenpan.com), [Yiqing Xu](https://yiqingxu.org/)) 188 | 189 | **[Stanford University, PhD in Sociology](https://sociology.stanford.edu/admissions/phd-how-apply)** ([Daniel McFarland](https://ed.stanford.edu/faculty/mcfarland), [Robb Willer](https://sociology.stanford.edu/people/robb-willer)) 190 | 191 | **[Stony Brook University, PhD in Sociology](https://www.stonybrook.edu/commcms/sociology/graduate/phd.php)** ([Yongjun Zhang](https://yongjunzhang.com/), [Jason Jeffrey Jones](https://jasonjones.ninja/)) 192 | 193 | **[Temple University, Fox School of Business, PhD](https://www.fox.temple.edu/academics/fox-phd)** ([Edo Airoldi](https://airoldi.github.io/)) 194 | 195 | **[University of Arizona, PhD in Sociology](https://sociology.arizona.edu/graduate/about)** ([Charles Gomez](https://charliegomez.com/)) 196 | 197 | **[University of California, Berkeley, PhD in Information Science](https://www.ischool.berkeley.edu/programs/phd/admissions)** ([David Bamman](https://people.ischool.berkeley.edu/~dbamman/)) 198 | 199 | **[University of California, Berkeley Haas School of Business, PhD in Business Administration](https://haas.berkeley.edu/phd/)** ([Solene Delecourt](https://sites.google.com/berkeley.edu/solenedelecourt/home), [Srivastava Sameer](https://haas.berkeley.edu/faculty/srivastava-sameer/)) 200 | 201 | **[University of California, Davis, PhD in Communications](https://communication.ucdavis.edu/doctoral-program#)** ([Seth Frey](https://communication.ucdavis.edu/people/seth-frey), [Cuihua Shen](https://communication.ucdavis.edu/people/cuihua-shen)) 202 | 203 | **[University of California, San Diego, PhD in Data Science](https://datascience.ucsd.edu/graduate/phd-program/)** 204 | 205 | **[University of California, San Diego, PhD in Political Science](https://polisci.ucsd.edu/grad/index.html)** ([James Fowler](https://scholar.google.com/citations?user=zPXbwJgAAAAJ&hl=en), [Molly Roberts](https://margaretroberts.net/)) 206 | 207 | **[University of California, San Diego, PhD in Sociology](https://sociology.ucsd.edu/graduate/admissions.html)** ([Kevin Lewis](https://www.kevinlewis-sociology.com/)) 208 | 209 | **[University of California, Irvine, PhD in Sociology](https://www.sociology.uci.edu/grad/phd/admissions.php)** ([Carter Butts](https://engineering.uci.edu/users/carter-butts)) 210 | 211 | **[University of California, Los Angeles, PhD in Communications](https://comm.ucla.edu/graduate/program/)** ([Homa Hosseinmardi](https://homahm.github.io/), [Jungseok Joo](https://www.jsjoo.com/)) 212 | 213 | **[University of California, Los Angeles, PhD in Political Science](https://polisci.ucla.edu/academics/graduate/applying-to-the-ph-d-program/)** ([Zachary Steinert-Threlkeld](https://global.luskin.ucla.edu/faculty-members/zachary-steinert-threlkeld/), [Michelle Torres](https://polisci.ucla.edu/person/michelle-torres/)) 214 | 215 | **[University of California, Los Angeles, PhD in Sociology](https://grad.ucla.edu/programs/social-sciences/sociology/)** ([Jennie Brand](https://www.profjenniebrand.com/), [Jacob Foster](https://soc.ucla.edu/person/jacob-foster/), [Omar Lizardo](https://olizardo.github.io/mysite/), [Ka-Yuet Liu](https://sites.google.com/view/kayuet-liu), [Ian Lundberg](https://www.ianlundberg.org/)) 216 | 217 | **[University of Chicago, PhD in Data Science](https://codas.uchicago.edu/academics/phd-in-data-science/)** ([James Evans](https://sociology.uchicago.edu/directory/James-A-Evans), [Luís M. A. Bettencourt](https://datascience.uchicago.edu/people/luis-m-a-bettencourt/), [Aaron Schein](https://datascience.uchicago.edu/people/aaron-schein/), [Chenhao Tan](https://datascience.uchicago.edu/people/chenhao-tan/), [Joshua Jackson](https://datascience.uchicago.edu/people/joshua-conrad-jackson/), [Yuan Chang Leong](https://datascience.uchicago.edu/people/yuan-chang-leong/)) 218 | 219 | **[University of Chicago, PhD in Political Science](https://political-science.uchicago.edu/graduate-study)** ([Molly Offer-Westort](https://mollyow.github.io), [John Padgett](https://home.uchicago.edu/~jpadgett/), [Anton Strezhnev](https://www.antonstrezhnev.com), [Rochelle Terman](https://rochelleterman.com)) 220 | 221 | **[University of Chicago, Harris School of Public Policy, PhD in Public Policy](https://harris.uchicago.edu/academics/degrees/phd)** ([Christopher Berry](https://miurban.uchicago.edu/bio_christopher-berry/)) 222 | 223 | **[University of Chicago, PhD in Sociology](https://sociology.uchicago.edu/graduate-study)** ([James Evans](https://sociology.uchicago.edu/directory/James-A-Evans), [Bernard Koch](https://bernardjkoch.com/), [John Levi Martin](https://sociology.uchicago.edu/directory/John-Levi-Martin)) 224 | 225 | **[University of Georgia, PhD in Sociology](https://grad.uga.edu/degree/phd-sociology/)** ([Peng Huang](https://penghuang.me/), [Yilang Peng](https://yilangpeng.com/)) 226 | 227 | **[University of Illinois Urbana-Champaign, PhD in Informatics](https://informatics.ischool.illinois.edu/phd-admission/)** 228 | 229 | **[University of Illinois Urbana-Champaign, PhD in Information Sciences](https://ischool.illinois.edu/degrees-programs/graduate/phd-information-sciences)** 230 | 231 | **[University of Iowa, PhD in Sociology](https://sociology.uiowa.edu/graduate/sociology-phd)** ([Yongren Shi](https://sociology.uiowa.edu/people/yongren-shi)) 232 | 233 | **[University of Kentucky, Gatton College of Business and Economics, PhD in Business Management](https://gatton.uky.edu/programs/phd/phd-business-administration/management)** ([Stephen Borgatti](https://sites.google.com/site/steveborgatti/home)) 234 | 235 | **[University of Massachusetts Amherst, PhD in Sociology](https://www.umass.edu/sociology/graduate-program)** ([Mark Pachucki](https://markpachucki.com), [Anthony Paik](https://www.umass.edu/sociology/about/directory/anthony-paik)) 236 | 237 | **[University of Michigan, PhD in Information](https://www.si.umich.edu/programs/phd-information)** ([Daniel Romero](http://www.dromero.org/), [Qiaozhu Mei](https://public.websites.umich.edu/~qmei/), [David Jurgan](https://jurgens.people.si.umich.edu/), [Ceren Budak](http://cbudak.com/index.html), [Dallas Card](https://dallascard.github.io/), [Justin Zhang](https://webapps.unf.edu/faculty/bio/n01419497)) 238 | 239 | **[University of Michigan, PhD in Political Science](https://lsa.umich.edu/polisci/graduates/program-overview.html)** ([Jenna Bednar](https://lsa.umich.edu/polisci/people/faculty/jbednar.html), [Christian Fong](https://lsa.umich.edu/polisci/people/faculty/christian-fong.html), [Arthur Lupia](https://lsa.umich.edu/polisci/people/faculty/lupia.html)) 240 | 241 | **[University of Michigan, PhD in Sociology](https://lsa.umich.edu/soc/graduates/application-procedures.html)** ([Andrei Boutyline](https://lsa.umich.edu/soc/people/faculty/aboutyl.html), [Elizabeth Bruch](https://lsa.umich.edu/soc/people/faculty/ebruch.html)) 242 | 243 | **[University of North Carolina, Chapel Hill, PhD in Sociology](https://sociology.unc.edu/graduate-program/)** ([Neal Caren](https://nealcaren.org/), [Scott Duxbury](https://sites.google.com/view/scottduxbury/home)) 244 | 245 | **[University of Notre Dame, PhD in Sociology](https://sociology.nd.edu/graduate-program/)** ([Daniel Tadmon](https://www.danieltadmon.com/)) 246 | 247 | **[University of Pennsylvania, PhD in Communication](https://www.asc.upenn.edu/graduate)** ([Duncan Watts](https://duncanjwatts.com/), [Damon Centola](https://www.damoncentola.com/), [Sandra González-Bailón](https://sandragonzalezbailon.net)) 248 | 249 | **[University of Pittsburgh, PhD in Information Science](https://www.sci.pitt.edu/academics/doctoral-degrees/information-science-phd)** ([Lingfei Wu](https://lingfeiwu.github.io/), [Morgan Frank](https://sites.pitt.edu/~mrfrank/), [Yu-Ru Lin](https://www.yurulin.com/)) 250 | 251 | **[University of South California, Annenberg School of Communications and Journalism, PhD in Communications](https://annenberg.usc.edu/academics/communication-phd)** ([Emilio Ferarra](https://annenberg.usc.edu/faculty/emilio-ferrara)) 252 | 253 | **[University of South California, PhD in Computer Science](https://www.cs.usc.edu/academic-programs/phd/)** ([Kristina Lerman](https://www.isi.edu/people-lerman/)) 254 | 255 | **[University of South California, PhD in Political Science](https://dornsife.usc.edu/poir/graduate-doctorate-programs-and-research/)** ([Pablo Baberá](http://pablobarbera.com)) 256 | 257 | **[University of Texas, Austin, PhD in Sociology](https://liberalarts.utexas.edu/sociology/graduate-program/)** ([Ken-hou Lin](https://www.kenhoulin.info/)) 258 | 259 | **[University of Washington, PhD in Communications](https://com.uw.edu/ma-phd/)** ([Benjamin Mako Hill](https://mako.cc)) 260 | 261 | **[University of Washington, PhD in Information Science](https://ischool.uw.edu/programs/phd)** ([Aylin Caliskan](https://faculty.washington.edu/aylin/), [Martin Saveski](http://martinsaveski.com/), [Emma Spiro](https://emmaspiro.github.io/), [Jevin West](https://www.jevinwest.org/)) 262 | 263 | **[University of Washington, PhD in Sociology](https://soc.washington.edu/graduate-program-overview)** ([Zack Almquist](https://zalmquist.github.io/publications/), [Andrew Messamore](https://andrewmessamore.com/)) 264 | 265 | **[University of Wisconsin, Madison, PhD in Mass Communications](https://journalism.wisc.edu/admissions/graduate-admissions/)** ([Dhavan Shah](https://journalism.wisc.edu/news/staff/dhavan-v-shah/), [Sijia Yang](https://journalism.wisc.edu/news/staff/yang-sijia/)) 266 | 267 | **[University of Virginia, PhD in Data Science](https://datascience.virginia.edu/degrees/phd)** ([Alex Gates](https://datascience.virginia.edu/people/alex-gates)) 268 | 269 | **[Washington University in St. Louis, PhD in Political Science](https://polisci.wustl.edu/graduate-program)** ([Christopher Lucas](https://christopherlucas.org/), [Lucia Motolinia](https://polisci.wustl.edu/people/lucia-motolinia), [Betsy Sinclair](https://sites.wustl.edu/betsysinclair/)) 270 | 271 | **[Yale University, PhD in Sociology](https://sociology.yale.edu/academics/graduate-program/how-apply)** ([Nicholas Christakis](https://sociology.yale.edu/people/nicholas-christakis), [Justin Farrell](https://justinfarrell.org/), [Daniel Karell](https://www.danielkarell.com/), [Yuan Hsiao](https://sociology.yale.edu/people/yuan-hsiao)) 272 | 273 | -------------------------------------------------------------------------------- /researcher_en.md: -------------------------------------------------------------------------------- 1 | Topics/Researchers are sorted in alphabetical order, researchers do not include graduate students. 2 | 3 | One researcher can work on multiple topics/sub-topics. There is no formal definition about each topic and all topics are assigned based on collective input from the community, and may not always align with your understanding (feel free to post change or suggestions via PR or issues). Note the purpose here is not to provide a rigorous categorization of topics, but to help people look for researchers in different domains. 4 | 5 | ## Content Structure 6 | 7 | - [AI and Society](#ai-and-society) 8 | - [AI Algorithom and Social Impact](#ai-algorithm-and-social-impact) 9 | - [AI for Social Networks](#ai-for-social-networks) 10 | - [Human-AI System/Interaction/Augmentation](#human-ai-systeminteractionaugmentation) 11 | - [Natural Langugage Processing](#natural-language-processing) 12 | - [City/Urban/Geo-Analysis](#cityurbangeo-analysis) 13 | - [Complex System/Networks](#complex-systemnetworks) 14 | - [Culture](#culture) 15 | - [Economy/Labor/Market](#economylabormarket) 16 | - [Gender/Race](#genderrace) 17 | - [Law](#law) 18 | - [Management](#management) 19 | - [Collective Intelligence](#collective-intelligence) 20 | - [Public Health](#public-health) 21 | - [Politics and Policy](#politics-and-policy) 22 | - [Psychology/Cognitive Science](#psychologycognitive-science) 23 | - [Science of Science](#science-of-science) 24 | - [Social Movement](#social-movement) 25 | - [Social Media/Communication](#social-mediacommunication) 26 | - [Misinformation/Information Diffusion](#misinformationinformation-diffusion) 27 | - [(Online) Community and Behavior](#online-community-and-behavior) 28 | - [Technology and Society](#technology-and-society) 29 | 30 | # AI and Society 31 | 32 | ## AI Algorithm and Social Impact 33 | 34 | **[Abigail Jacobs](https://azjacobs.com/)** (University of Michigan, USA) 35 | 36 | **[Aleksandra Korolova](https://www.korolova.com/)** (Princeton University, USA) 37 | 38 | **[Allison Koenecke](https://koenecke.infosci.cornell.edu/)** (Cornell University, USA) 39 | 40 | **[Dallas Card](https://dallascard.github.io/)** (University of Michigan, USA) 41 | 42 | **[Dong Wang](https://www.wangdong.org/)** (University of Illinois Urbana-Champaign, USA) 43 | 44 | **[Fei Fang](https://feifang.info/)** (Carnegie Mellon University, USA) 45 | 46 | **[Grant Schoenebeck](http://schoeneb.people.si.umich.edu/)** (University of Michigan, USA) 47 | 48 | **[Jungpil Hahn](https://www.garbcan.com/)** (National University of Singapore, Singapore) 49 | 50 | **[Manoel Horta Ribeiro](https://manoelhortaribeiro.github.io/)** (Princeton University, USA) 51 | 52 | **[Martin Saveski](http://martinsaveski.com/)** (University of Washington, USA) 53 | 54 | **[Michiel Bakker](https://miba.dev/)** (Massachusetts Institute of Technology, USA) 55 | 56 | **[Sebastian Benthall](https://sbenthall.net/)** (New York University, USA) 57 | 58 | **[Swapnil Mishra](https://www.smishra.dev/)** (National University of Singapore, Singapore) 59 | 60 | **[Yves-Alexandre de Montjoye](https://demontjoye.com/)** (Imperial College London, UK) 61 | 62 | **[Ashton Anderson](https://www.cs.toronto.edu/~ashton/)** (University of Toronto, Canada) 63 | 64 | ## AI for Social Networks 65 | 66 | **[Abigail Jacobs](https://azjacobs.com/)** (University of Michigan, USA) 67 | 68 | **[Jie Tang/唐杰](https://keg.cs.tsinghua.edu.cn/jietang/)** (Tsinghua University, Mainland China) 69 | 70 | **[Jure Leskovec](https://cs.stanford.edu/people/jure/)** (Stanford University, USA) 71 | 72 | **[Serina Chang](https://serinachang5.github.io/)** (University of California, Berkeley, USA) 73 | 74 | **[Yang Yang/杨洋](http://yangy.org/)** (Zhejiang University, Mainland China) 75 | 76 | ## Human-AI System/Interaction/Augmentation 77 | 78 | **[Atreyi Kankanhalli](https://www.comp.nus.edu.sg/disa/people/atreyi/)** (National University of Singapore, Singapore) 79 | 80 | **[Chenhao Tan](https://chenhaot.com/)** (University of Chicago, USA) 81 | 82 | **[Dong Wang](https://www.wangdong.org/)** (University of Illinois Urbana-Champaign, USA) 83 | 84 | **[Eric Gilbert](http://eegilbert.org/)** (University of Michigan, USA) 85 | 86 | **[Hirokazu Shirado](https://www.shirado.net/)** (Carnegie Mellon University, USA) 87 | 88 | **[Iyad Rahwan](https://www.rahwan.me/)** (Max Planck Institute, Germany) 89 | 90 | **[Jessie Chin](https://jessiechinlab.ischool.illinois.edu/)** (University of Illinois Urbana-Champaign, USA) 91 | 92 | **[JooYoung Seo](https://jooyoungseo.github.io/)** (University of Illinois Urbana-Champaign, USA) 93 | 94 | **[Kristina Lerman](https://www.isi.edu/people-lerman/)** (University of Southern California, USA) 95 | 96 | **[Martin Saveski](http://martinsaveski.com/)** (University of Washington, USA) 97 | 98 | **[Matt Groh](https://mattgroh.com/)** (Northwestern University, USA) 99 | 100 | **[Mor Naaman](https://mmoorr.github.io/www_personal/)** (Cornell University, USA) 101 | 102 | **[Mu-Jung Cho](https://www.rchss.sinica.edu.tw/members/4a08ea44-a61a-4425-acc5-95fe06e67a32?page_id=45)** (Academia Sinica, Taiwan) 103 | 104 | **[Nello Cristianini](https://researchportal.bath.ac.uk/en/persons/nello-cristianini)** (University of Bath, UK) 105 | 106 | **[Paul Resnick](https://presnick.people.si.umich.edu/)** (University of Michigan, USA) 107 | 108 | **[Renwen Zhang](https://discovery.nus.edu.sg/20836-renwen-zhang)** (National University of Singapore, Singapore) 109 | 110 | **[Taha Yasseri](https://tahayasseri.com/)** (Trinity College Dublin, Ireland) 111 | 112 | **[Yang Wang](http://yangwang.ischool.illinois.edu/)** (University of Illinois Urbana-Champaign, USA) 113 | 114 | **[Yang Zhang](https://yznd42.github.io/)** (University of Illinois Urbana-Champaign, USA) 115 | 116 | **[Yi-Chieh Lee](https://www.yclee.net/)** (National University of Singapore, Singapore) 117 | 118 | **[Yun Huang](https://yunhuang.web.illinois.edu/)** (University of Illinois Urbana-Champaign, USA) 119 | 120 | **[Ziang Xiao](https://www.ziangxiao.com/)** (Johns Hopkins University, USA) 121 | 122 | ## Natural Language Processing 123 | 124 | **[Aylin Caliskan](https://faculty.washington.edu/aylin/)** (University of Washington, USA) 125 | 126 | **[Cristian Danescu-Niculescu-Mizil](https://www.cs.cornell.edu/~cristian/)** (Cornell University, USA) 127 | 128 | **[David Jurgens](http://jurgens.people.si.umich.edu/)** (University of Michigan, USA) 129 | 130 | **[Dallas Card](https://dallascard.github.io/)** (University of Michigan, USA) 131 | 132 | **[Dan Jurafsky](http://web.stanford.edu/~jurafsky/)** (Stanford University, USA) 133 | 134 | **[David Mimno](https://mimno.infosci.cornell.edu/)** (Cornell University, USA) 135 | 136 | **[Deb Roy](https://www.media.mit.edu/people/dkroy/overview/)** (Massachusetts Institute of Technology, USA) 137 | 138 | **[Diane Litman](https://people.cs.pitt.edu/~litman/pubs.html)** (University of Pittsburgh, USA) 139 | 140 | **[Diyi Yang](https://cs.stanford.edu/~diyiy/)** (Stanford University, USA) 141 | 142 | **[Janet Pierrehumbert](http://www.phon.ox.ac.uk/jpierrehumbert/)** (University of Oxford, UK) 143 | 144 | **[Janyce Wiebe](https://people.cs.pitt.edu/~wiebe/)** (University of Pittsburgh, USA) 145 | 146 | **[Justine Zhang](https://tisjune.github.io/)** (University of Michigan, USA) 147 | 148 | **[Ken Benoit](https://kenbenoit.net/)** (Singapore Management University, Singapore) 149 | 150 | **[Kokil Jaidka](https://discovery.nus.edu.sg/17291-kokil-jaidka/)** (National University of Singapore, Singapore) 151 | 152 | **[Lillian Lee](https://www.cs.cornell.edu/home/llee/)** (Cornell University, USA) 153 | 154 | **[Min-Yen Kan](https://www.comp.nus.edu.sg/~kanmy/)** (National University of Singapore, Singapore) 155 | 156 | **[Paramveer Dhillon](https://pdhillon.com/)** (University of Michigan, USA) 157 | 158 | **[Ted Underwood](https://ischool.illinois.edu/people/ted-underwood)** (University of Illinois Urbana-Champaign, USA) 159 | 160 | **[VG Vinod Vydiswaran](https://public.websites.umich.edu/~vgvinodv/)** (University of Michigan, USA) 161 | 162 | **[Zhiyuan Liu/刘知远](https://nlp.csai.tsinghua.edu.cn/~lzy/index_cn.html)** (Tsinghua University, Mainland China) 163 | 164 | **[Zhijing JIN](https://zhijing-jin.com/fantasy/)**(University of Toronto, Canada) 165 | 166 | # City/Urban/Geo-Analysis 167 | 168 | **[Esteban Moro](http://estebanmoro.org/)** (Northestern University, USA) 169 | 170 | **[Lei Dong/董磊](http://donglei.org/about/)** (Maptable, Mainland China) 171 | 172 | **[Matthew Wilkens](https://infosci.cornell.edu/content/wilkens)** (Cornell University, USA) 173 | 174 | **[Xinyue Ye](https://www.arch.tamu.edu/staff/xinyue-ye/)** (Texas A&M University, USA) 175 | 176 | # Complex System/Networks 177 | 178 | **[Aaron Clauset](https://www.colorado.edu/faculty/clauset/)** (University of Colorado Boulder, USA) 179 | 180 | **[Abigail Jacobs](https://azjacobs.com/)** (University of Michigan, USA) 181 | 182 | **[Akira Endo](https://akira-endo.github.io/)** (National University of Singapore, Singapore) 183 | 184 | **[Albert-László Barabási](https://www.barabasilab.com/)** (Northeastern University, USA) 185 | 186 | **[An Zeng/曾安](https://sss.bnu.edu.cn/szdw/zzjs/js/8b4c96518e694080a5319f428abe045f.htm)** (Beijing Normal University, Mainland China) 187 | 188 | **[Bibhas Chakraborty](https://blog.nus.edu.sg/bibhas/)** (National University of Singapore, Singapore) 189 | 190 | **[Chen-Shou Hong](https://sociology.ntu.edu.tw/en/faculty/chen-shuo-hong/?doing_wp_cron=1729805326.3883159160614013671875)** (National Taiwan University, Taiwan) 191 | 192 | **[Ching Jin](https://warwick.ac.uk/fac/cross_fac/cim/people/ching-jin/)** (University of Warwick, UK) 193 | 194 | **[Daniel Romero](http://www.dromero.org/)** (University of Michigan, USA) 195 | 196 | **[David Easley](https://easley.economics.cornell.edu/)** (Cornell University, USA) 197 | 198 | **[Duncan Watts](https://duncanjwatts.com/)** (University of Pennsylvania, USA) 199 | 200 | **[Eduardo Araral](https://lkyspp.nus.edu.sg/our-people/faculty/eduardo-araral)** (National University of Singapore, Signapore) 201 | 202 | **[Esteban Moro](http://estebanmoro.org/)** (Northestern University, USA) 203 | 204 | **[Eunice Santos](https://ischool.illinois.edu/people/eunice-e-santos)** (University of Illinois Urbana-Champaign, USA) 205 | 206 | **[Éva Tardos](https://infosci.cornell.edu/content/tardos)** (Cornell University, USA) 207 | 208 | **[Hsuan-Wei "Wayne" Lee]( https://sites.google.com/view/hsuanweilee/home)** (Lehigh University, USA) 209 | 210 | **[Janet Pierrehumbert](http://www.phon.ox.ac.uk/jpierrehumbert/)** (University of Oxford, UK) 211 | 212 | **[Jiang Zhang/张江](https://jake.swarma.org/index.html)** (Beijing Normal University, Mainland China) 213 | 214 | **[Karen Cook](https://sociology.stanford.edu/people/karen-cook)** (Stanford University, USA) 215 | 216 | **[Kathleen Carley](https://s3d.cmu.edu/people/core-faculty/carley-kathleen.html)** (Carnegie Mellon University, USA) 217 | 218 | **[Kristina Lerman](https://www.isi.edu/people-lerman/)** (University of Southern California, USA) 219 | 220 | **[Lada Adamic](http://www.ladamic.com/)** (Meta, USA) 221 | 222 | **[LEE Jaemin](https://www.soc.cuhk.edu.hk/profile/lee-jaemin/)** (Chinese University of Hong Kong, Hongkong) 223 | 224 | **[Maria De Iorio](https://discovery.nus.edu.sg/13583-maria-de-iorio)** (National University of Singapore, Singapore) 225 | 226 | **[Michael Macy](https://sociology.cornell.edu/michael-macy)** (Cornell University, USA) 227 | 228 | **[Milena Tsvetkova](https://tsvetkova.me/)** (London School of Economics and Political Science, UK) 229 | 230 | **[Nicholas Christakis](https://humannaturelab.net/director)** (Yale, USA) 231 | 232 | **[Noshir Contractor](https://nosh.northwestern.edu/)** (Northwestern University, USA) 233 | 234 | **[Patrick Park](https://patpark.org/)** (Carnegie Mellon University, USA) 235 | 236 | **[Prateek Bansal](https://cde.nus.edu.sg/cee/staff/prateek-bansal/)** (National University of Singapore, Singapore) 237 | 238 | **[Seth Flaxman](https://sethrf.com/)** (University of Oxford, UK) 239 | 240 | **[Steven Strogatz](https://www.stevenstrogatz.com/)** (Cornell University, USA) 241 | 242 | **[Swapnil Mishra](https://www.smishra.dev/)** (National University of Singapore, Singapore) 243 | 244 | **[Yan Leng](https://yleng.github.io/www/)** (University of Texas at Austin, USA) 245 | 246 | **[Yen-Sheng Chiang](https://www.ios.sinica.edu.tw/pi.php?id=134&typeID=100)** (Academia Sinica, Taiwan) 247 | 248 | **[Yongren Shi](https://sociology.uiowa.edu/people/yongren-shi)** (University of Iowa, USA) 249 | 250 | **[Yuan Hsiao]( https://sociology.yale.edu/people/yuan-hsiao)** (Yale University, USA) 251 | 252 | **[Yuan Yuan](https://www.yuan-yy.com/)** (University of California, Davis, USA) 253 | 254 | **[Zike Zhang/张子柯](https://person.zju.edu.cn/zkz#)** (Zhejiang University, Mainland China) 255 | 256 | # Culture 257 | 258 | **[Ben Blumson](https://philpeople.org/profiles/ben-blumson)** (National University of Signapore, Signapore) 259 | 260 | **[Bee Lee](https://ischool.uw.edu/people/faculty/profile/bcgl)** (University of Washington, USA) 261 | 262 | **[DongWon Oh](https://dongwonoh.com/)** (National University of Signapore, Signapore) 263 | 264 | **[Elaine Ho](https://discovery.nus.edu.sg/3057-lynnee-elaine-ho)** (National University of Signapore, Signapore) 265 | 266 | **[Kenneth Dean](https://ari.nus.edu.sg/people/prof-kenneth-dean/)** (National University of Signapore, Signapore) 267 | 268 | **[Ricky Punzalan](https://rpunzalan.com/)** (University of Michigan, USA) 269 | 270 | # Economy/Labor/Market 271 | 272 | **[Cristobal Cheyre](https://www.andrew.cmu.edu/user/ccheyref/)** (Cornell University, USA) 273 | 274 | **[Dan Goldstein](https://www.microsoft.com/en-us/research/people/dgg/projects/)** (Microsoft Research, USA) 275 | 276 | **[David Easley](https://easley.economics.cornell.edu/)** (Cornell University, USA) 277 | 278 | **[Grant Schoenebeck](http://schoeneb.people.si.umich.edu/)** (University of Michigan, USA) 279 | 280 | **[Gerard Siew Keong Chung](https://www.gerardchung.com/)** (National University of Singapore, Singapore) 281 | 282 | **[Iyad Rahwan](https://www.rahwan.me/)** (Max Planck Institute, Germany) 283 | 284 | **[Joshua Blumenstock](https://www.jblumenstock.com/)** (University of California, Berkeley, USA) 285 | 286 | **[Khim Yong Goh](https://www.comp.nus.edu.sg/disa/people/gohky/)** (National University of Singapore, Singapore) 287 | 288 | **[Larry Blume](https://sites.santafe.edu/~leb/)** (Cornell University, USA) 289 | 290 | **[Meicen Sun](https://ischool.illinois.edu/people/meicen-sun)** (University of Illinois Urbana-Champaign, USA) 291 | 292 | **[Melissa Dell](https://dell-research-harvard.github.io/)** (Harvard University, USA) 293 | 294 | **[Morgan Frank](https://sites.pitt.edu/~mrfrank/)** (University of Pittsburgh, USA) 295 | 296 | **[Nan Chen](https://sites.google.com/site/ttnanchen)** (National University of Singapore, Singapore) 297 | 298 | **[Nikhil Garg](https://gargnikhil.com/)** (Cornell University, USA) 299 | 300 | **[Paramveer Dhillon](https://pdhillon.com/)** (University of Michigan, USA) 301 | 302 | **[Steven Wu](https://zstevenwu.com/)** (Carnegie Mellon University, USA) 303 | 304 | **[Yan Chen](http://yanchen.people.si.umich.edu/)** (University of Michigan, USA) 305 | 306 | # Gender/Race 307 | 308 | **[Chen-Yi Yu]( https://gigs.kmu.edu.tw/index.php/en-gb/專任教師/32-english-web/faculty/602-chen-yi-yu)** (Kaohsiung Medical University, Taiwan) 309 | 310 | **[Matthew Bui](https://www.si.umich.edu/people/matthew-bui)** (University of Michigan, USA) 311 | 312 | **[Nathan Matias](https://natematias.com/)** (Cornell University, USA) 313 | 314 | **[Philip Stark](https://www.stat.berkeley.edu/~stark/)** (University of California, Berkeley, USA) 315 | 316 | # Law 317 | 318 | **[Gillian Hadfield](https://engineering.jhu.edu/faculty/gillian-hadfield/)** (Johns Hopkins University, USA) 319 | 320 | **[Jungpil Hahn](https://www.garbcan.com/)** (National University of Singapore, Singapore) 321 | 322 | # Management 323 | 324 | **[Balazs Kovacs](https://www.balazskovacs.com/)** (Yale University, USA) 325 | 326 | **[Botelho, Tristan](https://tristanbotelho.com/)** (Yale University, USA) 327 | 328 | **[Yuan Yuan](https://www.yuan-yy.com/)** (University of California, Davis, USA) 329 | 330 | ## Collective Intelligence 331 | 332 | **[Abdullah Almaatouq](http://amaatouq.io/)** (Massachusetts Institute of Technology, USA) 333 | 334 | **[Anita Woolley](https://sites.google.com/view/anitawoolley-com/home)** (Carnegie Mellon University, USA) 335 | 336 | **[Alex Sandy Pentland](https://www.media.mit.edu/people/sandy/overview/)** (Massachusetts Institute of Technology, USA) 337 | 338 | **[Ceren Budak](http://cbudak.com/index.html)** (University of Michigan, USA) 339 | 340 | **[Thomas Malone](https://mitsloan.mit.edu/faculty/directory/thomas-w-malone)** (Massachusetts Institute of Technology, USA) 341 | 342 | # Public Health 343 | 344 | **[Akira Endo](https://akira-endo.github.io/)** (National University of Singapore, Singapore) 345 | 346 | **[Alex Cook](https://sph.nus.edu.sg/faculty-directory/cook-alex-richard/)** (National University of Singapore, Singapore) 347 | 348 | **[Hannah Eleanor Clapham](https://sph.nus.edu.sg/faculty-directory/clapham-hannah/)** (National University of Singapore, Singapore) 349 | 350 | **[Wei Luo](https://fass.nus.edu.sg/geog/people/luo-wei/)** (National University of Singapore, Singapore) 351 | 352 | **[Yi-Chen Wang](https://discovery.nus.edu.sg/1117-yichen-wang)** (National University of Singapore, Singapore) 353 | 354 | # Politics and Policy 355 | 356 | **[Anfan Chen](https://coms.hkbu.edu.hk/faculty-and-staff/anfan-chen.html)** (Hong Kong Baptist University, Hongkong) 357 | 358 | **[Araz Taeihagh](https://www.taeihagh.com/publications)** (National University of Singapore, Signapore) 359 | 360 | **[Benjamin Soltoff](https://infosci.cornell.edu/content/soltoff)** (Cornell University, USA) 361 | 362 | **[Chris Bail](https://www.chrisbail.net/)** (Duke University, USA) 363 | 364 | **[Damian Trilling](https://damiantrilling.net/en/)** (Vrije Universiteit Amsterdam, Netherlands) 365 | 366 | **[Daniel Hopkins](https://web.sas.upenn.edu/danhop/)** (University of Pennsylvania, USA) 367 | 368 | **[Dean Knox](http://www.dcknox.com/)** (University of Pennsylvania, USA) 369 | 370 | **[Eduardo Araral](https://lkyspp.nus.edu.sg/our-people/faculty/eduardo-araral)** (National University of Singapore, Signapore) 371 | 372 | **[Francisco Cantú](https://franciscocantu.github.io/)** (University of Houston, USA) 373 | 374 | **[Gary King](https://gking.harvard.edu/)** (Harvard University, USA) 375 | 376 | **[Haohan Chen](https://haohanchen.github.io/)** (University of Hong Kong, Hongkong) 377 | 378 | **[Jie Gao](https://discovery.nus.edu.sg/4143-jie-gao/about)** (National University of Singapore, Singaapore) 379 | 380 | **[Joshua Tucker](https://as.nyu.edu/faculty/joshua-tucker.html)** (New York University, USA) 381 | 382 | **[Jungpil Hahn](https://www.garbcan.com/)** (National University of Singapore, Singapore) 383 | 384 | **[Kathleen Carley](https://s3d.cmu.edu/people/core-faculty/carley-kathleen.html)** (Carnegie Mellon University, USA) 385 | 386 | **[Ken Benoit](https://kenbenoit.net/)** (Singapore Management University, Singapore) 387 | 388 | **[Libby Hemphill](http://www.libbyh.com/)** (University of Michigan, USA) 389 | 390 | **[Michael Alvarez](https://www.rmichaelalvarez.com/)** (California Institute of Technology, USA) 391 | 392 | **[Meicen Sun](https://ischool.illinois.edu/people/meicen-sun)** (University of Illinois Urbana-Champaign, USA) 393 | 394 | **[Naijia Liu](https://naijialiu.github.io/)** (Harvard University, USA) 395 | 396 | **[Sílvia Majó-Vázquez](https://silviamajo.com/about/)** (University of Oxford, UK) 397 | 398 | **[Sinan Aral](https://www.sinanaral.io/)** (Massachusetts Institute of Technology, USA) 399 | 400 | **[Yingdan Lu](https://yingdanlu.com/)** (Northwestern University, USA) 401 | 402 | **[Yuki Shiraito](https://shiraito.github.io/)** (University of Michigan, USA) 403 | 404 | # Psychology/Cognitive Science 405 | 406 | **[Brandon Batzloff](https://ischool.illinois.edu/people/brandon-batzloff)** (University of Illinois Urbana-Champaign, USA) 407 | 408 | **[Haiyan Wu/伍海燕](https://andlab-um.com)** (University of Macau, Macau) 409 | 410 | **[Joshua Tenenbaum](http://web.mit.edu/cocosci/josh.html)** (Massachusetts Institute of Technology, USA) 411 | 412 | **[Morten Christiansen](https://infosci.cornell.edu/content/christiansen)** (Cornell University, USA) 413 | 414 | **[Nick Haber](https://ed.stanford.edu/faculty/nhaber)** (Stanford University, USA) 415 | 416 | **[Rene Kizilcec](https://rene.kizilcec.com/)** (Cornell University, USA) 417 | 418 | **[Simon Dedeo](https://sites.santafe.edu/~simon/)** (Carnegie Mellon University, USA) 419 | 420 | **[Xiaopan Ding](https://www.nuschildlab.com/)** (National University of Singapore, Singapore) 421 | 422 | **[Yang Xu](https://www.cs.toronto.edu/~yangxu/)** (University of Toronto, Canada) 423 | 424 | # Science of Science 425 | 426 | **[Abdullah Almaatouq](https://amaatouq.io/)** (Massachusetts Institute of Technology, USA) 427 | 428 | **[Adam Jaffe](https://scholarworks.brandeis.edu/esploro/profile/adam_jaffe/overview?institution=01BRAND_INST)** (Brandeis University, USA) 429 | 430 | **[Albert-László Barabási](https://www.barabasilab.com/)** (Northeastern University, USA) 431 | 432 | **[Alexander Petersen](http://physics.bu.edu/~amp17/)** (University of California Merced, USA) 433 | 434 | **[An Zeng/曾安](https://sss.bnu.edu.cn/szdw/zzjs/js/8b4c96518e694080a5319f428abe045f.htm)** (Beijing Normal University, Mainland China) 435 | 436 | **[Bolun Zhang/张博伦](http://sociology.zju.edu.cn/index.php/Teacher/details.html?id=196&tid=19&sid=3)** (Zhejiang University, Mainland China) 437 | 438 | **[Benjamin Jones](https://www.kellogg.northwestern.edu/faculty/directory/jones_benjamin_f.aspx)** (Northwestern University, USA) 439 | 440 | **[Brian Uzzi](https://www.kellogg.northwestern.edu/faculty/uzzi/htm/)** (Northwestern University, USA) 441 | 442 | **[Bruce Weinberg](https://economics.osu.edu/people/weinberg.27)** (The Ohio State University, USA) 443 | 444 | **[Carl Bergstrom](http://carlbergstrom.com/)** (University of Washington, USA) 445 | 446 | **[Daniel McFarland](https://ed.stanford.edu/faculty/mcfarland)** (Stanford University, USA) 447 | 448 | **[Daniel Sarewitz](https://search.asu.edu/profile/694412)** (Arizona State University, USA) 449 | 450 | **[Dashun Wang](https://www.kellogg.northwestern.edu/faculty/directory/wang_dashun.aspx)** (Northwestern University, USA) 451 | 452 | **[Emőke-Ágnes Horvát](https://agneshorvat.soc.northwestern.edu/)** (Northwestern University, USA) 453 | 454 | **[Erin Leahey](https://sociology.arizona.edu/person/erin-leahey)** (The University of Arizona, USA) 455 | 456 | **[Fengli Xu/徐丰力](https://fenglixu.github.io/)** (Tsinghua University, Mainland China) 457 | 458 | **[Jodi Schneider](https://jodischneider.com/jodi.html)** (University of Illinois Urbana-Champaign, USA) 459 | 460 | **[Katy Börner](https://cns-iu.github.io/katy/)** (Indiana University Bloomington, USA) 461 | 462 | **[Lianghao Dai/戴良灏](http://sociology.zju.edu.cn/index.php/Teacher/details.html?id=95&tid=19&sid=3)** (Zhejiang University, Mainland China) 463 | 464 | **[Lingfei Wu](https://lingfeiwu.github.io/)** (University of Pittsburgh, USA) 465 | 466 | **[Linzhuo Li/李林倬](http://sociology.zju.edu.cn/index.php/Teacher/e_details.html?id=80&tid=19&sid=2)** (Zhejiang University, Mainland China) 467 | 468 | **[Ludo Waltman](https://www.universiteitleiden.nl/en/staffmembers/ludo-waltman/publications#tab-1)** (Leiden University, Netherlands) 469 | 470 | **[Matt Marx](https://dyson.cornell.edu/faculty-research/faculty/mtm83/)** (Cornell University, USA) 471 | 472 | **[Misha Teplitskiy](https://www.misha.mx/)** (University of Michigan, USA) 473 | 474 | **[Natalie Aviles](https://sociology.as.virginia.edu/people/natalie-aviles)** (University of Virginia, USA) 475 | 476 | **[James Evans](https://sociology.uchicago.edu/directory/James-A-Evans)** (University of Chicago, USA) 477 | 478 | **[Jevin West](https://www.jevinwest.org/)** (University of Washington, USA) 479 | 480 | **[Junming Huang](https://ccc.princeton.edu/people/junming-huang)** (Princeton University, USA) 481 | 482 | **[Roberta Sinatra](https://www.robertasinatra.com/)** (University of Copenhagen, Denmark) 483 | 484 | **[Santo Fortunato](https://www.santofortunato.net/)** (Indiana University Bloomington, USA) 485 | 486 | **[Staša Milojević](https://cgi.luddy.indiana.edu/~smilojev/?_gl=1*ntqnt4*_gcl_au*MTQ4OTY4MzMxMS4xNzI4NDgyMTIx*_ga*MTQwNzc2MTI3OC4xNzI4NDQyNTAx*_ga_61CH0D2DQW*MTcyODU2MzI1OS4zLjEuMTcyODU2MzY4OS41NS4wLjA.)** (Indiana University Bloomington, USA) 487 | 488 | **[Simine Vazire](https://www.simine.com/)** (University of Melbourne, Australia) 489 | 490 | **[Yian Yin](https://www.yianyin.net/)** (Cornell University, USA) 491 | 492 | **[YY Ahn](http://yongyeol.com/)** (Indiana University Bloomington, USA) 493 | 494 | # Social Movement 495 | 496 | **[Xiaoguang Fan/范晓光](https://person.zju.edu.cn/en/steve)** (Zhejiang University, Mainland China) 497 | 498 | **[Yucheng Liang/梁玉成](https://ssa.sysu.edu.cn/teacher/2468)** (Sun Yat-sen University, Mainland China) 499 | 500 | # Social Media/Communication 501 | 502 | **[Anastasia Bizyaeva](https://anastasiabzv.github.io/)** (Cornell University, USA) 503 | 504 | **[Atreyi Kankanhalli](https://www.comp.nus.edu.sg/disa/people/atreyi/)** (National University of Singapore, Singapore) 505 | 506 | **[Kokil Jaidka](https://discovery.nus.edu.sg/17291-kokil-jaidka/about)** (National University of Singapore, Singapore) 507 | 508 | **[Ji-Lung Hsieh](http://www.journalism.ntu.edu.tw/Journalism/fulltime-2.html)** (National Taiwan University, Taiwan) 509 | 510 | **[Ming-Yi Chang](https://www.soci.fju.edu.tw/teacher_detail.php?id=526)** (Fu Jen Catholic University, Taiwan) 511 | 512 | **[Natalie Pang](https://nataliepang.blog/welcome/aboutme/)** (National University of Singapore, Singapore) 513 | 514 | **[Shaohai Jiang](https://discovery.nus.edu.sg/10966)** (National University of Singapore, Singapore) 515 | 516 | **[Subhayan Mukerjee](https://discovery.nus.edu.sg/19113-subhayan-mukerjee)** (National University of Singapore, Singapore) 517 | 518 | **[Weiyu Zhang](https://discovery.nus.edu.sg/1768-weiyu-zhang)** (National University of Singapore, Singapore) 519 | 520 | **[Yuan Hsiao]( https://sociology.yale.edu/people/yuan-hsiao)** (Yale University, USA) 521 | 522 | ## Misinformation/Information Diffusion 523 | 524 | **[Damian Trilling](https://damiantrilling.net/en/)** (Vrije Universiteit Amsterdam, Netherlands) 525 | 526 | **[Damon Centola](https://www.asc.upenn.edu/people/faculty/damon-centola-phd)** (University of Pennsylvania, USA) 527 | 528 | **[Daniel Romero](http://www.dromero.org/)** (University of Michigan, USA) 529 | 530 | **[David Lazer](https://www.lazerlab.net/people/david-lazer)** (Northeastern University, USA) 531 | 532 | **[Duncan Watts](https://duncanjwatts.com/)** (University of Pennsylvania, USA) 533 | 534 | **[Emma Spiro](https://emmaspiro.github.io/)** (University of Washington, USA) 535 | 536 | **[Helen Margetts](https://www.oii.ox.ac.uk/people/profiles/helen-margetts/)** (University of Oxford, UK) 537 | 538 | **[Janet Pierrehumbert](http://www.phon.ox.ac.uk/jpierrehumbert/)** (University of Oxford, UK) 539 | 540 | **[Jevin West](https://www.jevinwest.org/)** (University of Washington, USA) 541 | 542 | **[Ji-Lung Hsieh](http://www.journalism.ntu.edu.tw/Journalism/fulltime-2.html)** (National Taiwan University, Taiwan) 543 | 544 | **[Jing Zeng](https://www.ikmz.uzh.ch/en/research/divisions/computational-social-and-communication-science/team/jing-zeng.html)** (University of Zurich, Switzerland) 545 | 546 | **[Jon Kleinberg](https://www.cs.cornell.edu/home/kleinber/)** (Cornell University, USA) 547 | 548 | **[Jure Leskovec](https://cs.stanford.edu/people/jure/)** (Stanford University, USA) 549 | 550 | **[Kristina Lerman](https://www.isi.edu/people-lerman/)** (University of Southern California, USA) 551 | 552 | **[Lada Adamic](http://www.ladamic.com/)** (Meta, USA) 553 | 554 | **[Martin Saveski](http://martinsaveski.com/)** (University of Washington, USA) 555 | 556 | **[Matthew Bui](https://www.si.umich.edu/people/matthew-bui)** (University of Michigan, USA) 557 | 558 | **[Matt Groh](https://mattgroh.com/)** (Northwestern University, USA) 559 | 560 | **[Michael Alvarez](https://www.rmichaelalvarez.com/)** (California Institute of Technology, USA) 561 | 562 | **[Sandra González-Bailón](https://sandragonzalezbailon.net/)** (University of Pennsylvania, USA) 563 | 564 | **[Sílvia Majó-Vázquez](https://silviamajo.com/about/)** (University of Oxford, UK) 565 | 566 | **[Sinan Aral](https://www.sinanaral.io/)** (Massachusetts Institute of Technology, USA) 567 | 568 | **[Yingdan Lu](https://yingdanlu.com/)** (Northwestern University, USA) 569 | 570 | ## (Online) Community and Behavior 571 | 572 | **[Atreyi Kankanhalli](https://www.comp.nus.edu.sg/disa/people/atreyi/)** (National University of Singapore, Singapore) 573 | 574 | **[Bogdan Vasilescu](https://bvasiles.github.io/)** (Carnegie Mellon University, USA) 575 | 576 | **[Ceren Budak](http://cbudak.com/index.html)** (University of Michigan, USA) 577 | 578 | **[Cuihua Shen](https://communication.ucdavis.edu/people/cuihua-shen)** (University of California, Davis, USA) 579 | 580 | **[Daniel Romero](http://www.dromero.org/)** (University of Michigan, USA) 581 | 582 | **[Yi-Chieh Lee](https://www.yclee.net/)** (National University of Singapore, Singapore) 583 | 584 | **[Ingmar Weber](https://ingmarweber.de/)** (Saarland University, Germany) 585 | 586 | **[LEE Jaemin](https://www.soc.cuhk.edu.hk/profile/lee-jaemin/)** (Chinese University of Hong Kong, Hongkong) 587 | 588 | **[Martin Saveski](http://martinsaveski.com/)** (University of Washington, USA) 589 | 590 | **[Mu-Jung Cho](https://www.rchss.sinica.edu.tw/members/4a08ea44-a61a-4425-acc5-95fe06e67a32?page_id=45)** (Academia Sinica, Taiwan) 591 | 592 | **[Nathan Matias](https://natematias.com/)** (Cornell University, USA) 593 | 594 | **[Jeff Hancock](https://sml.stanford.edu/people/jeff-hancock)** (Stanford University, USA) 595 | 596 | **[Prateek Bansal](https://cde.nus.edu.sg/cee/staff/prateek-bansal/)** (National University of Singapore, Singapore) 597 | 598 | **[Suzy Moat](https://www.wbs.ac.uk/about/person/suzy-moat/)** (Warwick Business School, UK) 599 | 600 | **[Yun Huang](https://yunhuang.web.illinois.edu/)** (University of Illinois Urbana-Champaign, USA) 601 | 602 | # Technology and Society 603 | 604 | **[Angelina Wang](https://angelina-wang.github.io/)** (Cornell University, USA) 605 | 606 | **[Renwen Zhang](https://renwenzhang.com/)** (National University of Singapore, Singapore) 607 | 608 | **[Teerawichitchainan Bussarawan](https://discovery.nus.edu.sg/14760-teerawichitchainan-bussarawan)** (National University of Singapore, Singapore) --------------------------------------------------------------------------------