Sex ratio at LPS16

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

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.

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!

Plus d'actualités

BIOMASS, the third launched satellite mission designed at CESBIO !

After SMOS in 2009, and VENµS in 2017, the CESBIO Laboratory is very proud to see its third proposed mission, Biomass, reach orbit. As always, it has been a long journey from the idea, at the beginning of the century, to the selection in 2013 as the seventh Earth Explorer Mission by ESA, to the […]

Biophysical parameter retrieval from Sentinel-2 images using physics-driven deep learning for PROSAIL inversion

The results presented here are based on published work: Y. Zérah, S. Valero, and J. Inglada. « Physics-constrained deep learning for biophysical parameter retrieval from sentinel-2 images: Inversion of the prosail model« , in Remote Sensing of Environment, doi: 10.1016/j.rse.2024.114309. This work is part of the PhD of Yoël Zérah, supervised by Jordi Inglada and Silvia Valero. […]

Copernicus should keep S2A operational after S2C launch

The launch of Sentinel-2C (S2C) is scheduled on the 4th of September 2024, next week ! After 3 months of commissioning phase, S2C will replace S2A, to fulfill the Sentinel-2 mission together with S2B. S2B will later be replaced by S2D. The current plans are to keep S2A as a redundant satellite, in case something […]

Rechercher