juliensimon commited on
Commit
d4c8906
·
verified ·
1 Parent(s): 1122e75

Update astronomer database: 11,755 astronomers

Browse files
Files changed (3) hide show
  1. README.md +59 -59
  2. banner.jpg +3 -0
  3. data/astronomers.parquet +2 -2
README.md CHANGED
@@ -3,12 +3,7 @@ license: cc0-1.0
3
  pretty_name: "Astronomer Database"
4
  language:
5
  - en
6
- description: >-
7
- A comprehensive database of astronomers throughout history, sourced from Wikidata.
8
- 11,613 astronomers from 266 countries with fields of work,
9
- awards, and employer history.
10
- size_categories:
11
- - 10K<n<100K
12
  task_categories:
13
  - tabular-classification
14
  tags:
@@ -19,66 +14,75 @@ tags:
19
  - open-data
20
  - tabular-data
21
  - parquet
 
 
22
  configs:
23
  - config_name: default
24
- default: true
25
  data_files:
26
  - split: train
27
  path: data/astronomers.parquet
 
28
  ---
29
 
30
  # Astronomer Database
31
 
32
- *Part of the [Astronomy Datasets](https://huggingface.co/collections/juliensimon/astronomy-datasets-69c24caf2f17e36128946743) collection on Hugging Face.*
33
 
34
- Complete database of astronomers throughout history — **11,613** individuals
35
- from **266** countries, sourced from [Wikidata](https://www.wikidata.org/).
 
 
 
 
 
36
 
37
  ## Dataset description
38
 
39
- From ancient stargazers to modern astrophysicists, this dataset captures the lives and
40
- work of astronomers across the ages. It spans from historical figures like Galileo Galilei
41
- and Johannes Kepler to contemporary researchers studying gravitational waves, exoplanets,
42
- and the large-scale structure of the universe.
 
43
 
44
- The dataset includes birth/death dates, sex, nationality, employer history (universities,
45
- observatories, research institutions), awards received (Nobel Prize, etc.), and fields
46
- of work (cosmology, planetary science, stellar physics, etc.). This enables historical
47
- analysis of the astronomy profession, diversity-in-STEM research, and bibliometric studies
48
- of scientific communities.
49
 
50
- Sourced from Wikidata's structured knowledge base (property P106=Q11063 for
51
- occupation: astronomer), which is maintained by the Wikipedia/Wikidata community
52
- and updated continuously.
53
 
54
  ## Schema
55
 
56
- | Column | Type | Description |
57
- |--------|------|-------------|
58
- | `wikidata_id` | string | Wikidata entity ID (e.g. Q935) |
59
- | `name` | string | Full name |
60
- | `birth_date` | string | Date of birth (YYYY-MM-DD) |
61
- | `death_date` | string | Date of death if deceased |
62
- | `sex` | string | Sex (male/female) |
63
- | `nationality` | string | Nationality |
64
- | `employers` | string | Employers, semicolon-separated (universities, observatories, institutes) |
65
- | `awards` | string | Awards received, semicolon-separated |
66
- | `fields_of_work` | string | Fields of work, semicolon-separated (e.g. astrophysics, cosmology) |
67
- | `birth_year` | int | Year of birth (derived) |
68
 
69
  ## Quick stats
70
 
71
- - **11,613** astronomers from **266** countries
72
- - **9,685** male, **1,394** female
73
- - **3,025** with recorded fields of work
74
- - **2,466** with recorded awards
75
- - Top nationalities: United States (1,563), Germany (564), France (556), United Kingdom (360), Italy (280)
76
 
77
  ## Usage
78
 
79
  ```python
80
  from datasets import load_dataset
81
 
 
 
 
 
 
 
 
82
  ds = load_dataset("juliensimon/astronomer-database", split="train")
83
  df = ds.to_pandas()
84
 
@@ -97,47 +101,43 @@ print(f"{len(cosmologists):,} cosmologists")
97
  nobel = df[df["awards"].str.contains("Nobel", na=False)]
98
  print(f"{len(nobel):,} Nobel Prize recipients")
99
 
100
- # University affiliation
101
- cambridge = df[df["employers"].str.contains("Cambridge", na=False)]
102
- print(f"{len(cambridge):,} Cambridge-affiliated astronomers")
 
 
 
 
103
  ```
104
 
105
  ## Data source
106
 
107
- [Wikidata](https://www.wikidata.org/) SPARQL endpoint. Astronomers identified via
108
- property P106 (occupation) = Q11063 (astronomer). Data is community-curated and
109
- updated continuously by Wikipedia editors worldwide.
110
-
111
- ## Update schedule
112
-
113
- Quarterly (January, April, July, October). Re-run manually at any time to pick up new entries.
114
 
115
  ## Related datasets
116
 
117
- - [astronaut-database](https://huggingface.co/datasets/juliensimon/astronaut-database) — Every person who has traveled to space
118
- - [observatory-database](https://huggingface.co/datasets/juliensimon/observatory-database) — Astronomical observatories worldwide
119
 
120
- ## Pipeline
121
 
122
- Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
123
 
124
- ## Support
125
 
126
- If you find this dataset useful, please give it a ❤️ on the [dataset page](https://huggingface.co/datasets/juliensimon/astronomer-database) and share feedback in the Community tab! Also consider giving a ⭐️ to the [space-datasets](https://github.com/juliensimon/space-datasets) repo.
127
 
128
  ## Citation
129
 
130
  ```bibtex
131
  @dataset{astronomer_database,
132
- author = {Simon, Julien},
133
  title = {Astronomer Database},
 
134
  year = {2026},
135
- publisher = {Hugging Face},
136
  url = {https://huggingface.co/datasets/juliensimon/astronomer-database},
137
- note = {Sourced from Wikidata (CC0)}
138
  }
139
  ```
140
 
141
  ## License
142
 
143
- [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/) (Wikidata content is public domain)
 
3
  pretty_name: "Astronomer Database"
4
  language:
5
  - en
6
+ description: "A comprehensive database of astronomers throughout history, sourced from Wikidata. From ancient stargazers to modern astrophysicists, this dataset captures the lives and work of astronomers across th"
 
 
 
 
 
7
  task_categories:
8
  - tabular-classification
9
  tags:
 
14
  - open-data
15
  - tabular-data
16
  - parquet
17
+ size_categories:
18
+ - 10K<n<100K
19
  configs:
20
  - config_name: default
 
21
  data_files:
22
  - split: train
23
  path: data/astronomers.parquet
24
+ default: true
25
  ---
26
 
27
  # Astronomer Database
28
 
 
29
 
30
+ <div align="center">
31
+ <img src="banner.jpg" alt="Blue Marble — high-definition image of Earth from space" width="400">
32
+ <p><em>Credit: NASA/GSFC/Suomi NPP</em></p>
33
+ </div>
34
+
35
+
36
+ *Part of a [dataset collection](https://huggingface.co/collections/juliensimon/space-essentials-69cbafd7ea046a10eff11405) on Hugging Face.*
37
 
38
  ## Dataset description
39
 
40
+ A comprehensive database of astronomers throughout history, sourced from Wikidata.
41
+
42
+ From ancient stargazers to modern astrophysicists, this dataset captures the lives and work of astronomers across the ages. It spans from historical figures like Galileo Galilei and Johannes Kepler to contemporary researchers studying gravitational waves, exoplanets, and the large-scale structure of the universe.
43
+
44
+ The dataset includes birth/death dates, sex, nationality, employer history (universities, observatories, research institutions), awards received (Nobel Prize, etc.), and fields of work (cosmology, planetary science, stellar physics, etc.). This enables historical analysis of the astronomy profession, diversity-in-STEM research, and bibliometric studies of scientific communities.
45
 
46
+ Sourced from Wikidata's structured knowledge base (property P106=Q11063 for occupation: astronomer), which is maintained by the Wikipedia/Wikidata community and updated continuously.
 
 
 
 
47
 
48
+
49
+ This dataset is suitable for **tabular classification** tasks.
 
50
 
51
  ## Schema
52
 
53
+ | Column | Type | Description | Sample | Null % |
54
+ |--------|------|-------------|--------|--------|
55
+ | `wikidata_id` | str | Wikidata entity ID (e.g. 'Q935' for Galileo Galilei); resolves to https://www.wikidata.org/wiki/Q935 — links to full biographical and bibliographic data including publications, awards, and institutional affiliations | Q4540405 | 0.0% |
56
+ | `name` | string | Full name in English as recorded in Wikidata (Latin transliteration for non-Latin scripts) | 'Abd al-'Aziz al-Wafa'i | 0.0% |
57
+ | `birth_date` | str | Date of birth in ISO 8601 format (YYYY-MM-DD); null for ancient or medieval astronomers whose birth year is uncertain, and occasionally for modern astronomers with private records | 1408-01-01 | 23.3% |
58
+ | `death_date` | str | Date of death in ISO 8601 format (YYYY-MM-DD); null for living astronomers | 1471-01-01 | 49.1% |
59
+ | `sex` | string | Recorded biological sex; values: 'male', 'female'; null if not recorded in Wikidata | male | 4.6% |
60
+ | `nationality` | string | Country of primary professional affiliation or citizenship (e.g. 'United States', 'Germany'); uses full English country name; may differ from country of birth | Egypt | 33.7% |
61
+ | `employers` | string | Universities, observatories, and research institutes where the astronomer has worked, semicolon-separated (e.g. 'Harvard University; Smithsonian Astrophysical Observatory'); null if no employer is recorded in Wikidata | Harvard University | 54.5% |
62
+ | `awards` | string | Honours and prizes received, semicolon-separated (e.g. 'Nobel Prize in Physics; Kavli Prize'); null if no awards are recorded in Wikidata | Presidential Early Career Award for S... | 79.0% |
63
+ | `fields_of_work` | string | Primary research specializations, semicolon-separated (e.g. 'astrophysics; cosmology; stellar astronomy'); drawn from Wikidata property P101; null if not categorized | astronomy; mathematics | 74.1% |
64
+ | `birth_year` | Int64 | Integer year extracted from birth_date; enables era-based filtering (e.g. pre-telescopic vs. modern) when full date is unavailable; null only if birth date is entirely unknown | 1408 | 24.1% |
65
 
66
  ## Quick stats
67
 
68
+ - **11,755** astronomers from **268** countries
69
+ - **9,789** male, **1,415** female
70
+ - **3,043** with recorded fields of work
71
+ - **2,473** with recorded awards
72
+ - Top nationalities: United States (1,565), Germany (565), France (556), United Kingdom (362), Italy (280)
73
 
74
  ## Usage
75
 
76
  ```python
77
  from datasets import load_dataset
78
 
79
+ ds = load_dataset("juliensimon/astronomer-database", split="train")
80
+ df = ds.to_pandas()
81
+ ```
82
+
83
+ ```python
84
+ from datasets import load_dataset
85
+
86
  ds = load_dataset("juliensimon/astronomer-database", split="train")
87
  df = ds.to_pandas()
88
 
 
101
  nobel = df[df["awards"].str.contains("Nobel", na=False)]
102
  print(f"{len(nobel):,} Nobel Prize recipients")
103
 
104
+ # Era distribution
105
+ import matplotlib.pyplot as plt
106
+ df.dropna(subset=["birth_year"]).hist("birth_year", bins=50)
107
+ plt.xlabel("Birth Year")
108
+ plt.ylabel("Count")
109
+ plt.title("Astronomers by Birth Year")
110
+ plt.show()
111
  ```
112
 
113
  ## Data source
114
 
115
+ https://www.wikidata.org/
 
 
 
 
 
 
116
 
117
  ## Related datasets
118
 
119
+ - [juliensimon/astronaut-database](https://huggingface.co/datasets/juliensimon/astronaut-database)
 
120
 
121
+ - [juliensimon/observatory-database](https://huggingface.co/datasets/juliensimon/observatory-database)
122
 
123
+ > If you find this dataset useful, please consider [giving it a like](https://huggingface.co/datasets/juliensimon/astronomer-database) on Hugging Face. It helps others discover it.
124
 
125
+ ## About the author
126
 
127
+ Created by [Julien Simon](https://julien.org) AI Operating Partner at Fortino Capital. Part of the [Space Datasets](https://julien.org/datasets) collection.
128
 
129
  ## Citation
130
 
131
  ```bibtex
132
  @dataset{astronomer_database,
 
133
  title = {Astronomer Database},
134
+ author = {juliensimon},
135
  year = {2026},
 
136
  url = {https://huggingface.co/datasets/juliensimon/astronomer-database},
137
+ publisher = {Hugging Face}
138
  }
139
  ```
140
 
141
  ## License
142
 
143
+ [CC0-1.0](https://creativecommons.org/licenses/by/4.0/)
banner.jpg ADDED

Git LFS Details

  • SHA256: 7b448ac0756e2890ef8c5b8201845137064abe13f4683f87ae6be6b6daa71a96
  • Pointer size: 131 Bytes
  • Size of remote file: 245 kB
data/astronomers.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6cb0d89dd9354e00273e8e6b7b292a6c444e6d324496ac9b0c282c49a92b2f76
3
- size 432247
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92db515f91245fb66460aaefc33c1492ceb7265656f6d3d9abd056c24f83ca97
3
+ size 436197