law_resume | R Documentation |
Resumes were sent out to 316 top law firms in the United States, and there were two randomized characteristics of each resume. First, the gender associated with the resume was randomized by assigning a first name of either James or Julia. Second, the socioeconomic class of the candidate was randomly assigned and represented through five minor changes associated with personal interests and other other minor details (e.g. an extracurricular activity of sailing team vs track and field). The outcome variable was whether the candidate was received an interview.
law_resume
A data frame with 316 observations on the following 3 variables. Each row represents a resume sent a top law firm for this experiment.
The resume represented irrelevant details suggesting
either "low"
or "high"
socioeconomic class.
The
resume implied the candidate was either "male"
or "female"
.
If the candidate received an invitation for an
"interview"
or "not"
.
For a casual overview, see https://hbr.org/2016/12/research-how-subtle-class-cues-can-backfire-on-your-resume.
For the academic paper, see Tilcsik A, Rivera LA. 2016. Class Advantage, Commitment Penalty. The Gendered Effect of Social Class Signals in an Elite Labor Market. American Sociological Review 81:6 p1097-1131. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1177/0003122416668154")}.
tapply(law_resume$outcome == "interview", law_resume[, c("class", "gender")], mean)
m <- glm(I(outcome == "interview") ~ gender * class, data = law_resume, family = binomial)
summary(m)
predict(m, type = "response")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.