This file is used to tidy up the dataframes of political scientists and sociologists, by combining the two into a single dataframe with unique IDs and neat first and last names.
fpackage.check
: Check if packages are installed (and install if not) in R (source).fsave
: Save to processed data in repositoryfload
: To load the files back after an fsave
fshowdf
: To print objects (tibbles / data.frame) nicely on screen in .rmdrm(list = ls())
fpackage.check <- function(packages) {
lapply(packages, FUN = function(x) {
if (!require(x, character.only = TRUE)) {
install.packages(x, dependencies = TRUE)
library(x, character.only = TRUE)
}
})
}
fsave <- function(x, file = NULL, location = "./data/processed/") {
ifelse(!dir.exists("data"), dir.create("data"), FALSE)
ifelse(!dir.exists("data/processed"), dir.create("data/processed"), FALSE)
if (is.null(file))
file = deparse(substitute(x))
datename <- substr(gsub("[:-]", "", Sys.time()), 1, 8)
totalname <- paste(location, datename, file, ".rda", sep = "")
save(x, file = totalname) #need to fix if file is reloaded as input name, not as x.
}
fload <- function(filename) {
load(filename)
get(ls()[ls() != "filename"])
}
fshowdf <- function(x, ...) {
knitr::kable(x, digits = 2, "html", ...) %>%
kableExtra::kable_styling(bootstrap_options = c("striped", "hover")) %>%
kableExtra::scroll_box(width = "100%", height = "300px")
}
ids
: package used to randomly generate unique idsstringr
& stringi
: for string manipulationspackages = c("ids", "stringr", "stringi")
fpackage.check(packages)
We already saved the data from our webscrape in two files. Please download these files:
Save file in correct directory: ‘./data’.
soc <- read.csv("./data/names_soc.csv", sep = ";", encoding = "UTF-8") # encoding to maintain diacritics
pol <- read.csv("./data/names_pol.csv", sep = ";", encoding = "UTF-8")
We start by cleaning up the .csv files a bit. Sometimes transforming .csv files to an R format creates some odd things. In this case, for example, the first column name appears to be off.
Furthermore, dealing with files like this requires a little bit of ‘regular expression magic’. Regular expressions help you to transform text (string) data, by calling either to specific strings (e.g. the word “dog”), or for certain generalizable string patterns (e.g. a string consisting of exactly three lowercase letters).
Everything I have learned about string manipulation basically stems from this webpage. Especially when using web-scraped data, you will encounter raw text data pretty regularly, so knowing about regular expressions will probably come in handy.
# removing the 'specialisatie' column from the political science data frame because it is poorly
# filled and does not exist in sociology
pol <- subset(pol, select = -Specialisatie)
# making the column names easier to call
colnames(pol) <- c("name", "uni", "email", "position")
colnames(soc) <- c("name", "uni", "email", "position")
# removing empty rows
soc <- soc[soc$name != "", ]
pol <- pol[pol$name != "", ]
# combining the two dataframes in one, but first adding a discipline identifier for both
soc$discipline <- rep("sociology", nrow(soc))
pol$discipline <- rep("political science", nrow(pol))
df <- rbind.data.frame(soc, pol)
# removing double spaces
df$name <- gsub("\\s+", " ", df$name) # '\\s' indicates a whitespace, so '\\s+' refers to 2 or more whitespaces
df$name <- trimws(df$name)
# adding a year variable - in case multiple years are used, you should keep track of this.
df$year <- rep(2022, nrow(df))
# some people have double affiliations. These are stored as 'uni1/uni2' in the 'uni' column. We now
# want to create two separate variables for each affiliation.
df$affil1 <- df$uni # first we create a new variable for the 1st affiliation, which is a copy of the original 'uni' variable
df$affil1 <- str_remove(df$affil1, "\\/.*$") # remove the 2nd affiliation from the column of the first affiliation
df$affil2 <- str_remove(df$uni, "^.*\\/") # extract everything after '/' to get the 2nd affiliation
df$affil2 <- str_remove(df$affil2, df$affil1)
# translating the positions to English - since the position string is free form, we have to extract
# the relevant info from there. we start by the most senior positions, because some people list
# multiple and we only want to extract the most senior research position they occupy
df$position <- tolower(df$position)
df$position <- ifelse(as.numeric(str_detect(df$position, "hoogleraar")) == 1, "full_prof", df$position)
df$position <- ifelse(as.numeric(str_detect(df$position, "hoofddocent")) == 1, "associate_prof", df$position)
df$position <- ifelse(as.numeric(str_detect(df$position, "universitair docent")) == 1, "assistant_prof",
df$position)
df$position <- ifelse(as.numeric(str_detect(df$position, "postdoc")) == 1, "postdoc", df$position)
df$position <- ifelse(as.numeric(str_detect(df$position, "(phd)|(doctoral)|(promovendus)")) == 1, "phd",
df$position)
# all other positions are set to other - we do this because the position form on the website is a
# free text form, so the entries here are not standardized. non-research positions are not really
# relevant for this analysis, because these people do not likely have very many co-authors.
df$position <- ifelse(!df$position %in% c("full_prof", "associate_prof", "assistant_prof", "postdoc",
"phd"), "other", df$position)
fshowdf(df)
name | uni | position | discipline | year | affil1 | affil2 | ||
---|---|---|---|---|---|---|---|---|
1 | Ece Arat | UU | e.arat@uu.nl | phd | sociology | 2022 | UU | |
2 | Marcel Van Assen | UU | m.a.l.m.vanassen@uu.nl | full_prof | sociology | 2022 | UU | |
3 | Weverthon Barbosa Machado | UU | w.barbosamachado@uu.nl | other | sociology | 2022 | UU | |
4 | Vardan Barsegyan | UU | v.m.barsegyan@uu.nl | other | sociology | 2022 | UU | |
5 | Rutger Blom | UU | g.d.blom@uu.nl | other | sociology | 2022 | UU | |
6 | Lute Bos | UU | l.bos@uu.nl | other | sociology | 2022 | UU | |
7 | Anne Brons | UU | m.d.brons@uu.nl | other | sociology | 2022 | UU | |
8 | Janine De Bruijn | UU | j.c.m.debruijn@uu.nl | other | sociology | 2022 | UU | |
9 | Vincent Buskens | UU | v.buskens@uu.nl | full_prof | sociology | 2022 | UU | |
10 | Tobias Cinjee | UU | t.cinjee@uu.nl | other | sociology | 2022 | UU | |
11 | Rense Corten | UU | r.corten@uu.nl | associate_prof | sociology | 2022 | UU | |
12 | Marleen Damman | UU | m.damman@uu.nl | assistant_prof | sociology | 2022 | UU | |
13 | Lucas Drouhot | UU | l.g.m.drouhot@uu.nl | assistant_prof | sociology | 2022 | UU | |
14 | Christian Fang | UU | c.fang@uu.nl | phd | sociology | 2022 | UU | |
15 | Paula Hoffmann | UU | p.m.hoffmann@uu.nl | phd | sociology | 2022 | UU | |
16 | Eva Jaspers | UU | e.jaspers@uu.nl | associate_prof | sociology | 2022 | UU | |
17 | Rita Jiao | UU | r.jiao@uu.nl | phd | sociology | 2022 | UU | |
18 | Matthias Kern | UU | matthiasrobert.kern@uni.lu | other | sociology | 2022 | UU | |
19 | Antonie Knigge | UU | a.knigge@uu.nl | assistant_prof | sociology | 2022 | UU | |
20 | David De Kort | UU | d.dekort@uu.nl | other | sociology | 2022 | UU | |
21 | Lea Kroner | UU | phd | sociology | 2022 | UU | ||
22 | Mathijs Kros | UU | m.kros@uu.nl | assistant_prof | sociology | 2022 | UU | |
23 | Wouter Kwint | UU | other | sociology | 2022 | UU | ||
24 | Marco Van Leeuwen | UU | m.h.d.vanleeuwen@uu.nl | full_prof | sociology | 2022 | UU | |
25 | Marjan Van Lier | UU | m.j.l.vanlier@uu.nl | other | sociology | 2022 | UU | |
26 | Tanja Van Der Lippe | UU | t.vanderlippe@uu.nl | full_prof | sociology | 2022 | UU | |
27 | Ineke Maas | UU/UvA | i.maas@uu.nl | associate_prof | sociology | 2022 | UU | UvA |
28 | Ana Macanovic | UU | a.macanovic@uu.nl | phd | sociology | 2022 | UU | |
29 | Luuk Mandemakers | UU | l.mandemakers@uu.nl | other | sociology | 2022 | UU | |
30 | Thomas Martens | UU | t.a.m.martens@uu.nl | other | sociology | 2022 | UU | |
31 | Deni Mazrekaj | UU | d.mazrekaj@uu.nl | assistant_prof | sociology | 2022 | UU | |
32 | Christof Nagel | UU | c.r.e.nagel@uu.nl | other | sociology | 2022 | UU | |
33 | Huyen Nguyen | UU | t.t.h.nguyen@uu.nl | other | sociology | 2022 | UU | |
34 | Amy Nivette | UU | a.e.nivette@uu.nl | associate_prof | sociology | 2022 | UU | |
35 | Amina Op De Weegh | UU | l.a.g.opdeweegh1@uu.nl | phd | sociology | 2022 | UU | |
36 | Kasper Otten | UU | k.d.otten@uu.nl | phd | sociology | 2022 | UU | |
37 | Jiamin Ou | UU | assistant_prof | sociology | 2022 | UU | ||
38 | Paulina Pankowska | UU | p.k.pankowska@uu.nl | assistant_prof | sociology | 2022 | UU | |
39 | Anne-Rigt Poortman | UU | a.poortman@uu.nl | full_prof | sociology | 2022 | UU | |
40 | Wojtek Przepiorka | UU | w.przepiorka@uu.nl | associate_prof | sociology | 2022 | UU | |
41 | Anne Van Der Put | UU | a.c.vanderput@uu.nl | phd | sociology | 2022 | UU | |
42 | Werner Raub | UU | w.raub@uu.nl | full_prof | sociology | 2022 | UU | |
43 | Stijn Ruiter | UU | s.ruiter@uu.nl | full_prof | sociology | 2022 | UU | |
44 | Philipp Schneider | UU | p.t.schneider@uu.nl | phd | sociology | 2022 | UU | |
45 | Jan-Willem Simons | UU | j.g.simons@uu.nl | phd | sociology | 2022 | UU | |
46 | Sanjana Singh | UU | s.singh@uu.nl | phd | sociology | 2022 | UU | |
47 | Jos Slabbekoorn | UU | j.slabbekoorn@uu.nl | phd | sociology | 2022 | UU | |
48 | Tali Spiegel | UU | t.spiegel@uu.nl | assistant_prof | sociology | 2022 | UU | |
49 | Kim Stienstra | UU | l.k.stienstra@uu.nl | phd | sociology | 2022 | UU | |
50 | Frank Van Tubergen | UU | f.vantubergen@uu.nl | full_prof | sociology | 2022 | UU | |
51 | Isabelle Van Der Vegt | UU | i.w.j.vandervegt@uu.nl | assistant_prof | sociology | 2022 | UU | |
52 | Cok Vrooman | UU | j.c.vrooman@uu.nl | full_prof | sociology | 2022 | UU | |
53 | Linde Vromans | UU | L.E.M.Vromans@tilburguniversity.edu | other | sociology | 2022 | UU | |
54 | Jeroen Weesie | UU | j.weesie@uu.nl | associate_prof | sociology | 2022 | UU | |
55 | Kevin Wittenberg | UU | k.wittenberg@uu.nl | phd | sociology | 2022 | UU | |
56 | Nick Wuestenenk | UU | n.h.wuestenenk@uu.nl | phd | sociology | 2022 | UU | |
57 | Marjolein Bredie | UU | Ondersteunend personeel, dus niet verder uitgewerkt | other | sociology | 2022 | UU | |
58 | Sofie Van De Calseijde | UU | other | sociology | 2022 | UU | ||
59 | Annemarie Houkes | UU | other | sociology | 2022 | UU | ||
60 | Ellen Janssen | UU | other | sociology | 2022 | UU | ||
61 | Pim Sangers | UU | other | sociology | 2022 | UU | ||
62 | Aleida Sjardijn | UU | other | sociology | 2022 | UU | ||
64 | Ronald Batenburg | RU | ronald.batenburg@ru.nl | full_prof | sociology | 2022 | RU | |
65 | Katia Begall | RU | katia.begall@ru.nl | assistant_prof | sociology | 2022 | RU | |
66 | Hidde Bekhuis | RU | hidde.bekhuis@ru.nl | other | sociology | 2022 | RU | |
67 | Lonneke van den Berg | RU | lonneke.vandenberg@ru.nl | postdoc | sociology | 2022 | RU | |
68 | Lieselotte Blommaert | RU | lieselotte.blommaert@ru.nl | assistant_prof | sociology | 2022 | RU | |
69 | Rob Eisinga | RU | rob.eisinga@ru.nl | assistant_prof | sociology | 2022 | RU | |
70 | Maurice Gesthuizen | RU | maurice.gesthuizen@ru.nl | assistant_prof | sociology | 2022 | RU | |
71 | Nella Geurts | RU | nella.geurts@ru.nl | postdoc | sociology | 2022 | RU | |
72 | Saskia Glas | RU | saskia.glas@ru.nl | assistant_prof | sociology | 2022 | RU | |
73 | Margriet van Hek | RU | margriet.vanhek@ru.nl | assistant_prof | sociology | 2022 | RU | |
74 | Remco Hoekman | RU | remco.hoekman@ru.nl | other | sociology | 2022 | RU | |
75 | Bas Hofstra | RU | bas.hofstra@ru.nl | assistant_prof | sociology | 2022 | RU | |
76 | Judith Koops | RU | judith.koops@ru.nl | postdoc | sociology | 2022 | RU | |
77 | Gerbert Kraaykamp | RU | gerbert.kraaykamp@ru.nl | full_prof | sociology | 2022 | RU | |
78 | Roza Meuleman | RU | roza.meuleman@ru.nl | assistant_prof | sociology | 2022 | RU | |
79 | Michael Savelkoul | RU | michael.savelkoul@ru.nl | assistant_prof | sociology | 2022 | RU | |
80 | Peer Scheepers | RU | peer.scheepers@ru.nl | full_prof | sociology | 2022 | RU | |
81 | Niels Spierings | RU | niels.spierings@ru.nl | associate_prof | sociology | 2022 | RU | |
82 | Jochem Tolsma | RU/RUG | jochem.tolsma@ru.nl | full_prof | sociology | 2022 | RU | G |
83 | Ellen Verbakel | RU | ellen.verbakel@ru.nl | full_prof | sociology | 2022 | RU | |
84 | Mark Visser | RU | mark.visser@ru.nl | assistant_prof | sociology | 2022 | RU | |
85 | Maarten Wolbers | RU | maarten.wolbers@ru.nl | full_prof | sociology | 2022 | RU | |
86 | Carlijn Bussemakers | RU | carlijn.bussemakers@ru.nl | phd | sociology | 2022 | RU | |
87 | Rob Franken | RU | phd | sociology | 2022 | RU | ||
88 | Mustafa Firat | RU | mustafa.firat@ru.nl | phd | sociology | 2022 | RU | |
89 | Aysegül Güneyli | RU | phd | sociology | 2022 | RU | ||
90 | Inge Hendriks | RU | inge.hendriks@ru.nl | phd | sociology | 2022 | RU | |
91 | Thijmen Jeroense | RU | thijmen.jeroense@ru.nl | phd | sociology | 2022 | RU | |
92 | Rachel Kollar | RU | phd | sociology | 2022 | RU | ||
93 | Nik Linders | RU | nik.linders@ru.nl | phd | sociology | 2022 | RU | |
94 | Renae Loh | RU | renae.loh@ru.nl | phd | sociology | 2022 | RU | |
95 | Maikel Meijeren | RU | maikel.meijeren@ru.nl | phd | sociology | 2022 | RU | |
96 | Carly van Mensvoort | RU | carly.vanmensvoort@ru.nl | phd | sociology | 2022 | RU | |
97 | Anne Maaike Mulders | RU | annemaaike.mulders@ru.nl | phd | sociology | 2022 | RU | |
98 | Katrin Müller | RU | katrin.müller@ru.nl | phd | sociology | 2022 | RU | |
99 | Klara Raiber | RU | klara.raiber@ru.nl | phd | sociology | 2022 | RU | |
100 | Marlou Ramaekers | RU | marlou.ramaekers@ru.nl | phd | sociology | 2022 | RU | |
101 | Sara Wiertsema | RU | phd | sociology | 2022 | RU | ||
102 | Janos Betko | RU | janos.betko@ru.nl | phd | sociology | 2022 | RU | |
103 | Jansje van Middendorp | RU | jansje.vanmiddendorp@ru.nl | phd | sociology | 2022 | RU | |
104 | Elize Vis | RU | phd | sociology | 2022 | RU | ||
105 | Tijmen Weber | RU | tijmen.weber@ru.nl | phd | sociology | 2022 | RU | |
106 | Elissa El Khawli | RU | other | sociology | 2022 | RU | ||
107 | Carl Sterkens | RU | carl.sterkens@ru.nl | other | sociology | 2022 | RU | |
108 | Paul Vermeer | RU | paul.vermeer@ru.nl | other | sociology | 2022 | RU | |
109 | Malou Grubben | RU | other | sociology | 2022 | RU | ||
111 | Danelien van Aalst | RUG | d.a.e.van.aalst@rug.nl | phd | sociology | 2022 | RUG | |
112 | Gabriël Anthonio | RUG | g.g.anthonio@rug.nl | full_prof | sociology | 2022 | RUG | |
113 | Dieko Bakker | RUG | d.m.bakker@rug.nl | postdoc | sociology | 2022 | RUG | |
114 | Wike Been | RUG | wike.been@rug.nl | assistant_prof | sociology | 2022 | RUG | |
115 | Sanne Berends | RUG | s.m.berends@rug.nl | other | sociology | 2022 | RUG | |
116 | Edgar de Bie | RUG | e.f.a.e.de.bie@rug.nl | other | sociology | 2022 | RUG | |
117 | A.B. Bieleman | RUG | a.b.bieleman@rug.nl | other | sociology | 2022 | RUG | |
118 | Basak Bilecen | RUG | b.bilecen@rug.nl | associate_prof | sociology | 2022 | RUG | |
119 | Rie Bosman | RUG | m.h.bosman@rug.nl | other | sociology | 2022 | RUG | |
120 | Daniel Robert Cowen | RUG | d.r.cowen@rug.nl | phd | sociology | 2022 | RUG | |
121 | M.M Cuperus | RUG | m.m.cuperus@rug.nl | other | sociology | 2022 | RUG | |
122 | Jacob Dijkstra | RUG | j.dijkstra@rug.nl | associate_prof | sociology | 2022 | RUG | |
123 | Jan Kornelis Dijkstra | RUG | jan.dijkstra@rug.nl | associate_prof | sociology | 2022 | RUG | |
124 | Z Dong | RUG | z.dong@rug.nl | phd | sociology | 2022 | RUG | |
125 | Marijtje van Duijn | RUG | m.a.j.van.duijn@rug.nl | full_prof | sociology | 2022 | RUG | |
126 | Thomas Feliciani | RUG | t.feliciani@rug.nl | phd | sociology | 2022 | RUG | |
127 | Andreas Flache | RUG | a.flache@rug.nl | full_prof | sociology | 2022 | RUG | |
128 | Vincenz Frey | RUG | v.c.frey@rug.nl | assistant_prof | sociology | 2022 | RUG | |
129 | Anne Gauthier | RUG | a.m.h.gauthier@rug.nl | other | sociology | 2022 | RUG | |
130 | Marieke van Gerner-Haan | RUG | marieke.haan@rug.nl | assistant_prof | sociology | 2022 | RUG | |
131 | Francesca Giardini | RUG | f.giardini@rug.nl | associate_prof | sociology | 2022 | RUG | |
132 | Arie Glebbeek | RUG | a.c.glebbeek@rug.nl | associate_prof | sociology | 2022 | RUG | |
133 | Thecla Goossens | RUG | t.l.l.goossens@rug.nl | phd | sociology | 2022 | RUG | |
134 | Rolf Granholm | RUG | r.l.granholm@rug.nl | phd | sociology | 2022 | RUG | |
135 | Minke Hajer | Universita degli studi di Milano | m.h.j.hajer@rug.nl | postdoc | sociology | 2022 | Universita degli studi di Milano | |
136 | Liesbet Heyse | RUG | l.heyse@rug.nl | associate_prof | sociology | 2022 | RUG | |
137 | Johan Hiemstra | RUG | j.h.j.hiemstra@rug.nl | phd | sociology | 2022 | RUG | |
138 | Anja Holwerda | RUG | a.holwerda@rug.nl | other | sociology | 2022 | RUG | |
139 | Mark Huisman | RUG | j.m.e.huisman@rug.nl | assistant_prof | sociology | 2022 | RUG | |
140 | Gijs Huitsing | RUG | g.e.huitsing@rug.nl | assistant_prof | sociology | 2022 | RUG | |
141 | Aliona Ignatieva | RUG | a.ignatieva@rug.nl | phd | sociology | 2022 | RUG | |
142 | Danielle Jansen | RUG | d.e.m.c.jansen@umcg.nl | associate_prof | sociology | 2022 | RUG | |
143 | M. Kalma | RUG | m.kalma@rug.nl | other | sociology | 2022 | RUG | |
144 | Matthijs Kalmijn | RUG | m.kalmijn@rug.nl | full_prof | sociology | 2022 | RUG | |
145 | D. Karaagac | RUG | d.karaagac@rug.nl | phd | sociology | 2022 | RUG | |
146 | Rowan ten Kate | RUG | r.l.f.ten.kate@rug.nl | phd | sociology | 2022 | RUG | |
147 | Laura Keesman | RUG | l.d.keesman@rug.nl | assistant_prof | sociology | 2022 | RUG | |
148 | Marijn Keijzer | RUG | m.a.keijzer@rug.nl | phd | sociology | 2022 | RUG | |
149 | Sanne Kellij | RUG | s.kellij@rug.nl | phd | sociology | 2022 | RUG | |
150 | Wouter Kiekens | RUG | w.j.kiekens@rug.nl | phd | sociology | 2022 | RUG | |
151 | Ronald Kielman | RUG | r.e.kielman@rug.nl | other | sociology | 2022 | RUG | |
152 | Anne Kuschel | RUG | a.kuschel@rug.nl | phd | sociology | 2022 | RUG | |
153 | Lydia Laninga-Wijnen | RUG | a.m.laninga-wijnen@rug.nl | postdoc | sociology | 2022 | RUG | |
154 | Siegwart Lindenberg | RUG/Tilburg | s.m.lindenberg@rug.nl | full_prof | sociology | 2022 | RUG | Tilburg |
155 | Zoltán Lippényi | RUG | z.lippenyi@rug.nl | assistant_prof | sociology | 2022 | RUG | |
156 | Jing Liu | RUG | j.liu@rug.nl | phd | sociology | 2022 | RUG | |
157 | S. Liu | RUG | s.liu@rug.nl | other | sociology | 2022 | RUG | |
158 | Sofie Lorijn | RUG | s.j.lorijn@rug.nl | phd | sociology | 2022 | RUG | |
159 | Alla Loseva | RUG | a.loseva@rug.nl | phd | sociology | 2022 | RUG | |
160 | R. Lu | RUG | r.lu@rug.nl | other | sociology | 2022 | RUG | |
161 | Marcel Lubbers | RUG/RU | marcel.lubbers@rug.nl | full_prof | sociology | 2022 | RUG | RU |
162 | Eleonora Marucci | RUG | e.m.marucci@rug.nl | phd | sociology | 2022 | RUG | |
163 | Carlos de Matos Fernandes | RUG | c.a.de.matos.fernandes@rug.nl | phd | sociology | 2022 | RUG | |
164 | Dennis Nientimp | RUG | d.nientimp@rug.nl | phd | sociology | 2022 | RUG | |
165 | Jaap Nieuwenhuis | RUG | j.g.nieuwenhuis@rug.nl | assistant_prof | sociology | 2022 | RUG | |
166 | Xingna Qin | RUG | xingna.qin@rug.nl | phd | sociology | 2022 | RUG | |
167 | Julian Rengers | RUG | j.m.rengers@rug.nl | phd | sociology | 2022 | RUG | |
168 | Chaïm la Roi | RUG/Universiteit Stockholm | chaim.la.roi@rug.nl | other | sociology | 2022 | RUG | Universiteit Stockholm |
169 | Menno Rol | RUG | m.e.g.m.rol@rug.nl | other | sociology | 2022 | RUG | |
170 | Marina Roos | RUG | m.roos@rug.nl | other | sociology | 2022 | RUG | |
171 | Sayoni Santara | RUG | s.santara@rug.nl | phd | sociology | 2022 | RUG | |
172 | Elizaveta Sivak | RUG | e.sivak@rug.nl | phd | sociology | 2022 | RUG | |
173 | L Slot | RUG | l.slot@rug.nl | phd | sociology | 2022 | RUG | |
174 | Rita Smaniotto | RUG | r.c.smaniotto@rug.nl | other | sociology | 2022 | RUG | |
175 | Tom Snijders | RUG | t.a.b.snijders@rug.nl | full_prof | sociology | 2022 | RUG | |
176 | E.R. Spruijt | RUG | e.r.spruijt@rug.nl | phd | sociology | 2022 | RUG | |
177 | Marie Stadel | RUG | m.stadel@rug.nl | phd | sociology | 2022 | RUG | |
178 | Christian Steglich | RUG/University Linköping | c.e.g.steglich@rug.nl | associate_prof | sociology | 2022 | RUG | University Linköping |
179 | Jonas Stein | RUG | j.d.stein@rug.nl | phd | sociology | 2022 | RUG | |
180 | Nardi Steverink | RUG | b.j.m.steverink@rug.nl | full_prof | sociology | 2022 | RUG | |
181 | Gert Stulp | RUG | g.stulp@rug.nl | associate_prof | sociology | 2022 | RUG | |
182 | Tanzhe Tang | RUG/TU Delft | t.tang@rug.nl | phd | sociology | 2022 | RUG | TU Delft |
183 | Thomas Teekens | RUG | t.p.teekens@rug.nl | phd | sociology | 2022 | RUG | |
184 | Donald van Tol | RUG | d.g.van.tol@umcg.nl | assistant_prof | sociology | 2022 | RUG | |
185 | Chlóe Tolmatcheff | RUG/University of Turku | c.tolmatcheff@rug.nl | postdoc | sociology | 2022 | RUG | University of Turku |
186 | Daniela Torres Alatorre | RUG | d.m.torres.alatorre@rug.nl | other | sociology | 2022 | RUG | |
187 | René Veenstra | RUG | d.r.veenstra@rug.nl | full_prof | sociology | 2022 | RUG | |
188 | Amber Vellinga-Dings | RUG | a.d.vellinga-dings@rug.nl | phd | sociology | 2022 | RUG | |
189 | A.J. Venema | RUG | a.j.venema@rug.nl | other | sociology | 2022 | RUG | |
190 | Simon Venema | RUG | s.d.venema@rug.nl | phd | sociology | 2022 | RUG | |
191 | Annick Vlieg | RUG | annick.vlieg@rug.nl | other | sociology | 2022 | RUG | |
192 | Elsje de Vries | RUG | elsje.de.vries@rug.nl | phd | sociology | 2022 | RUG | |
193 | Marieke van der Wal | RUG | marieke.van.der.wal@rug.nl | other | sociology | 2022 | RUG | |
194 | Rudi Wielers | RUG | r.j.j.wielers@rug.nl | associate_prof | sociology | 2022 | RUG | |
195 | Sofie Wiersma | RUG | s.wiersma@rug.nl | phd | sociology | 2022 | RUG | |
196 | Fenna van der Wijk | RUG | a.f.van.der.wijk@rug.nl | phd | sociology | 2022 | RUG | |
197 | Rafael Wittek | RUG | r.p.m.wittek@rug.nl | full_prof | sociology | 2022 | RUG | |
198 | Xinyue Wu | RUG | celeste.wu@rug.nl | phd | sociology | 2022 | RUG | |
199 | Xiao Xu | RUG | xiao.xu@rug.nl | phd | sociology | 2022 | RUG | |
200 | Stephan Zaretckii | RUG | s.zaretckii@rug.nl | phd | sociology | 2022 | RUG | |
201 | Theo van der Zee | RUG | t.g.van.der.zee@rug.nl | other | sociology | 2022 | RUG | |
202 | Tibor Zingora | RUG | t.zingora@rug.nl | postdoc | sociology | 2022 | RUG | |
204 | Josien Arts | UvA | j.arts@uva.nl | assistant_prof | sociology | 2022 | UvA | |
205 | Carlijn van Baak | UvA | j.c.vanbaak@uva.nl | phd | sociology | 2022 | UvA | |
206 | Evelyne Baillergeau | UvA | e.baillergeau@uva.nl | other | sociology | 2022 | UvA | |
207 | Nienke Boesveldt | UvA | n.f.boesveldt@uva.nl | other | sociology | 2022 | UvA | |
208 | Thijs Bol | UvA | t.bol@uva.nl | associate_prof | sociology | 2022 | UvA | |
209 | David Bos | UvA | d.j.bos@uva.nl | other | sociology | 2022 | UvA | |
210 | Sarah Bracke | UvA | s.a.e.bracke@uva.nl | full_prof | sociology | 2022 | UvA | |
211 | Patrick Brown | UvA | p.r.brown@uva.nl | associate_prof | sociology | 2022 | UvA | |
212 | Jeroen Bruggeman | UvA | j.p.bruggeman@uva.nl | associate_prof | sociology | 2022 | UvA | |
213 | Christian Bröer | UvA | c.broer@uva.nl | associate_prof | sociology | 2022 | UvA | |
214 | Kalima Carrigan Chavez | UvA | k.carriganchavez@uva.nl | phd | sociology | 2022 | UvA | |
215 | Liubov Chernysheva | UvA | l.chernysheva@uva.nl | phd | sociology | 2022 | UvA | |
216 | Siegnella Concincion | UvA | s.j.l.conincion@uva.nl | phd | sociology | 2022 | UvA | |
217 | Rineke van Daalen | UvA | r.m.vandaalen@uva.nl | other | sociology | 2022 | UvA | |
218 | Johan de Deken | UvA | j.j.dedeken@uva.nl | other | sociology | 2022 | UvA | |
219 | Kobe de Keere | UvA | k.dekeere@uva.nl | assistant_prof | sociology | 2022 | UvA | |
220 | Sherilyn Deen | UvA | s.r.j.deen@uva.nl | phd | sociology | 2022 | UvA | |
221 | Jan Willen Duyvendak | UvA | w.g.j.duyvendak@uva.nl | full_prof | sociology | 2022 | UvA | |
222 | Fenella Fleischmann | UvA | f.fleischmann@uva.nl | full_prof | sociology | 2022 | UvA | |
223 | Rébecca Franco | UvA | r.s.franco@uva.nl | postdoc | sociology | 2022 | UvA | |
224 | Andrea Friedmann Rozenbaum | UvA | a.friedmannrozenbaum@uva.nl | phd | sociology | 2022 | UvA | |
225 | Ruben van Gaalen | UvA | i.a.vangaalen@uva.nl | full_prof | sociology | 2022 | UvA | |
226 | Sara Geven | UvA | s.a.j.geven@uva.nl | assistant_prof | sociology | 2022 | UvA | |
227 | Hein de Haas | UvA | h.g.dehaas@uva.nl | full_prof | sociology | 2022 | UvA | |
228 | Bart van Heerikhuizen | UvA | b.vanheerikhuizen@uva.nl | other | sociology | 2022 | UvA | |
229 | Margriet van Heesch | UvA | m.a.vanheesch@uva.nl | other | sociology | 2022 | UvA | |
230 | Twan Huijsmans | UvA | t.m.huijsmans@uva.nl | phd | sociology | 2022 | UvA | |
231 | Chip Huisman | UvA | c.huisman@uva.nl | other | sociology | 2022 | UvA | |
232 | Rene Hulst | UvA | r.j.a.m.hulst@uva.nl | other | sociology | 2022 | UvA | |
233 | Christoph Janietz | UvA | c.janietz@uva.nl | phd | sociology | 2022 | UvA | |
234 | Marie-Louise Janssen | UvA | m.p.c.janssen@uva.nl | other | sociology | 2022 | UvA | |
235 | Emilija Jokubauskaite | UvA | e.jokubauskaite@uva.nl | phd | sociology | 2022 | UvA | |
236 | Roos de Jong | UvA | r.e.dejong@uva.nl | other | sociology | 2022 | UvA | |
237 | Agnieszka Kanas | UvA/EUR | a.m.kanas@uva.nl | assistant_prof | sociology | 2022 | UvA | EUR |
238 | Anna Keuchenius | UvA | a.keuchenius@uva.nl | postdoc | sociology | 2022 | UvA | |
239 | Monique Kremer | UvA | m.kremer@uva.nl | full_prof | sociology | 2022 | UvA | |
240 | Marie Labussière | UvA | m.labussiere@uva.nl | postdoc | sociology | 2022 | UvA | |
241 | Bram Lancee | UvA | b.lancee@uva.nl | associate_prof | sociology | 2022 | UvA | |
242 | Liliya Leopold | UvA | l.leopold@uva.nl | postdoc | sociology | 2022 | UvA | |
243 | Kirils Makarovs | UvA | k.makarovs@uva.nl | other | sociology | 2022 | UvA | |
244 | Daniel Mayerhoffer | UvA/Frankfurt School of Finance & Management | d.m.mayerhoffer@uva.nl | assistant_prof | sociology | 2022 | UvA | Frankfurt School of Finance & Management |
245 | Gerben Moerman | UvA | g.moerman@uva.nl | other | sociology | 2022 | UvA | |
246 | Lou Mousset | UvA | l.e.mousset@uva.nl | phd | sociology | 2022 | UvA | |
247 | Caroline Nevejan | UvA | c.i.m.nevejan@uva.nl | full_prof | sociology | 2022 | UvA | |
248 | Bo Paulle | UvA | b.paulle@uva.nl | associate_prof | sociology | 2022 | UvA | |
249 | Pamela Prickett | UvA | p.j.prickett@uva.nl | assistant_prof | sociology | 2022 | UvA | |
250 | Ladan Rahbari | UvA | l.rahbari@uva.nl | assistant_prof | sociology | 2022 | UvA | |
251 | Jan Rath | UvA | j.c.rath@uva.nl | full_prof | sociology | 2022 | UvA | |
252 | Emran Riffi Acharki | UvA | e.riffiacharki@uva.nl | phd | sociology | 2022 | UvA | |
253 | Renée Römkens | UvA | g.m.f.romkens@uva.nl | full_prof | sociology | 2022 | UvA | |
254 | Tobi Sachs | UvA | t.sachs@uva.nl | phd | sociology | 2022 | UvA | |
255 | Pinar Sefkatli | UvA | p.sefkatli@uva.nl | phd | sociology | 2022 | UvA | |
256 | Olga Sezneva | UvA | o.sezneva@uva.nl | associate_prof | sociology | 2022 | UvA | |
257 | Jaap van Slageren | UvA | j.vanslageren@uva.nl | postdoc | sociology | 2022 | UvA | |
258 | Fenna Smits | UvA | f.n.smits@uva.nl | phd | sociology | 2022 | UvA | |
259 | Hanne Stegeman | UvA | h.m.stegeman@uva.nl | phd | sociology | 2022 | UvA | |
260 | Stephanie Steinmetz | UvA/University of Lausanne | s.m.steinmetz@uva.nl | associate_prof | sociology | 2022 | UvA | University of Lausanne |
261 | Katharina Stückradt | UvA | k.e.stuckradt@uva.nl | phd | sociology | 2022 | UvA | |
262 | Jurgen Tijms | UvA | j.tijms@uva.nl | other | sociology | 2022 | UvA | |
263 | Olav Velthuis | UvA | o.j.m.velthuis@uva.nl | full_prof | sociology | 2022 | UvA | |
264 | Gerlieke Veltkamp | UvA | g.veltkamp@uva.nl | assistant_prof | sociology | 2022 | UvA | |
265 | Alex van Venrooij | UvA | a.t.vanvenrooij@uva.nl | assistant_prof | sociology | 2022 | UvA | |
266 | Arnoud Verhoeff | UvA | a.p.verhoeff1@uva.nl | full_prof | sociology | 2022 | UvA | |
267 | Laura Vonk | UvA | l.a.vonk@hva.nl | phd | sociology | 2022 | UvA | |
268 | S Vuijsters | UvA | s.vuijsters@uva.nl | other | sociology | 2022 | UvA | |
269 | Don Weenink | UvA | d.weenink@uva.nl | associate_prof | sociology | 2022 | UvA | |
270 | Herman van de Werfhorst | UvA | h.g.vandewerfhorst@uva.nl | full_prof | sociology | 2022 | UvA | |
271 | Catherine Wong | UvA | m.l.wong@uva.nl | assistant_prof | sociology | 2022 | UvA | |
272 | Eva Zschirnt | UvA | e.zschirnt@uva.nl | assistant_prof | sociology | 2022 | UvA | |
273 | Dieuwke Zwier | UvA | d.zwier@uva.nl | phd | sociology | 2022 | UvA | |
275 | Jens Abbing | VU | j.abbing@vu.nl | phd | sociology | 2022 | VU | |
276 | Nazar Abdulazeez | VU | n.j.abdulazeez@vu.nl | phd | sociology | 2022 | VU | |
277 | Menal Ahmed | VU | m.ahmad@vu.nl | other | sociology | 2022 | VU | |
278 | Petra van Aken | VU | p.t.van.aken@vu.nl | phd | sociology | 2022 | VU | |
279 | Carla Bakboord | VU | carlabakboord@gmail.com | phd | sociology | 2022 | VU | |
280 | Bart Bakker | VU | b.f.m.bakker@vu.nl | full_prof | sociology | 2022 | VU | |
281 | René Bekkers | VU | r.bekkers@vu.nl | full_prof | sociology | 2022 | VU | |
282 | Marije Blok | VU | m.blok@vu.nl | phd | sociology | 2022 | VU | |
283 | Alice de Boer | VU | a.h2.de.boer@vu.nl | full_prof | sociology | 2022 | VU | |
284 | Henriëtte Boersma-de Vries | VU | h.j.boersma@planet.nl | phd | sociology | 2022 | VU | |
285 | Stef Bouwhuis | VU | s.bouwhuis@vu.nl | other | sociology | 2022 | VU | |
286 | Marjolein Broese Van Groenou | VU | m.i.broesevangroenou@vu.nl | full_prof | sociology | 2022 | VU | |
287 | Gerhard van de Bunt | VU | g.g.vande.bunt@vu.nl | associate_prof | sociology | 2022 | VU | |
288 | Samira Chatila | VU | s.chatila@vu.nl | phd | sociology | 2022 | VU | |
289 | Anika Chowdhury | VU | t.m.chowdhury@vu.nl | phd | sociology | 2022 | VU | |
290 | Alexandra Ciausescu | VU | a.ciausescu@vu.nl | phd | sociology | 2022 | VU | |
291 | Maurice Crul | VU | m.j.crul@vu.nl | full_prof | sociology | 2022 | VU | |
292 | Kathy Davis | VU | k.e.davis@vu.nl | other | sociology | 2022 | VU | |
293 | Carlijn Dekker | VU | c.l.dekker2@vu.nl | other | sociology | 2022 | VU | |
294 | Gözde Duran | VU | g.duran@vu.nl | phd | sociology | 2022 | VU | |
295 | Laura Eberlein | VU | l.e.eberlein@vu.nl | phd | sociology | 2022 | VU | |
296 | Eddy Elmer | VU | e.elmer@vu.nl | phd | sociology | 2022 | VU | |
297 | Zakia Essanhaji | VU | z.essanhaji@vu.nl | phd | sociology | 2022 | VU | |
298 | Muhammad Farooq | VU | m.farooq@vu.nl | phd | sociology | 2022 | VU | |
299 | Tara Fiorito | VU | t.r.fiorito@vu.nl | assistant_prof | sociology | 2022 | VU | |
300 | Harry Ganzeboom | VU | harry.ganzeboom@vu.nl | full_prof | sociology | 2022 | VU | |
301 | Maura Gardeniers | VU | m.k.m.gardeniers@vu.nl | phd | sociology | 2022 | VU | |
302 | Mauricio Garnier Villarreal | VU | m.garniervillarreal@vu.nl | assistant_prof | sociology | 2022 | VU | |
303 | Halleh Ghorashi | VU | h.ghorashi@vu.nl | full_prof | sociology | 2022 | VU | |
304 | Santiago Gomez Echeverry | VU | s.gomez-echeverry@vu.nl | phd | sociology | 2022 | VU | |
305 | Barbara Gouwenberg | VU | b.m.gouwenberg@vu.nl | other | sociology | 2022 | VU | |
306 | Caroline Graf | VU | c.graf@vu.nl | phd | sociology | 2022 | VU | |
307 | Alaxandra Greene | VU | a.m.a.greene@vu.nl | phd | sociology | 2022 | VU | |
308 | Mohammad Hammoud | VU | m.hammoud@vu.nl | phd | sociology | 2022 | VU | |
309 | Fabian Holle | VU | f.y.holle@vu.nl | phd | sociology | 2022 | VU | |
310 | Barry Hoolwerf | VU | l.k.hoolwerf@vu.nl | other | sociology | 2022 | VU | |
311 | Olena van Horick | VU | o.van.horick@vu.nl | phd | sociology | 2022 | VU | |
312 | Mariska van der Horst | VU | m.f.j.vanderhorst@vu.nl | assistant_prof | sociology | 2022 | VU | |
313 | Martijn Huisman | VU | m.huisman@vu.nl | full_prof | sociology | 2022 | VU | |
314 | Erik van Ingen | VU | e.j.van.ingen@vu.nl | associate_prof | sociology | 2022 | VU | |
315 | Elif Keskiner | VU | e.keskiner@vu.nl | assistant_prof | sociology | 2022 | VU | |
316 | Saskia Keuzenkamp | VU | s.keuzenkamp@vu.nl | full_prof | sociology | 2022 | VU | |
317 | Fatma Khalil | VU | f.z.khalil@vu.nl | phd | sociology | 2022 | VU | |
318 | Saba Khan | VU | s.a.khan@vu.nl | phd | sociology | 2022 | VU | |
319 | Kyohee Kim | VU | k.h.kim@vu.nl | phd | sociology | 2022 | VU | |
320 | Bert Klandermans | VU | p.g.klandermans@vu.nl | full_prof | sociology | 2022 | VU | |
321 | Kim Knipprath | VU | k.r.knipprath@vu.nl | phd | sociology | 2022 | VU | |
322 | Stephanie Koolen-Maas | VU | s.a.maas@vu.nl | other | sociology | 2022 | VU | |
323 | Margrieth Korporaal | VU | m.korporaal@vu.nl | phd | sociology | 2022 | VU | |
324 | Timo Korstenbroek | VU | t.m.korstenbroek@vu.nl | phd | sociology | 2022 | VU | |
325 | Zsuzsa Kovacs | VU | z.kovacs@vu.nl | phd | sociology | 2022 | VU | |
326 | Nebil Kusmallah | VU | n.a.kusmallah@vu.nl | other | sociology | 2022 | VU | |
327 | Haebin Lee | VU | h.lee@vu.nl | phd | sociology | 2022 | VU | |
328 | Aat Liefbroer | VU | a.c.liefbroer@vu.nl | full_prof | sociology | 2022 | VU | |
329 | Youssra Lotfi | VU | y.lotfi@vu.nl | other | sociology | 2022 | VU | |
330 | Helenard Louw | VU | h.k.m.louw@vu.nl | phd | sociology | 2022 | VU | |
331 | Ineke Maas | VU | w.a.f.maas@vu.nl | full_prof | sociology | 2022 | VU | |
332 | Elly Mariani | VU | e.e.mariani@vu.nl | phd | sociology | 2022 | VU | |
333 | Kay Mars | VU | k.j.h.mars@vu.nl | other | sociology | 2022 | VU | |
334 | Eva-Maria Merz | VU | e.m.merz@vu.nl | full_prof | sociology | 2022 | VU | |
335 | Phoebe Mbasalaki | VU | phoebe.kisubi-mbasalaki@essex.ac.uk | other | sociology | 2022 | VU | |
336 | Nasser Mohamedhoesein | VU | nasser.mohamedhoesein@gmail.com | phd | sociology | 2022 | VU | |
337 | Jasper Muis | VU | j.c.muis@vu.nl | assistant_prof | sociology | 2022 | VU | |
338 | Ineke Nagel | VU | f.a.nagel@vu.nl | assistant_prof | sociology | 2022 | VU | |
339 | Lorraine Nencel | VU | l.s.nencel@vu.nl | associate_prof | sociology | 2022 | VU | |
340 | Busisiwe Octavia Ntsele | VU | b.o.ntsele@vu.nl | phd | sociology | 2022 | VU | |
341 | Mimi Ocadiz Arriaga | VU | m.a.ocadizarriaga@vu.nl | phd | sociology | 2022 | VU | |
342 | Eline van Oosten | VU | e.p.w.van.oosten@vu.nl | other | sociology | 2022 | VU | |
343 | Joram Pach | VU | j.a.pach@vu.nl | phd | sociology | 2022 | VU | |
344 | Dimitris Pavlopoulos | VU | d.pavlopoulos@vu.nl | associate_prof | sociology | 2022 | VU | |
345 | Diederik van der Plas | VU | d.m.vander.plas@vu.nl | phd | sociology | 2022 | VU | |
346 | Elena Ponzoni | VU | e.ponzoni@vu.nl | assistant_prof | sociology | 2022 | VU | |
347 | Sharon Quinsaat | VU | s.quinsaat@vu.nl | other | sociology | 2022 | VU | |
348 | Maria Charlotte Rast | VU | m.c.rast@vu.nl | phd | sociology | 2022 | VU | |
349 | Jos Rath | VU | j.h.rath@vu.nl | other | sociology | 2022 | VU | |
350 | Sawitri Saharso | VU/UvH | s.saharso@vu.nl | associate_prof | sociology | 2022 | VU | UvH |
351 | Joris Schröder | VU | j.m.schroeder@vu.nl | phd | sociology | 2022 | VU | |
352 | Josje Schut | VU | j.schut@vu.nl | phd | sociology | 2022 | VU | |
353 | Theo Schuyt | VU | t.n.m.schuyt@vu.nl | other | sociology | 2022 | VU | |
354 | Sajad Sepehri | VU | sajad.sepehri@vu.nl | other | sociology | 2022 | VU | |
355 | Fiona Shan | VU | h.y.shan@vu.nl | phd | sociology | 2022 | VU | |
356 | Ying Shen | VU | y.shen@vu.nl | phd | sociology | 2022 | VU | |
357 | Mansoureh Shojaee | VU | m.shojaee@vu.nl | other | sociology | 2022 | VU | |
358 | Marieke Slootman | VU | m.w.slootman@vu.nl | assistant_prof | sociology | 2022 | VU | |
359 | Peer Smets | VU | p.g.s.m.smets@vu.nl | assistant_prof | sociology | 2022 | VU | |
360 | Tamira Sno | VU | t.e.sno@vu.nl | phd | sociology | 2022 | VU | |
361 | Jacquelien van Stekelenburg | VU | j.van.stekelenburg@vu.nl | full_prof | sociology | 2022 | VU | |
362 | Elias Storms | VU | e.f.l.storms@vu.nl | other | sociology | 2022 | VU | |
363 | Bianca Suanet | VU | b.a.suanet@vu.nl | associate_prof | sociology | 2022 | VU | |
364 | Joukje Swinkels | VU | j.c.swinkels@vu.nl | other | sociology | 2022 | VU | |
365 | Saartje Tack | VU | s.e.j.saartje.tack@vu.nl | other | sociology | 2022 | VU | |
366 | Claire van Teunenbroek | VU | p.s.c.van.teunenbroek@vu.nl | other | sociology | 2022 | VU | |
367 | Anne-Mei The | VU | b.a.m.the@vu.nl | full_prof | sociology | 2022 | VU | |
368 | Theo van Tilburg | VU | theo.van.tilburg@vu.nl | full_prof | sociology | 2022 | VU | |
369 | Myrto Tourtouri | VU | m.r.tourtouri@vu.nl | phd | sociology | 2022 | VU | |
370 | Sara Trovato | VU | s.trovato@vu.nl | phd | sociology | 2022 | VU | |
371 | Joseph van Matre | VU | j.c.vanmatre@vu.nl | phd | sociology | 2022 | VU | |
372 | Nina Vergeldt | VU | n.l.vergeldt@vu.nl | other | sociology | 2022 | VU | |
373 | Evelyn Vlasman | VU | e.vlasman@vu.nl | other | sociology | 2022 | VU | |
374 | Ismintha Waldring | VU | i.e.waldring@vu.nl | assistant_prof | sociology | 2022 | VU | |
375 | Pamala Wiepking | VU | p.wiepking@vu.nl | full_prof | sociology | 2022 | VU | |
376 | Arjen de Wit | VU | a.de.wit@vu.nl | assistant_prof | sociology | 2022 | VU | |
377 | Lisa Woensdregt | VU | l.woensdregt@vu.nl | phd | sociology | 2022 | VU | |
378 | Younes Younes | VU | y.younes@vu.nl | other | sociology | 2022 | VU | |
380 | Jess Bier | EUR | bier@essb.eur.nl | assistant_prof | sociology | 2022 | EUR | |
381 | Samira van Bohemen | EUR | vanbohemen@essb.eur.nl | assistant_prof | sociology | 2022 | EUR | |
382 | Teana Boston-Mammah | EUR | bostonmammah@essb.eur.nl | phd | sociology | 2022 | EUR | |
383 | Sjaak Braster | EUR | braster@essb.eur.nl | associate_prof | sociology | 2022 | EUR | |
384 | Vivien Butot | EUR | butot@essb.eur.nl | other | sociology | 2022 | EUR | |
385 | Nele Cannaerts | EUR | cannaerts@essb.eur.nl | assistant_prof | sociology | 2022 | EUR | |
386 | Jaco Dagevos | EUR | dagevos@essb.eur.nl | full_prof | sociology | 2022 | EUR | |
387 | Roxy Damen | EUR | damen@essb.eur.nl | phd | sociology | 2022 | EUR | |
388 | Majolijn Das | EUR | das@essb.eur.nl | full_prof | sociology | 2022 | EUR | |
389 | Laura den Dulk | EUR | dendulk@essb.eur.nl | full_prof | sociology | 2022 | EUR | |
390 | Pearl Dykstra | EUR | dykstra@essb.eur.nl | full_prof | sociology | 2022 | EUR | |
391 | Godfried Engbersen | EUR | engbersen@essb.eur.nl | full_prof | sociology | 2022 | EUR | |
392 | Guusje Enneking | EUR | enneking@essb.eur.nl | phd | sociology | 2022 | EUR | |
393 | Catharina Fokkema | EUR | fokkema@essb.eur.nl | full_prof | sociology | 2022 | EUR | |
394 | Bonnie French | EUR | french@essb.eur.nl | assistant_prof | sociology | 2022 | EUR | |
395 | Daphne van Helden | EUR | vanhelden@essb.eur.nl | phd | sociology | 2022 | EUR | |
396 | Marcel Hertogh | EUR | hertogh@essb.eur.nl | full_prof | sociology | 2022 | EUR | |
397 | Sara Hogye | EUR | hogye@essb.eur.nl | phd | sociology | 2022 | EUR | |
398 | Jennifer Holland | EUR | j.a.holland@essb.eur.nl | assistant_prof | sociology | 2022 | EUR | |
399 | Elske van den Hoogen | EUR | vandenhoogen@essb.eur.nl | phd | sociology | 2022 | EUR | |
400 | Gita Huijgen | EUR | huijgen@essb.eur.nl | phd | sociology | 2022 | EUR | |
401 | Josje ten Kate | EUR | tenkate@essb.eur.nl | phd | sociology | 2022 | EUR | |
402 | Renske Keizer | EUR | keizer@essb.eur.nl | full_prof | sociology | 2022 | EUR | |
403 | Margot Kersing | EUR | kersing@essb.eur.nl | phd | sociology | 2022 | EUR | |
404 | Ferry Koster | EUR | koster@essb.eur.nl | full_prof | sociology | 2022 | EUR | |
405 | Willem de Koster | EUR | dekoster@essb.eur.nl | full_prof | sociology | 2022 | EUR | |
406 | Arjen Leerkes | EUR | leerkes@essb.eur.nl | associate_prof | sociology | 2022 | EUR | |
407 | Thijs Lindner | EUR | lindner@essb.eur.nl | phd | sociology | 2022 | EUR | |
408 | Gabriele Mari | EUR | mari@essb.eur.nl | assistant_prof | sociology | 2022 | EUR | |
409 | Saliha Metinsoy | EUR | metinsoy@essb.eur.nl | assistant_prof | sociology | 2022 | EUR | |
410 | Samantha Metselaar | EUR | metselaar@essb.eur.nl | phd | sociology | 2022 | EUR | |
411 | Tim van Meurs | EUR | vanmeurs@essb.eur.nl | phd | sociology | 2022 | EUR | |
412 | Jonathan Mijs | EUR/Boston University | mijs@essb.eur.nl | other | sociology | 2022 | EUR | Boston University |
413 | Kjell Noordzij | EUR | k.noordzij@essb.eur.nl | other | sociology | 2022 | EUR | |
414 | Irene van Oorschot | EUR | vanoorschot@essb.eur.nl | assistant_prof | sociology | 2022 | EUR | |
415 | Joost Oude Groeniger | EUR | oudegroeniger@essb.eur.nl | assistant_prof | sociology | 2022 | EUR | |
416 | Lore van Praag | EUR | vanpraag@essb.eur.nl | assistant_prof | sociology | 2022 | EUR | |
417 | Rogier van Reekum | EUR | vanreekum@essb.eur.nl | assistant_prof | sociology | 2022 | EUR | |
418 | Willem Schinkel | EUR | schinkel@essb.eur.nl | full_prof | sociology | 2022 | EUR | |
419 | Lotte Schrijver | EUR | schrijver@essb.eur.nl | phd | sociology | 2022 | EUR | |
420 | Erik Snel | EUR | snel@essb.eur.nl | assistant_prof | sociology | 2022 | EUR | |
421 | Lisa van der Storm | EUR | vanderstorm@essb.eur.nl | phd | sociology | 2022 | EUR | |
422 | Thomas Swerts | EUR | swerts@essb.eur.nl | assistant_prof | sociology | 2022 | EUR | |
423 | Will Tiemeijer | EUR | tiemeijer@essb.eur.nl | full_prof | sociology | 2022 | EUR | |
424 | Paula Vrolijk | EUR | vrolijk@essb.eur.nl | phd | sociology | 2022 | EUR | |
425 | Jeroen van der Waal | EUR | vanderwaal@essb.eur.nl | full_prof | sociology | 2022 | EUR | |
426 | Liang Wang | EUR | l.wang@essb.eur.nl | other | sociology | 2022 | EUR | |
427 | Alissa van Zijl | EUR | vanzijl@essb.eur.nl | assistant_prof | sociology | 2022 | EUR | |
428 | Liesbet van Zoonen | EUR | vanzoonen@essb.eur.nl | full_prof | sociology | 2022 | EUR | |
430 | Peter Achterberg | UvT | P.Achterberg@tilburguniversity.edu | full_prof | sociology | 2022 | UvT | |
431 | Ipek Bayrak | UvT | I.Bayrak@tilburguniversity.edu | other | sociology | 2022 | UvT | |
432 | Mark van Bergen | UvT | M.vanBergen@tilburguniversity.edu | other | sociology | 2022 | UvT | |
433 | Eline Berkers | UvT | E.C.M.Berkers@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
434 | Arnoud-Jan Bijsterveld | UvT | A.J.A.Bijsterveld@tilburguniversity.edu | full_prof | sociology | 2022 | UvT | |
435 | Jos Bleus | UvT | J.L.M.Bleus@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
436 | Paul Dekker | UvT | Paul.Dekker@tilburguniversity.edu | other | sociology | 2022 | UvT | |
437 | Caroline Dewilde | UvT | C.L.Dewilde@tilburguniversity.edu | associate_prof | sociology | 2022 | UvT | |
438 | S.C.M. Dickens | UvT | S.C.M.Dickens@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
439 | Frank van Doorn | UvT | F.H.M.vanDoorn@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
440 | Gijs van Gaans | UvT | G.M.vanGaans@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
441 | Erwin Gielens | UvT | E.E.C.Gielens@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
442 | Frank van Gils | UvT | F.A.L.M.vanGils@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
443 | Rob Gruben | UvT | R.J.W.M.Gruben@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
444 | Katya Ivanova | UvT | K.O.Ivanova@tilburguniversity.edu | assistant_prof | sociology | 2022 | UvT | |
445 | Thijs Kemmeren | UvT | M.C.M.Kemmeren@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
446 | F.J.A.E. Van Kempen-de Troye | UvT | F.J.A.E.vanKempen-deTroye@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
447 | Suzanne Klein Schaarsberg | UvT | S.T.KleinSchaarsberg@tilburguniversity.edu | other | sociology | 2022 | UvT | |
448 | Tijs Laenen | UvT | T.Laenen@tilburguniversity.edu | other | sociology | 2022 | UvT | |
449 | Frank Lambregts | UvT | F.J.M.Lambregts@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
450 | Nancy Lambregts | UvT | A.J.M.Lambregts@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
451 | Ruud Luijkx | UvT/Trento University | R.Luijkx@tilburguniversity.edu | associate_prof | sociology | 2022 | UvT | Trento University |
452 | Francesco Marolla | UvT | F.Marolla@tilburguniversity.edu | other | sociology | 2022 | UvT | |
453 | Quita Muis | UvT | Q.Muis@tilburguniversity.edu | other | sociology | 2022 | UvT | |
454 | Daniela Negoita | UvT | D.Negoita@tilburguniversity.edu | other | sociology | 2022 | UvT | |
455 | Bert Oomen | UvT | L.P.Oomen@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
456 | Romy Oomens | UvT | R.Oomens@tilburguniversity.edu | other | sociology | 2022 | UvT | |
457 | Peter Parren | UvT | P.L.G.C.M.Parren@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
458 | Bram Peper | UvT | A.Peper@tilburguniversity.edu | other | sociology | 2022 | UvT | |
459 | Ioana Pop | UvT | I.A.Pop@tilburguniversity.edu | assistant_prof | sociology | 2022 | UvT | |
460 | Marga Pruijt | UvT | M.J.Pruijt@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
461 | Tim Reeskens | UvT | T.Reeskens@tilburguniversity.edu | associate_prof | sociology | 2022 | UvT | |
462 | Helma Rodenburg | UvT | W.M.Rodenburg@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
463 | Femke Roosma | UvT | F.Roosma@tilburguniversity.edu | assistant_prof | sociology | 2022 | UvT | |
464 | Inge Sieben | UvT | I.J.P.Sieben@tilburguniversity.edu | associate_prof | sociology | 2022 | UvT | |
465 | Renate Stapelbroek | UvT | R.M.J.Stapelbroek@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
466 | Tomas Turner-Zwinkels | UvT | tomas.turner-zwinkels@tilburguniversity.edu | assistant_prof | sociology | 2022 | UvT | |
467 | Christof van Mol | UvT | C.VanMol@tilburguniversity.edu | assistant_prof | sociology | 2022 | UvT | |
468 | Nora Waitkus | UvT | N.M.Waitkus@tilburguniversity.edu | assistant_prof | sociology | 2022 | UvT | |
469 | Tom Welman | UvT | T.H.B.Welman@tilburguniversity.edu | other | sociology | 2022 | UvT | |
470 | Franca Witlox | UvT | F.W.A.Witlox@tilburguniversity.edu | other | sociology | 2022 | UvT | |
471 | Cees van Woerkum | UvT | C.M.J.vanWoerkum@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
472 | Elizabeth Young | UvT | E.L.Young@tilburguniversity.edu | assistant_prof | sociology | 2022 | UvT | |
473 | Erik Zeltner | UvT | E.M.Z.Zeltner@tilburguniversity.edu | phd | sociology | 2022 | UvT | |
474 | Erik Zijlstra | UvT | E.Zijlstra@tilburguniversity.edu | other | sociology | 2022 | UvT | |
1100 | Nada Afa | RU | nada.afa@ru.nl | phd | political science | 2022 | RU | |
2100 | Joep Bonnekamp-Van Lit | RU | joep.vanlit@ru.nl | phd | political science | 2022 | RU | |
379 | Nienke Bos | RU | nienke.bos@ru.nl | phd | political science | 2022 | RU | |
429 | Maarten Cras | RU | maarten.cras@ru.nl | other | political science | 2022 | RU | |
510 | Daniel DeRock | RU | daniel.derock@ru.nl | assistant_prof | political science | 2022 | RU | |
63 | Yaël van Drunen | RU | yael.vandrunen@ru.nl | other | political science | 2022 | RU | |
710 | Teun Eikenaar | RU | teun.eikenaar@ru.nl | postdoc | political science | 2022 | RU | |
810 | Erika van Elsas | RU | erika.vanelsas@ru.nl | assistant_prof | political science | 2022 | RU | |
910 | Naomi Gilhuis | RU | naomi.gilhuis@ru.nl | phd | political science | 2022 | RU | |
1010 | Yannicke Goris | RU | yannicke.goris@ru.nl | phd | political science | 2022 | RU | |
1110 | Emily Gravesteijn | RU | emily.gravesteijn@ru.nl | phd | political science | 2022 | RU | |
1210 | Rosanne Gülkara-Anholt | RU | rosanne.anholt@ru.nl | assistant_prof | political science | 2022 | RU | |
1310 | Gijs Hablous | RU | gijs.hablous@ru.nl | phd | political science | 2022 | RU | |
1410 | Carolien van Ham | RU | carolien.vanham@ru.nl | full_prof | political science | 2022 | RU | |
1510 | Kristof Jacobs | RU | kristof.jacobs@ru.nl | associate_prof | political science | 2022 | RU | |
1610 | Jutta Joachim | RU | jutta.joachim@ru.nl | other | political science | 2022 | RU | |
1710 | Gerry van der Kamp-Alons | RU | gerry.alons@ru.nl | associate_prof | political science | 2022 | RU | |
1810 | Gaard Kets | RU | gaard.kets@ru.nl | assistant_prof | political science | 2022 | RU | |
1910 | Rosa Kindt | RU | rosa.kindt@ru.nl | phd | political science | 2022 | RU | |
2010 | Marijn Knieriem | RU | marijn.knieriem@ru.nl | phd | political science | 2022 | RU | |
2110 | Stella Koenen | RU | stella.koenen@ru.nl | phd | political science | 2022 | RU | |
2210 | Juul Kwaks | RU | juul.kwaks@ru.nl | phd | political science | 2022 | RU | |
2310 | Jan ter Laak | RU | jan.terlaak@ru.nl | other | political science | 2022 | RU | |
2410 | Bart van Leeuwen | RU | bart.vanleeuwen@ru.nl | associate_prof | political science | 2022 | RU | |
2510 | Mathijs van Leeuwen | RU | mathijs.vanleeuwen@ru.nl | full_prof | political science | 2022 | RU | |
2610 | Alex Lehr | RU | alex.lehr@ru.nl | associate_prof | political science | 2022 | RU | |
2710 | Vera Linke | RU | vera.linke@ru.nl | phd | political science | 2022 | RU | |
2810 | Charlie Loopuijt | RU | charlie.loopuijt@ru.nl | other | political science | 2022 | RU | |
2910 | Sofie van der Maarel | RU | sofie.vandermaarel@ru.nl | phd | political science | 2022 | RU | |
3010 | Romain Malejacq | RU | romain.malejacq@ru.nl | assistant_prof | political science | 2022 | RU | |
3110 | Katerina Manevska | RU | katerina.manevska@ru.nl | assistant_prof | political science | 2022 | RU | |
3210 | Gustav Meibauer | RU | gustav.meibauer@ru.nl | assistant_prof | political science | 2022 | RU | |
3310 | Maurits Meijers | RU | maurits.meijers@ru.nl | assistant_prof | political science | 2022 | RU | |
3410 | Tine Molendijk | RU | tine.molendijk@ru.nl | other | political science | 2022 | RU | |
3510 | Marco Monaco | RU | marco.monaco@ru.nl | phd | political science | 2022 | RU | |
3610 | Camille Munezero | RU | camille.munezero@ru.nl | phd | political science | 2022 | RU | |
3710 | Chris Nijhuis | RU | chris.nijhuis@ru.nl | other | political science | 2022 | RU | |
3810 | Bob Reinalda | RU | bob.reinalda@ru.nl | other | political science | 2022 | RU | |
3910 | Roderik Rekker | UvA/Uni Gothenburg | roderik.rekker@ru.nl | assistant_prof | political science | 2022 | UvA | Uni Gothenburg |
4010 | Miguel A Rivera Quinones | RU | miguela.riveraquinones@ru.nl | other | political science | 2022 | RU | |
4110 | Saskia Ruth-Lovell | RU | saskia.ruth-lovell@ru.nl | assistant_prof | political science | 2022 | RU | |
4210 | Indra Römgens | RU | indra.roemgens@ru.nl | phd | political science | 2022 | RU | |
4310 | Salah Lema | RU | lema.salah@ru.nl | phd | political science | 2022 | RU | |
4410 | Melisa Soto | RU | melisa.soto@ru.nl | phd | political science | 2022 | RU | |
4510 | Nora Stel | RU | nora.stel@ru.nl | assistant_prof | political science | 2022 | RU | |
4610 | Jeannine Suurmond | RU | jeannine.suurmond@ru.nl | postdoc | political science | 2022 | RU | |
475 | Haley Swedlund | RU | haley.swedlund@ru.nl | associate_prof | political science | 2022 | RU | |
481 | Tjidde Tempels | RU | tjidde.tempels@ru.nl | other | political science | 2022 | RU | |
491 | Niels Terpstra | RU | niels.terpstra@ru.nl | assistant_prof | political science | 2022 | RU | |
501 | Marie Theuwis | RU | marie.theuwis@ru.nl | phd | political science | 2022 | RU | |
511 | Maya Turolla | RU | maya.turolla@ru.nl | postdoc | political science | 2022 | RU | |
521 | Reinout van der Veer | RU | reinout.vanderveer@ru.nl | assistant_prof | political science | 2022 | RU | |
531 | Bertjan Verbeek | RU | bertjan.verbeek@ru.nl | full_prof | political science | 2022 | RU | |
541 | Willemijn Verkoren | RU | willemijn.verkoren@ru.nl | associate_prof | political science | 2022 | RU | |
551 | Mieke Verloo | RU | mieke.verloo@ru.nl | full_prof | political science | 2022 | RU | |
561 | Désirée Verweij | RU | de.verweij@ru.nl | full_prof | political science | 2022 | RU | |
571 | Anna van der Vleuten | RU | anna.vandervleuten@ru.nl | full_prof | political science | 2022 | RU | |
581 | Koen Vossen | RU | koen.vossen@ru.nl | other | political science | 2022 | RU | |
591 | Angela Wigger | RU | angela.wigger@ru.nl | associate_prof | political science | 2022 | RU | |
601 | Marcel Wissenburg | RU | marcel.wissenburg@ru.nl | full_prof | political science | 2022 | RU | |
611 | Andrej Zaslove | RU | andrej.zaslove@ru.nl | associate_prof | political science | 2022 | RU | |
641 | Adina Akbik | Leiden | a.akbik@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
651 | Femke Bakker | Leiden | f.e.bakker@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
661 | Ingrid van Biezen | Leiden | i.c.van.biezen@fsw.leidenuniv.nl | full_prof | political science | 2022 | Leiden | |
671 | Nicolas Blarel | Leiden | n.r.j.b.blarel@fsw.leidenuniv.nl | associate_prof | political science | 2022 | Leiden | |
681 | Arjen Boin | Leiden | boin@fsw.leidenuniv.nl | full_prof | political science | 2022 | Leiden | |
691 | Theo Brinkel | Leiden | t.b.f.m.brinkel@fsw.leidenuniv.nl | full_prof | political science | 2022 | Leiden | |
701 | Valentina Carraro | Leiden | v.carraro@fgga.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
711 | Leila Demarest | Leiden | l.demarest@fsw.leidenuniv.nl | associate_prof | political science | 2022 | Leiden | |
721 | Jesse Doornenbal | Leiden | j.d.doornenbal@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
731 | Matthew di Giuseppe | Leiden | m.r.di.giuseppe@fsw.leidenuniv.nl | associate_prof | political science | 2022 | Leiden | |
741 | Roos van der Haer | Leiden | r.van.der.haer@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
751 | Gisela Hirschmann | Leiden | g.k.hirschmann@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
761 | Joop van Holsteijn | Leiden | holsteyn@fsw.leidenuniv.nl | full_prof | political science | 2022 | Leiden | |
771 | Corinna Jentzsch | Leiden | c.jentzsch@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
781 | Petr Kopecky | Leiden | kopecky@fsw.leidenuniv.nl | full_prof | political science | 2022 | Leiden | |
791 | Matthew Longo | Leiden | m.b.longo@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
801 | Tom Louwerse | Leiden | t.p.louwerse@fsw.leidenuniv.nl | associate_prof | political science | 2022 | Leiden | |
811 | Floris Mansvelt Beck | Leiden | f.f.mansvelt.beck@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
821 | Juan Masullo Jimenez | Leiden | j.masullo@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
831 | Hilde van Meegdenburg | Leiden | h.van.meegdenburg@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
841 | Michael Meffert | Leiden | m.f.meffert@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
851 | Frits Meijerink | Leiden | meijerink@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
861 | Tim Mickler | Leiden | t.a.mickler@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
871 | Martijn Mos | Leiden | m.mos@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
881 | Katharina Natter | Leiden | k.natter@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
891 | Cristoph Niessen | Leiden | c.niessen@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
901 | Paul Nieuwenburg | Leiden | pnieuwenburg@fsw.leidenuniv.nl | full_prof | political science | 2022 | Leiden | |
911 | Simon Otjes | Leiden | s.p.otjes@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
921 | Johannes Oversloot | Leiden | oversloot@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
931 | Jonathan Philips | Leiden | j.p.phillips@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
941 | Rebecca Ploof | Leiden | r.a.ploof@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
951 | Karolina Pomorska | Leiden | k.m.pomorska@fsw.leidenuniv.nl | associate_prof | political science | 2022 | Leiden | |
961 | Francesco Ragazzi | Leiden | f.ragazzi@fsw.leidenuniv.nl | associate_prof | political science | 2022 | Leiden | |
971 | Babak Rezaeedaryakenari | Leiden | s.rezaeedaryakenari@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
981 | Josh Robison | Leiden | j.a.robison@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
991 | Michael Sampson | Leiden | m.d.sampson@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
1001 | Jan Aart Scholte | Leiden | j.a.scholte@fsw.leidenuniv.nl | full_prof | political science | 2022 | Leiden | |
1011 | Jonah Schulhofer-Wohl | Leiden | j.b.schulhofer-wohl@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
1021 | Maria Spirova | Leiden | mspirova@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
1031 | Tom Theuns | Leiden | t.j.h.theuns@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
1041 | Daniel Thomas | Leiden | d.c.thomas@fsw.leidenuniv.nl | full_prof | political science | 2022 | Leiden | |
1051 | Vasiliki Tsagkroni | Leiden | v.tsagkroni@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
1061 | Wouter Veenendaal | Leiden | w.p.veenendaal@fsw.leidenuniv.nl | associate_prof | political science | 2022 | Leiden | |
1071 | Claire Vergerio | Leiden | c.vergerio@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
1081 | Marco Verschoor | Leiden | m.verschoor@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
1091 | Cynthia van Vonno | Leiden | vonnocmcvan@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
110 | Niels van Willigen | Leiden | willigen@fsw.leidenuniv.nl | associate_prof | political science | 2022 | Leiden | |
1111 | Shiming Yang | Leiden | s.yang@hum.leidenuniv.nl | postdoc | political science | 2022 | Leiden | |
1121 | Nikoleta Yordanova | Leiden | n.yordanova@fsw.leidenuniv.nl | associate_prof | political science | 2022 | Leiden | |
1131 | Frank de Zwart | Leiden | zwart@fsw.leidenuniv.nl | assistant_prof | political science | 2022 | Leiden | |
1141 | Alessia Aspide | Leiden | a.aspide@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1151 | Cyan Bae | Leiden | c.bae@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1161 | Kathleen Brown | Leiden | k.j.brown@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1171 | Josette Daemen | Leiden | j.a.m.daemen@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1181 | Anastasia Ershova | Leiden | a.ershova@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1191 | Manuel Kaal | Leiden | m.a.c.kaal@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1201 | Eleftherios Karchimakis | Leiden | e.karchimakis@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1211 | Aleksandra Khokhlova | Leiden | a.khokhlova@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1221 | Stijn Koenraads | Leiden | s.a.koenraads@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1231 | Hannah Kuhn | Leiden | h.kuhn@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1241 | Sabine Mokry | Leiden/Uni Berlijn | s.mokry@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | Uni Berlijn |
1251 | Ildikó Plájás | Leiden | i.plajas@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1261 | Zach Reyna | Leiden | z.e.reyna@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1271 | Alexander Schilin | Leiden | a.schilin@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1281 | Pawan Sen | Leiden | p.k.sen@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1291 | Lukas Spielberger | Leiden | l.spielberger@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1301 | Ruben van de Ven | Leiden | r.r.van.de.ven@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1311 | Denny van der Vlist | Leiden | j.m.d.van.der.vlist@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1321 | Thijs Vos | Leiden | t.j.vos@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1331 | Rick van Well | Leiden | r.l.van.well@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1341 | Daan van den Wollenberg | Leiden | d.van.den.wollenberg@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1351 | Elina Zorina | Leiden | e.zorina@fsw.leidenuniv.nl | phd | political science | 2022 | Leiden | |
1361 | Rudy Andeweg | Leiden | andeweg@fsw.leidenuniv.nl | full_prof | political science | 2022 | Leiden | |
1371 | Ivan Bakalov | Leiden | i.bakalov@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1381 | Agha Bayramov | Leiden | a.g.bayramov@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1391 | Jelena Belic | Leiden | j.belic@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1401 | Jelke Bethlehem | Leiden | j.g.bethlehem@fsw.leidenuniv.nl | full_prof | political science | 2022 | Leiden | |
1411 | Peter Castenmiller | Leiden | p.g.castenmiller@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1421 | Tomas Cirhan | Leiden | t.cirhan@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1431 | Oda van Cranenburgh | Leiden | o.b.r.c.van.cranenburgh@fsw.leidenuniv.nl | associate_prof | political science | 2022 | Leiden | |
1441 | Diana Davilla Gordillo | Leiden/Lake Forest college | d.l.davila.gordillo@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | Lake Forest college |
1451 | Rutger Hagen | Leiden | r.hagen@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1461 | Janina Heaphy | Leiden | j.heaphy@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1471 | Galen Irwin | Leiden | irwin@fsw.leidenuniv.nl | full_prof | political science | 2022 | Leiden | |
1481 | Müge Kinacioglu | Leiden | m.kinacioglu@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1491 | Ruud Koole | Leiden | r.a.koole@fsw.leidenuniv.nl | full_prof | political science | 2022 | Leiden | |
1501 | Amber Lauwers | Leiden | a.r.lauwers@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1511 | Gjovalin Macaj | Leiden | g.macaj@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1521 | Marijn Nagtzaam | Leiden | m.a.m.nagtzaam@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1531 | Alexandros Ntaflos | Leiden | a.ntaflos@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1541 | Joyce Outshoorn | Leiden | outshoorn@fsw.leidenuniv.nl | full_prof | political science | 2022 | Leiden | |
1551 | Ellen van Reuler | Leiden | a.a.h.e.van.reuler@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1561 | Arlinda Rrustemi | Leiden | a.r.rrustemi@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1571 | Thomas Scarff | Leiden | t.e.c.scarff@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1581 | Radost Sharenkova - Toshkova | Leiden | r.p.sharenkova@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1591 | Xander Slaski | Leiden | a.m.slaski@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1601 | Vishwesh Sundar | Leiden | v.sundar@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1611 | Olaf van der Veen | Leiden | o.j.van.der.veen@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1621 | Amy Verdun | Leiden/Uni of Victoria | a.c.verdun@fsw.leidenuniv.nl | full_prof | political science | 2022 | Leiden | Uni of Victoria |
1631 | Anouk van Vliet | Leiden | a.l.van.vliet@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1641 | Carina van de Wetering | Leiden | c.c.van.de.wetering@fsw.leidenuniv.nl | other | political science | 2022 | Leiden | |
1661 | Paul Aarts | UvA | P.W.H.Aarts@uva.nl | other | political science | 2022 | UvA | |
1671 | Selina Abraham | UvA | s.abraham@uva.nl | other | political science | 2022 | UvA | |
1681 | Tjitske Akkerman | UvA | T.Akkerman@uva.nl | other | political science | 2022 | UvA | |
1691 | Natasha Anastasiadou | UvA | a.anastasiadou@uva.nl | other | political science | 2022 | UvA | |
1701 | Avyanthi Azis | UvA/Uni Gothenburg | a.azis@uva.nl | phd | political science | 2022 | UvA | Uni Gothenburg |
1711 | Tito Bachmayer | UvA | t.w.bachmayer@uva.nl | phd | political science | 2022 | UvA | |
1721 | Julia Bader | UvA | J.Bader2@uva.nl | associate_prof | political science | 2022 | UvA | |
1731 | Asma Balfaqih | UvA | a.a.m.balfaqih@uva.nl | other | political science | 2022 | UvA | |
1741 | Gulshan Banas | UvA | g.banas@uva.nl | phd | political science | 2022 | UvA | |
1751 | Andreas Baur | UvA | a.baur@uva.nl | phd | political science | 2022 | UvA | |
1761 | Joost Berkhout | UvA | d.j.berkhout@uva.nl | associate_prof | political science | 2022 | UvA | |
1771 | Merve Biten | UvA | m.biten@uva.nl | phd | political science | 2022 | UvA | |
1781 | Astrid Bodini | UvA | a.bodini@uva.nl | phd | political science | 2022 | UvA | |
1791 | Saskia Bonjour | UvA | S.A.Bonjour@uva.nl | associate_prof | political science | 2022 | UvA | |
1801 | Esmé Bosma | UvA | esme.bosma@uva.nl | phd | political science | 2022 | UvA | |
1811 | Dimitris Bouris | UvA | D.Bouris@uva.nl | other | political science | 2022 | UvA | |
1821 | Wouter van der Brug | UvA | W.vanderBrug@uva.nl | full_prof | political science | 2022 | UvA | |
1831 | Brian Burgoon | UvA | B.M.Burgoon@uva.nl | full_prof | political science | 2022 | UvA | |
1841 | Olga Burlyuk | UvA | o.burlyuk@uva.nl | assistant_prof | political science | 2022 | UvA | |
1851 | Kristin Cain | UvA | k.a.cain@uva.nl | phd | political science | 2022 | UvA | |
1861 | Ruth Carlitz | UvA | r.d.carlitz@uva.nl | assistant_prof | political science | 2022 | UvA | |
1871 | Noyonika Das | UvA | n.das@uva.nl | phd | political science | 2022 | UvA | |
1881 | Ursula Daxecker | UvA | U.Daxecker@uva.nl | associate_prof | political science | 2022 | UvA | |
1891 | Jeroen Doomernik | UvA | J.M.J.Doomernik@uva.nl | associate_prof | political science | 2022 | UvA | |
1901 | David van der Duin | Universiteit Gent | d.vanderduin@uva.nl | phd | political science | 2022 | Universiteit Gent | |
1911 | Linet Durmusoglu | UvA | l.r.durmusoglu@uva.nl | phd | political science | 2022 | UvA | |
1921 | Marieke Ekenhorst | UvA | a.h.ekenhorst@uva.nl | phd | political science | 2022 | UvA | |
1931 | Evelyn Ersanili | UvA | e.f.ersanilli@uva.nl | other | political science | 2022 | UvA | |
1941 | Sonja Evaldsson Mellstrom | UvA | a.s.s.evaldssonmellstrom@uva.nl | phd | political science | 2022 | UvA | |
1951 | Meindert Fennema | UvA | m.fennema@uva.nl | full_prof | political science | 2022 | UvA | |
1961 | Matilde Ferretti | UvA | m.ferretti@uva.nl | other | political science | 2022 | UvA | |
1971 | Fatima Festic | UvA | F.Festic@uva.nl | other | political science | 2022 | UvA | |
1981 | Jan Fichtner | UvA | J.R.Fichtner@uva.nl | other | political science | 2022 | UvA | |
1991 | Luc Fransen | UvA | L.W.Fransen@uva.nl | associate_prof | political science | 2022 | UvA | |
2001 | Annette Freyberg-Inan | UvA | A.FreybergInan@uva.nl | full_prof | political science | 2022 | UvA | |
2011 | Maureen Fubara | UvA | m.a.fubara@uva.nl | phd | political science | 2022 | UvA | |
2021 | John Grin | UvA | J.Grin@uva.nl | full_prof | political science | 2022 | UvA | |
203 | Rob Hagendijk | UvA | r.p.hagendijk@uva.nl | other | political science | 2022 | UvA | |
2041 | Armèn Hakhverdian | UvA | A.Hakhverdian@uva.nl | associate_prof | political science | 2022 | UvA | |
2051 | Marcel Hanegraaff | UvA | M.C.Hanegraaff@uva.nl | associate_prof | political science | 2022 | UvA | |
2061 | Imke Harbers | UvA | i.harbers@uva.nl | associate_prof | political science | 2022 | UvA | |
2071 | Eelco Harteveld | UvA | E.Harteveld@uva.nl | assistant_prof | political science | 2022 | UvA | |
2081 | Victor Hartman | UvA | v.m.hartman@uva.nl | other | political science | 2022 | UvA | |
2091 | Anja van Heelsum | UvA | A.J.vanHeelsum@uva.nl | associate_prof | political science | 2022 | UvA | |
2101 | Eelke Heemskerk | UvA | E.M.Heemskerk@uva.nl | associate_prof | political science | 2022 | UvA | |
2111 | Klaas Heemskerk | UvA | K.B.T.Heemskerk@uva.nl | phd | political science | 2022 | UvA | |
2121 | Charlotte Hille | UvA | C.M.L.Hille@uva.nl | assistant_prof | political science | 2022 | UvA | |
2131 | Otto Holman | UvA/Uni of Lausanne | O.H.Holman@uva.nl | associate_prof | political science | 2022 | UvA | Uni of Lausanne |
2141 | Maaike Homan | UvA | m.d.homan@uva.nl | phd | political science | 2022 | UvA | |
2151 | Franca van Hooren | UvA | F.J.vanHooren@uva.nl | assistant_prof | political science | 2022 | UvA | |
2161 | Beste Isleyen | UvA | B.Isleyen@uva.nl | associate_prof | political science | 2022 | UvA | |
2171 | Leonie Jegen | UvA | l.f.jegen@uva.nl | phd | political science | 2022 | UvA | |
2181 | Thomas Jocker | UvA | t.j.jocker@uva.nl | phd | political science | 2022 | UvA | |
2191 | Judith de Jong | UvA | j.c.dejong2@uva.nl | phd | political science | 2022 | UvA | |
2201 | Haylee Kelsall | UvA | h.m.kelsall@uva.nl | phd | political science | 2022 | UvA | |
2211 | Eda Kiriscioglu Tasan | UvA | e.kiriscioglu@uva.nl | phd | political science | 2022 | UvA | |
2221 | Jens van ’t Klooster | UvA | j.m.vantklooster@uva.nl | assistant_prof | political science | 2022 | UvA | |
2231 | Geert-Jan Knoops | UvA/Shandong uni | G.G.J.Knoops@uva.nl | full_prof | political science | 2022 | UvA | Shandong uni |
2241 | Daniel Komaromy | UvA | d.komaromy@uva.nl | other | political science | 2022 | UvA | |
2251 | Sebastian Krapohl | UvA | S.Krapohl@uva.nl | associate_prof | political science | 2022 | UvA | |
2261 | Katie Kuschminder | UvA | k.a.kuschminder@uva.nl | other | political science | 2022 | UvA | |
2271 | Chunglin Kwa | UvA | C.L.Kwa@uva.nl | other | political science | 2022 | UvA | |
2281 | Sarah de Lange | UvA | S.L.deLange@uva.nl | full_prof | political science | 2022 | UvA | |
2291 | David Laws | UvA | D.W.Laws@uva.nl | other | political science | 2022 | UvA | |
2301 | Alexandros Lefteratos | UvA | a.lefteratos@uva.nl | phd | political science | 2022 | UvA | |
2311 | Yue Li | UvA | y.li@uva.nl | other | political science | 2022 | UvA | |
2321 | Chuyu Liu | UvA | c.liu3@uva.nl | assistant_prof | political science | 2022 | UvA | |
2331 | Meredith Loken | UvA | m.m.loken@uva.nl | assistant_prof | political science | 2022 | UvA | |
2341 | Naomi Lührs | UvA | n.f.b.luhrs@uva.nl | other | political science | 2022 | UvA | |
2351 | Kingsley Madueke | UvA | k.l.madueke@uva.nl | other | political science | 2022 | UvA | |
2361 | Rojika Maharjan | UvA | r.maharjan@uva.nl | phd | political science | 2022 | UvA | |
2371 | Piotr Marczynski | UvA | p.k.marczynski@uva.nl | other | political science | 2022 | UvA | |
2381 | Marcel Maussen | UvA | M.J.M.Maussen@uva.nl | associate_prof | political science | 2022 | UvA | |
2391 | Tom van der Meer | UvA | t.w.g.vandermeer@uva.nl | full_prof | political science | 2022 | UvA | |
2401 | Ana Mishkovska Kajevska | UvA | a.mishkovskakajevska@uva.nl | other | political science | 2022 | UvA | |
2411 | Sabah Mofidi | UvA | s.mofidi@uva.nl | other | political science | 2022 | UvA | |
2421 | Marie Morel | UvA | m.w.a.morel@uva.nl | other | political science | 2022 | UvA | |
2431 | Daniel Mügge | UvA | D.K.Muegge@uva.nl | full_prof | political science | 2022 | UvA | |
2441 | Liza Mügge | UvA | L.M.Mugge@uva.nl | associate_prof | political science | 2022 | UvA | |
2451 | Ton Nijhuis | UvA | A.J.J.Nijhuis@uva.nl | full_prof | political science | 2022 | UvA | |
2461 | Nilmawati Nilmawati | UvA | N.Nilmawati@uva.nl | phd | political science | 2022 | UvA | |
2471 | Johan Olsthoorn | UvA | j.c.a.olsthoorn@uva.nl | assistant_prof | political science | 2022 | UvA | |
2481 | Sanne van Oosten | UvA | s.b.vanoosten@uva.nl | phd | political science | 2022 | UvA | |
2491 | Polly Pallister-Wilkins | UvA | P.E.Pallister-Wilkins@uva.nl | associate_prof | political science | 2022 | UvA | |
2501 | Mehdi Parvizi Amineh | UvA | m.p.amineh@uva.nl | other | political science | 2022 | UvA | |
2511 | Daphne van der Pas | UvA | d.j.vanderpas@uva.nl | assistant_prof | political science | 2022 | UvA | |
2521 | Julia Palejko | UvA | j.palejko@uva.nl | other | political science | 2022 | UvA | |
2531 | Steve Pickering | UvA | s.d.pickering@uva.nl | other | political science | 2022 | UvA | |
2541 | Robin Pistorius | UvA | r.j.pistorius@uva.nl | other | political science | 2022 | UvA | |
2551 | Philip van Praag | UvA | P.vanPraag@uva.nl | associate_prof | political science | 2022 | UvA | |
2561 | Paul Raekstad | UvA | p.a.raekstad@uva.nl | other | political science | 2022 | UvA | |
2571 | Emily Ragus | UvA | e.g.ragus@uva.nl | phd | political science | 2022 | UvA | |
2581 | Mariana Riquito Pereira | UvA | m.riquitopereira@uva.nl | phd | political science | 2022 | UvA | |
2591 | Conny Roggeband | UvA | C.M.Roggeband@uva.nl | associate_prof | political science | 2022 | UvA | |
2601 | Matthijs Rooduijn | UvA | m.rooduijn@uva.nl | assistant_prof | political science | 2022 | UvA | |
2611 | Enzo Rossi | UvA | E.Rossi@uva.nl | associate_prof | political science | 2022 | UvA | |
2621 | Zahra Runderkamp | UvA | z.a.runderkamp@uva.nl | phd | political science | 2022 | UvA | |
2631 | Kidjie Ian Saguin | UvA | k.i.saguin@uva.nl | assistant_prof | political science | 2022 | UvA | |
2641 | Rosa Sanchez Salgado | UvA | R.M.Sanchez@uva.nl | assistant_prof | political science | 2022 | UvA | |
2651 | Anne Sastromedjo | UvA | a.r.sastromedjo@uva.nl | phd | political science | 2022 | UvA | |
2661 | Philip Schleifer | UvA | P.Schleifer@uva.nl | associate_prof | political science | 2022 | UvA | |
2671 | Eric Schliesser | UvA | E.S.Schliesser@uva.nl | full_prof | political science | 2022 | UvA | |
2681 | Gijs Schumacher | UvA | G.Schumacher@uva.nl | associate_prof | political science | 2022 | UvA | |
2691 | Merel Serdijn | UvA | M.Serdijn@uva.nl | phd | political science | 2022 | UvA | |
2701 | Yasemin Sivri | UvA | i.r.sivri@uva.nl | phd | political science | 2022 | UvA | |
2711 | Abbey Steele | UvA | A.A.Steele@uva.nl | associate_prof | political science | 2022 | UvA | |
2721 | Eefje Steenvoorden | UvA | e.h.steenvoorden@uva.nl | assistant_prof | political science | 2022 | UvA | |
2731 | Frank Takes | Leiden uni/UvA | F.Takes@uva.nl | other | political science | 2022 | Leiden uni | UvA |
274 | Jean Tillie | UvA | j.n.tillie@uva.nl | full_prof | political science | 2022 | UvA | |
2751 | Geoffrey Underhill | UvA | G.R.D.Underhill@uva.nl | full_prof | political science | 2022 | UvA | |
2761 | Duygu Uysal Dincol | Koc University.UvA | d.m.uysaldincol@uva.nl | phd | political science | 2022 | Koc University.UvA | |
2771 | Nel Vandekerckhove | UvA | n.vandekerckhove@uva.nl | assistant_prof | political science | 2022 | UvA | |
2781 | Imrat Verhoeven | UvA | i.verhoeven@uva.nl | assistant_prof | political science | 2022 | UvA | |
2791 | Floris Vermeulen | UvA | F.F.Vermeulen@uva.nl | associate_prof | political science | 2022 | UvA | |
2801 | Darshan Vigneswaran | UvA | D.V.Vigneswaran@uva.nl | associate_prof | political science | 2022 | UvA | |
2811 | Jessica de Vlieger | UvA | J.V.deVlieger@uva.nl | phd | political science | 2022 | UvA | |
2821 | Katharina Weber | UvA | k.i.weber@uva.nl | phd | political science | 2022 | UvA | |
2831 | Eline Westra | UvA | e.westra@uva.nl | phd | political science | 2022 | UvA | |
2841 | Sofia Margareta Wickberg | UvA | s.m.wickberg@uva.nl | assistant_prof | political science | 2022 | UvA | |
2861 | Loes Aaldering | VU | l.aaldering@vu.nl | assistant_prof | political science | 2022 | VU | |
2871 | Daniela Andrade | VU | d.andrade@vu.nl | other | political science | 2022 | VU | |
2881 | Bastiaan van Apeldoorn | VU | e.b.van.apeldoorn@vu.nl | full_prof | political science | 2022 | VU | |
2891 | Jelle van Baardewijk | VU | j.j.van.baardewijk@vu.nl | assistant_prof | political science | 2022 | VU | |
2901 | Duco Bannink | VU | d.b.d.bannink@vu.nl | associate_prof | political science | 2022 | VU | |
2911 | Bas Becker | VU | b.w.becker@vu.nl | phd | political science | 2022 | VU | |
2921 | Thijs de Boer | VU | t.c.de.boer@vu.nl | phd | political science | 2022 | VU | |
2931 | Hans Bosselaar | VU | j.h.bosselaar@vu.nl | other | political science | 2022 | VU | |
2941 | Hans Boutellier | VU | j.c.j.boutellier@vu.nl | full_prof | political science | 2022 | VU | |
2951 | Jeanne de Bruijn | VU | j.g.m.de.bruijn@vu.nl | full_prof | political science | 2022 | VU | |
2961 | Madalina Busuioc | VU | e.m.busuioc@vu.nl | full_prof | political science | 2022 | VU | |
2971 | Aylin Aydin Cakir | VU | a.aydincakir@vu.nl | other | political science | 2022 | VU | |
2981 | Sinan Cankaya | VU | s.cankaya@vu.nl | assistant_prof | political science | 2022 | VU | |
2991 | Peter Castenmiller | VU | p.g.castenmiller@vu.nl | other | political science | 2022 | VU | |
3001 | Alana Castro de Azevedo | VU | a.castrodeazevedo@vu.nl | phd | political science | 2022 | VU | |
3011 | Eric Cezne | UU/VU | eric.cezne@vu.nl | other | political science | 2022 | UU | VU |
3021 | Liberty Chee | VU | l.chee@vu.nl | other | political science | 2022 | VU | |
3031 | Ben Crum | VU | b.j.j.crum@vu.nl | full_prof | political science | 2022 | VU | |
3041 | Serena Does | VU | full_prof | political science | 2022 | VU | ||
3051 | Yunus Baris Ertürk | VU | y.b.erturk@vu.nl | phd | political science | 2022 | VU | |
3061 | Yarin Eski | VU | y.eski@vu.nl | assistant_prof | political science | 2022 | VU | |
3071 | Fred Fleurke | VU | f.fleurke@vu.nl | full_prof | political science | 2022 | VU | |
3081 | Gjalt de Graaf | VU | g.de.graaf@vu.nl | full_prof | political science | 2022 | VU | |
3091 | Nana de Graaff | VU | n.a.de.graaff@vu.nl | associate_prof | political science | 2022 | VU | |
3101 | Laurens Hartveld | VU | l.d.hartveld@vu.nl | other | political science | 2022 | VU | |
3111 | Hans van den Heuvel | VU | j.h.j.vanden.heuvel@vu.nl | full_prof | political science | 2022 | VU | |
3121 | John Hogan | VU | j.hogan@vu.nl | other | political science | 2022 | VU | |
3131 | Jan Hoogland | VU | j.hoogland@vu.nl | assistant_prof | political science | 2022 | VU | |
3141 | Leo Huberts | VU | l.w.j.c.huberts@vu.nl | full_prof | political science | 2022 | VU | |
3151 | Thomas Janssen | VU | t.o.janssen@vu.nl | other | political science | 2022 | VU | |
3161 | Hortense Jongen | VU | t.o.janssen@vu.nl | assistant_prof | political science | 2022 | VU | |
3171 | Wynand Kastart | VU | w.kastart@vu.nl | other | political science | 2022 | VU | |
3181 | Hans Keman | VU | j.e.keman@vu.nl | full_prof | political science | 2022 | VU | |
3191 | Cille Kaiser | VU | c.kaiser@vu.nl | other | political science | 2022 | VU | |
3201 | Maria Kourpa | VU | m.kourpa@vu.nl | other | political science | 2022 | VU | |
3211 | Benjamin Leidorf-Tida | VU | b.j.a.leidorf-tida@vu.nl | phd | political science | 2022 | VU | |
3221 | Geert Luteijn | VU | other | political science | 2022 | VU | ||
3231 | Philipp Lutz | VU | p.lutz@vu.nl | assistant_prof | political science | 2022 | VU | |
3241 | Maria-Alexandra Martin | VU | m.martin@vu.nl | phd | political science | 2022 | VU | |
3251 | Stefano Merlo | VU | s.merlo@vu.nl | phd | political science | 2022 | VU | |
3261 | Patrick Mello | VU | p.a.mello@vu.nl | assistant_prof | political science | 2022 | VU | |
3271 | Dana Naomi Mills | VU | d.n.mills@vu.nl | other | political science | 2022 | VU | |
3281 | AJGM van Montfort | VU | a.j.g.m.van.montfort@vu.nl | associate_prof | political science | 2022 | VU | |
3291 | Montserrat Koloffon Rosas | VU | montserrat.koloffon@vu.nl | phd | political science | 2022 | VU | |
3301 | Steven Otterman | VU | s.s.otterman@vu.nl | phd | political science | 2022 | VU | |
3311 | Henk Overbeek | VU | h.w.overbeek@vu.nl | full_prof | political science | 2022 | VU | |
3321 | Patrick Overeem | VU | p.overeem@vu.nl | assistant_prof | political science | 2022 | VU | |
3331 | Philipp Pattberg | VU | philipp.pattberg@vu.nl | full_prof | political science | 2022 | VU | |
3341 | Maeve Powlick | VU | k.m.powlick@vu.nl | other | political science | 2022 | VU | |
3351 | Michiel van Schagen | VU | m.van.schagen@vu.nl | other | political science | 2022 | VU | |
3361 | Kayla Schwoerer | VU | k.n.schwoerer@vu.nl | assistant_prof | political science | 2022 | VU | |
3371 | Katherine Senneville | VU | k.m.senneville@vu.nl | other | political science | 2022 | VU | |
3381 | Frederique Six | VU | f.e.six@vu.nl | associate_prof | political science | 2022 | VU | |
3391 | Boris Slijper | VU | b.slijper@vu.nl | other | political science | 2022 | VU | |
3401 | Diederik Stadig | VU | d.j.stadig@vu.nl | phd | political science | 2022 | VU | |
3411 | Ronald van Steden | VU | r.van.steden@vu.nl | associate_prof | political science | 2022 | VU | |
3421 | Ozlem Terzi | VU | o.terzi@vu.nl | other | political science | 2022 | VU | |
3431 | JS Timmer | VU | j.s.timmer@vu.nl | assistant_prof | political science | 2022 | VU | |
3441 | Willem Trommel | VU | w.a.trommel@vu.nl | full_prof | political science | 2022 | VU | |
3451 | Lieselot Vandenbussche | VU | l.vandenbussche@vu.nl | assistant_prof | political science | 2022 | VU | |
3461 | Bram Verhulst | VU | b.w.verhulst@vu.nl | other | political science | 2022 | VU | |
3471 | Sietske van der Vliet | VU | s.van.der.vliet@vu.nl | other | political science | 2022 | VU | |
3481 | Catherine de Vries | Bocconi University/UvA | c.e.de.vries@vu.nl | full_prof | political science | 2022 | Bocconi University | UvA |
3491 | FP Wagenaar | VU | f.p.wagenaar@vu.nl | assistant_prof | political science | 2022 | VU | |
3501 | Wolfgang Wagner | VU | w.m.wagner@vu.nl | full_prof | political science | 2022 | VU | |
3511 | Chendi Wang | VU | chendi.wang@vu.nl | assistant_prof | political science | 2022 | VU | |
3521 | Pieter van Wijnen | VU | p.van.wijnen@vu.nl | other | political science | 2022 | VU | |
3531 | Kristina Weissmueller | VU | k.s.weissmueller@vu.nl | assistant_prof | political science | 2022 | VU |
The excel file does not contain unique identifiers. This is important when combining multiple data sources to help you keep track of individuals in your sample, and make sure that the right information is matched to the right person.
set.seed(2806)
df$id <- ids::random_id(n = nrow(df), bytes = 3, use_openssl = FALSE)
head(df$id)
#> [1] "f84cb8" "ad5eeb" "5a5e57" "7c3ed2" "944260" "6c23fc"
# should be 'f84cb8' 'ad5eeb' '5a5e57' '7c3ed2' '944260' '6c23fc' for reproducibility
Now, we get to the nitty-gritty: creating separate objects from first and last names.
… this shouldn’t be too hard right? Let’s look at some of the names.
head(df$name)
#> [1] "Ece Arat" "Marcel Van Assen" "Weverthon Barbosa Machado"
#> [4] "Vardan Barsegyan" "Rutger Blom" "Lute Bos"
Well, in principle it isn’t! The names are in a standard format, e.g. “Jane Doe”, so we just extract the first word for the first name, and the last word for the last name.
For most cases, that is completely true! So in a sense our lives are easy, BUT…
There are also a handful of exceptions, which we need to deal with in some way. For the second and third names in the data (“Marcel van Assen”, “Weverthon Barbosa Machado”), we see that the full name consists of more than 2 words.
In the case of the first name, I can tell you that the 2nd word of the name string is something called a nobiliary particle. These are prepositions that often come up in Dutch names (“Van”, “De”, “Ten”, among others), but also in some Spanish names (“Da”), French names (“Du”, “Le”), German names (“Von”, “Zu”) and those are just a few examples.
For the second name, a quick Google search informed me that the 2nd word of the name string is part of the last name. In Spanish- and Portuguese-speaking countries, it is quite common to take on the last names of both parents.
For matching names to various databases, it is useful to store last names and nobiliary particles in different objects. This has to do with the fact that sometimes, only the last name will give a match, while other databases require the full last name including nobiliary particles to match people from your dataframe.
In the case of multiple last names, it is a bit trickier. If a name is more than two words but there are no nobiliary particles, it is not easy to infer whether the names in the middle are actually part of the first or the last name, without checking all of them by hand. Therefore, I would advise you to simply try to extract the first word for the first name, and the last word for the last name to be sure.
So, now it is up to you to decide how you would go about extracting in separate objects of your dataframe:
first names
nobiliary particles
last names
For these operations, I would advise you to use functions from the stringi
package or use the ‘gsub’ function from base R.
# Your code here!
A list of some common nobiliary particles
c("van den", "van der", "van de", "vanden", "vande", "van 't", "op de", "de la", "den", "van", "de",
"ten", "ter", "el", "la", "di")
The names are pretty neatly in the format “First name(s) last name(s)”. So we know that the last names are at the end of the string. One difficulty we have, is that while for most people, the last name is simply the last ‘word’ in the name string, for a handful of people the last name takes up multiple words. For some, it is longer because there are nobiliary particles in the name, which we want to extract in a different object, while for others it is longer because they have multiple last names.
# Some names have nobiliary particles (e.g. 'Da Costa' or 'Du Bois'). Especially in Dutch names,
# they are very common. We extract these in a separate object
np <- c("(V|v)an (D|d)er", "(V|v)an (D|d)en", "(V|v)an (D|d)e", "(V|v)ande(n)?", "(V|v)an '(T|t)", "(V|v)an'(T|t)",
"(V|v)an (H|h)et", "(V|v)on (D|d)er", "(O|o)p (D|d)en?", "(O|o)p 't", "(O|o)f ten", "(A|a)an de(n)?",
"(D|d)e (L|l)a", "(I|i)n (H|h)et", "(I|i)n '(T|t)", "(I|i)n'(T|t)", "(I|i)n (T|t)", "(I|i)n (D|d)er",
"(B|b)ij (D|d)e")
np2 <- c("\\s(L|l)a\\s", "\\s(O|o)p\\s", "\\s(V|v)an\\s", "\\s(V|v)on\\s", "\\s(D|d)en\\s", "\\s(D|d)er\\s",
"\\s(D|d)el\\s", "\\s(D|d)(e|a|u|i)\\s", "\\s(D|d)os?\\s", "\\s(T|t)er\\s", "\\s(T|t)en\\s", "\\s(T|t)e\\s",
"\\s'(T|t)\\s", "\\s(L|l)e\\s", "\\s(E|A)l-", "\\s[(A|a)(E|e)](L|l)'?\\s", "\\s(D|d)'", "\\szu\\s",
"\\s(Z|z)ur\\s", "\\s(Y|y)\\s", "\\s(E|e)\\s")
# First we extract the nobiliary particles consisting of multiple words
df$np <- str_extract(df$name, paste0(np, collapse = "|"))
df$np <- ifelse(is.na(df$np), str_extract(df$name, paste0(np2, collapse = "|")), df$np) #only extract the single-word NP if it is not filled yet
# lastname: everything after nobiliary particle
df$lastname <- ifelse(!is.na(df$np), str_remove(df$name, paste0("^.*", df$np)), word(df$name, -1))
# some cleaning: make the string lowercase and remove extra whitespaces
df$np <- tolower(trimws(df$np, which = "both"))
df$np <- ifelse(is.na(df$np), "", df$np)
df$lastname <- tolower(trimws(df$lastname, which = "both"))
df$lastname <- stri_trans_general(df$lastname, id = "latin-ascii") #remove diacritics
df$lastname <- str_extract(df$lastname, "[:lower:]+") # if multiple last names after the nobiliary particle, we take the first one
Due to the standard format of the name object, we can simply take out the first word of the name string. Please note that some people only have initials instead of a first name.
df$firstname <- str_remove(df$name, "\\s.*$") # remove everything from the name object after the first whitespace
# I first detect the initials by using a general pattern - some regular expression magic if you will.
# you can update this to match what you find in your own data
initialpattern <- paste(c("^([:upper:]\\.)+[:upper:]$", # Last initial does not have a full stop at the end (e.g. A.A.A)
"([:upper:]\\.+)+", # All initials have full stops at the end (e.g. A.A.A.)
"^\\s?[:upper:]+$"), # Entire string consists of capital letters
collapse = "|")
df$ini <- str_extract(df$firstname, paste0(initialpattern)) # we extract the initials from format we defined, and save them in a different object
df$firstname <- ifelse(!is.na(df$ini), str_remove(df$firstname, df$ini), df$firstname) # extract initials from first name object when present, so that the first name object really only contains first names
df$ini <- ifelse(is.na(df$ini), "", df$ini) # set initials object to empty if there are no initials
# some cleaning: make the first name lowercase
df$firstname <- tolower(df$firstname)
df$firstname <- stri_trans_general(df$firstname, id="latin-ascii") #remove diacritics
Now with cleaned first and last names, ID variable and some data manipulation on the other variables.
df_names <- df
fsave(df_names)
Copyright © 2024 Jochem Tolsma