9What other gender disparities do we observe in oral sessions?
Author
Rebecca S. Chen & Petroula Botsidou
Note: this analysis is only part of the Appendix of the manuscript
What other gender disparities can we observe in oral sessions?
More specifically, we also collected data on whether positive appraisal was given by a questioner, whether a person asked a question without raising their hand or being chosen by the session host to do so (a jumper), whether a speaker talked longer than their allocated time, and if a question was criticizing the speaker. Depending on the question, we investigated the effect of the question asker’s gender, speaker’s gender, host’s gender while correcting for appropriate confounders such as talk number.
For all analysis, we only excluded questions that were follow-up questions, and those asked by the host. This means that these data include manipulated and unmanipulated sessions, as we do not expect our manipulation to interfere with what a questioner says exactly.
9.1 Positive appraisal
Positive appraisal was defined as any positive words towards the speaker, but excluding when simply “Thank you for your talk” was said. However, if this comment included a compliment such as “Thank you for your nice talk”, this was counted as positive appraisal.
We used binomial GLMMs to address the effect of the gender of the questioner and gender of the speaker, and corrected for the question number within that Q&A session. We assessed the fit of each variable using a likelihood ratio test and included only the variables that explained significant variation in the final model.
9.1.1 Receiving
# explore the data table(data_analysis$compliment, data_analysis$questioner_gender) %>%kbl() %>%kable_classic_2()
These results show is that the likelihood of a questioner giving a words of positive appraisal is not affected by perceived gender.
9.2 Jumpers
Next, we asked whether men or women are more likely to ask a question without being allocated to do so (i.e. chosen by the session host to ask your question). Since this might have to do with the perceived ‘authority’ of the session host, we controlled for the gender of the session host as well.
We used binomial GLMMs to address the effect of the gender of the questioner, and corrected for question number and gender of the session host. We assessed the fit of each variable using a likelihood ratio test and included only the variables that explained significant variation in the final model.
# recode NA to 'no jumper' = 0jumperdata <- data_analysis %>%mutate(jumper =as.factor(case_when(is.na(jumper) ~"0", jumper =="1"~"1" )))# explore the data table(jumperdata$jumper, jumperdata$questioner_gender) %>%kbl() %>%kable_classic_2()
F
M
0
486
526
1
5
13
# build initial models## question nrmodel_jumper_q_nr <-glmer(jumper ~ question_nr + (1|session_id/talk_id), data =subset(jumperdata, !is.na(question_nr)), family ="binomial") model_jumper_q_nr_null <-glmer(jumper ~1+ (1|session_id/talk_id), data =subset(jumperdata, !is.na(question_nr)), family ="binomial") anova(model_jumper_q_nr, model_jumper_q_nr_null) # not significant
# nothing is significant, trend for gender questioner
These results show is that the likelihood of a person jumping a question not significantly affected by any of the variables. There was however a tendency for men to be more likely to jump a question compared to women. Note that the inference of these models is however limited, since jumpers were rare (N = 18).
9.3 Speaker over time
Next, we investigated the probability that a speaker talks for longer than their allocated speaking time is affected by speaker gender. We did not expect that any other confounding variables would explain variation in speaking overtime, since this is something that was prepared by only the speaker.
# have to summarize by talk not per questiondata_overtime <- data_analysis %>%select(talk_id, session_id, overtime, speaker_gender, speaker_career_short) %>%unique()# N = nrow(data_overtime)
These results show is that the likelihood of a person asking or receiving a critical question was not affected by the gender of the questioner nor speaker. Note that the inference of these models is however limited, since critical questions were rare and subject to observer bias (N = 43).