firstname
stringlengths
2
25
sexe
int64
1
2
occurrences
int64
2
3.73M
marie
2
3,734,360
jean
1
2,059,124
louis
1
1,245,738
jeanne
2
1,141,740
pierre
1
1,108,371
joseph
1
1,086,904
louise
2
1,069,918
andre
1
1,012,213
marie
1
953,076
henri
1
899,254
marcel
1
845,588
rene
1
799,654
georges
1
697,765
paul
1
655,313
francois
1
630,502
marguerite
2
620,388
michel
1
575,798
maurice
1
555,992
madeleine
2
552,547
roger
1
535,892
robert
1
526,871
emile
1
495,439
charles
1
473,313
albert
1
464,969
jacques
1
463,089
therese
2
447,393
marcelle
2
443,693
germaine
2
431,208
lucien
1
424,918
claude
1
424,414
yvonne
2
420,389
suzanne
2
414,739
henriette
2
414,677
eugene
1
411,905
raymond
1
406,332
josephine
2
397,438
renee
2
374,169
francoise
2
368,136
leon
1
356,269
auguste
1
354,801
andree
2
354,743
bernard
1
337,988
eugenie
2
337,814
georgette
2
317,914
maria
2
307,637
helene
2
288,747
anne
2
284,839
lucienne
2
284,037
denise
2
283,048
jules
1
278,199
antoine
1
268,558
jacqueline
2
262,557
fernand
1
257,694
antoinette
2
256,814
paulette
2
256,686
marthe
2
255,787
augustine
2
254,359
simone
2
240,347
daniel
1
238,744
raymonde
2
236,992
gerard
1
236,522
alice
2
233,724
juliette
2
232,246
yves
1
224,699
odette
2
223,467
victor
1
220,107
marius
1
218,639
gaston
1
206,100
rose
2
202,585
berthe
2
200,680
guy
1
199,107
alain
1
198,481
gabrielle
2
197,987
gabriel
1
196,237
lucie
2
195,820
fernande
2
193,061
alfred
1
184,944
christian
1
179,531
julien
1
178,975
gilbert
1
176,998
ernest
1
175,347
yvette
2
172,845
jeannine
2
172,670
monique
2
170,815
genevieve
2
162,637
angele
2
157,596
philippe
1
156,066
alphonse
1
152,635
alexandre
1
152,337
catherine
2
148,238
edouard
1
146,641
anna
2
145,752
charlotte
2
143,859
emilienne
2
139,008
camille
1
133,318
christiane
2
132,058
elise
2
129,936
leonie
2
129,332
francis
1
128,830
simonne
2
128,201

French First Names from Death Records (1970-2024)

This dataset contains French first names extracted from death records provided by INSEE (French National Institute of Statistics and Economic Studies) covering the period from 1970 to September 2024.

Dataset Description

Data Source

The data is sourced from INSEE's death records database. It includes first names of deceased individuals in France, providing valuable insights into naming patterns across different generations.

The extractor source code can be found on Github sctg-development/french-names-extractor

Time Period

  • Start: 1970
  • End: September 2024

Features

The dataset contains three columns:

  • firstname: The first name of the deceased person
  • sexe: Gender indicator (1 = male, 2 = female)
  • occurrences: Number of occurrences of the name in the records

Data Processing

The following filtering criteria were applied to clean the data:

  • Names with length > 1 character
  • Names not composed of repeated single characters
  • Only names with at least 2 occurrences are included

Data Format

  • File format: CSV
  • Encoding: UTF-8
  • Separator: comma (,)

Usage

This dataset can be used for various purposes, including:

  • Historical analysis of French naming patterns
  • Demographic studies
  • Gender classification of French names
  • Cultural evolution studies
  • Genealogical research

Loading the Dataset

from datasets import load_dataset

dataset = load_dataset("eltorio/french_first_names_insee_2024")

License

MIT License

Citation

@dataset{french_first_names_insee_2024,
  author = {Ronan Le Meillat},
  title = {French First Names from Death Records (1970-2024)},
  year = {2024},
  publisher = {Hugging Face},
  source = {INSEE},
}

Dataset Creation

Data Collection

The data was extracted from INSEE's death records database, which maintains official records of all deaths in France.

Preprocessing

  1. Extraction of first names from death records
  2. Filtering out names with only 1 character
  3. Filtering out names composed of repeated single characters
  4. Removal of names with single occurrence
  5. Gender coding (1 for male, 2 for female)
  6. Counting occurrences of each name

Dataset Structure

DatasetDict({
    'train': Dataset({
        features: ['firstname', 'sexe', 'occurrences'],
        num_rows: [NUMBER_OF_ROWS]
    })
})

Additional Information

Source Data

The original data was obtained from INSEE (Institut National de la Statistique et des Études Économiques), the French National Institute of Statistics and Economic Studies.

Maintenance

This dataset is a static snapshot and reflects death records up to September 2024.

Known Limitations

  • The dataset only includes names from death records, which may not fully represent contemporary naming patterns
  • Historical records might have some inconsistencies in spelling or recording
  • The dataset only includes names with at least 2 occurrences, which might exclude some rare or unique names

Acknowledgments

Thanks to INSEE for making this data publicly available.

Downloads last month
19
Edit dataset card