Datasets:

Modalities:
Text
Formats:
csv
Languages:
French
DOI:
Libraries:
Datasets
pandas
License:
File size: 3,429 Bytes
b7a907f
 
 
 
 
 
 
 
 
1be6ef7
b7a907f
 
 
 
 
1be6ef7
b7a907f
 
 
 
 
 
 
da6a4e7
 
 
 
b7a907f
 
 
d48b8b7
 
b7a907f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87ab8c0
b7a907f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
---
dataset_info:
  features:
  - name: lastname
    dtype: string
  - name: occurrences
    dtype: int64
  splits:
  - name: train
    num_examples: 607829
license: mit
language:
- fr
pretty_name: Last names in France
size_categories:
- 100K<n<1M
---
# French Last Names from Death Records (1970-2024)

This dataset contains French lasst 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

### Random name generator demo

go to https://sctg-development.github.io/french-names-extractor/

### Data Source
The data is sourced from INSEE's death records database. It includes last 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](https://github.com/sctg-development/french-names-extractor)

### Time Period
- Start: 1970
- End: September 2024

### Features
The dataset contains two columns:
- `lastname`: The last name of the deceased person
- `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

```python
from datasets import load_dataset
dataset = load_dataset("eltorio/french_last_names_insee_2024")
```

## License

MIT License

## Citation

```bibtex
@dataset{french_last_names_insee_2024,
  author = {Ronan Le Meillat},
  title = {French Last 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 last 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
6. Counting occurrences of each name

## Dataset Structure

```python
DatasetDict({
    'train': Dataset({
        features: ['lastname', 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.