Datasets:
Tasks:
Tabular Classification
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10K - 100K
License:
Update astronomer database: 11,755 astronomers
Browse files- README.md +59 -59
- banner.jpg +3 -0
- 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 |
-
|
| 35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
|
| 37 |
## Dataset description
|
| 38 |
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
and Johannes Kepler to contemporary researchers studying gravitational waves, exoplanets,
|
| 42 |
-
|
|
|
|
| 43 |
|
| 44 |
-
|
| 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 |
-
|
| 51 |
-
|
| 52 |
-
and updated continuously.
|
| 53 |
|
| 54 |
## Schema
|
| 55 |
|
| 56 |
-
| Column | Type | Description |
|
| 57 |
-
|--------|------|-------------|
|
| 58 |
-
| `wikidata_id` |
|
| 59 |
-
| `name` | string | Full name |
|
| 60 |
-
| `birth_date` |
|
| 61 |
-
| `death_date` |
|
| 62 |
-
| `sex` | string |
|
| 63 |
-
| `nationality` | string |
|
| 64 |
-
| `employers` | string |
|
| 65 |
-
| `awards` | string |
|
| 66 |
-
| `fields_of_work` | string |
|
| 67 |
-
| `birth_year` |
|
| 68 |
|
| 69 |
## Quick stats
|
| 70 |
|
| 71 |
-
- **11,
|
| 72 |
-
- **9,
|
| 73 |
-
- **3,
|
| 74 |
-
- **2,
|
| 75 |
-
- Top nationalities: United States (1,
|
| 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 |
-
#
|
| 101 |
-
|
| 102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 103 |
```
|
| 104 |
|
| 105 |
## Data source
|
| 106 |
|
| 107 |
-
|
| 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)
|
| 118 |
-
- [observatory-database](https://huggingface.co/datasets/juliensimon/observatory-database) — Astronomical observatories worldwide
|
| 119 |
|
| 120 |
-
|
| 121 |
|
| 122 |
-
|
| 123 |
|
| 124 |
-
##
|
| 125 |
|
| 126 |
-
|
| 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 |
-
|
| 138 |
}
|
| 139 |
```
|
| 140 |
|
| 141 |
## License
|
| 142 |
|
| 143 |
-
[CC0-1.0](https://creativecommons.org/
|
|
|
|
| 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
|
data/astronomers.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92db515f91245fb66460aaefc33c1492ceb7265656f6d3d9abd056c24f83ca97
|
| 3 |
+
size 436197
|