I did not have the chance to attend the latest ESA’s Living Planet Symposium so I was curious to read Olivier’s report. The picture in his post shows a crowded room… but what stroke me most is that it looks like 90% of the people in the room are middle-age men. There is no public data on the age or the sex of the participants to the LPS16. But there is a page on the LPS16 website listing all the authors.

A room at LPS16
A room at LPS16
I downloaded this page:$ wget http://lps16.esa.int/page_programme_authors.php Using a html parser one can extract the first names of each participant based on the fact that the first name and last name of each author are contained in the h2 tag: $ hxselect -s '\n' -c 'h2' < page_programme_authors.php | uniq | cut -d, -f2 | cut -d ' ' -f2 > authors_firstname.csv  I had to pipe the output of hxselect to the uniq utility because some authors appear several times with different affiliations (for instance I counted five Jordi Ingladas in the author list). So I made the hypothesis that two different authors cannot have the same pair of {first name, last name}. The resulting list has 6931 authors (7383 if duplicates are not removed).I found on the Internet the genderize API to easily determine the gender of a first name. The API is limited to a maximum of 10 names per request, so the API must be called in a loop to query more names. Also, the API is free, but limited to 1000 queries per day. This small python script prints the gender of the top first 999 authors in the list (I wasted one query to check that the API was working). from gender import getGendersimport numpy as npfnames=np.genfromtxt('authors_firstname.csv',dtype='str').tolist()for i in range(len(fnames)/10):    a=fnames[i*10:i*10+10]    g=getGenders(a)    print(g) Among the first 999 authors in the list, the genderize API finds 687 males, 261 females and 51 « unknown ». This corresponds to a sex ratio of 1 female to 2.6 males. In other words, 27% of the authors are women. According to UNESCO 28% of the world’s researchers are women.
Estimated proportion of male and female authors at Living Planet Symposium 2016
This is a very crude analysis of the gender balance since I did not account for transgender people. However, it seems that the gender balance at LPS16 was not as bad as I thought at first sight… But it could be better!

5 thoughts on “Sex ratio at LPS16

  1. Dear Simon, thanks a lot for this reproducible research post ! In your initial survey of the photograph, could you tell us which API you used to tell the gender from the haircut ?Olivier

  2. I used an advanced expert visual analysis based on the Normalized Difference Haircut Index (NDHI).

  3. « The picture in his post shows a crowded room… but what stroke me most is that it looks like that 90% of the people in the room are middle-age men. »Or maybe all the girls are in the front rows and you can’t see them in the picture, which is taken from the back of the room? It makes sense, as I am the speaker in this picture… or maybe I have to live with the idea of being followed by an audience of middle-aged men!

  4. It is more likely that the attendance of these belettes is due to the fact that they were waiting for my talk, just in the next session, to ensure to get a seat!

  5. Dear Dr Mermoz, the main motivation of this post was to promote the participation of women to science, not to stimulate your endocrine system.

Répondre à Stéphane Mermoz Annuler la réponse

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

Ce site utilise Akismet pour réduire les indésirables. En savoir plus sur comment les données de vos commentaires sont utilisées.