juliensimon commited on
Commit
88f73df
·
verified ·
1 Parent(s): c8562a3

Update Pantheon+ SNe Ia: 1,701 supernovae

Browse files
Files changed (2) hide show
  1. README.md +131 -0
  2. data/pantheon_plus_sne.parquet +3 -0
README.md ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: "Pantheon+ Type Ia Supernovae"
4
+ language:
5
+ - en
6
+ description: "Gold standard cosmological dataset: 1,701 spectroscopically confirmed Type Ia supernovae from Pantheon+ used to measure H0 and dark energy."
7
+ task_categories:
8
+ - tabular-regression
9
+ tags:
10
+ - space
11
+ - supernova
12
+ - cosmology
13
+ - hubble-constant
14
+ - dark-energy
15
+ - pantheon
16
+ - open-data
17
+ size_categories:
18
+ - 1K<n<10K
19
+ ---
20
+
21
+ # Pantheon+ Type Ia Supernovae
22
+
23
+ The gold standard cosmological dataset -- **1,701** spectroscopically confirmed Type Ia supernovae
24
+ from the Pantheon+ analysis, used to measure the Hubble constant (H0) and constrain the dark energy
25
+ equation of state. This is the dataset behind the "Hubble tension" debate.
26
+
27
+ ## Dataset description
28
+
29
+ Pantheon+ combines supernova light curves from 20 surveys spanning redshifts
30
+ 0.0012 to 2.261. Each SN Ia is standardized using the SALT2 light-curve fitter,
31
+ providing stretch (x1) and color (c) parameters that transform raw apparent magnitudes into
32
+ calibrated distance moduli. Combined with Cepheid-calibrated distances from SH0ES, this
33
+ dataset yields the most precise local measurement of the Hubble constant.
34
+
35
+ ## Schema
36
+
37
+ | Column | Type | Description |
38
+ |--------|------|-------------|
39
+ | `sn_name` | string | Supernova identifier (CID) |
40
+ | `survey_id` | int64 | Survey identifier |
41
+ | `redshift_hd` | float64 | Hubble-diagram redshift (peculiar velocity corrected) |
42
+ | `redshift_hd_err` | float64 | Hubble-diagram redshift uncertainty |
43
+ | `redshift_cmb` | float64 | CMB-frame redshift |
44
+ | `redshift_cmb_err` | float64 | CMB-frame redshift uncertainty |
45
+ | `redshift_helio` | float64 | Heliocentric redshift |
46
+ | `redshift_helio_err` | float64 | Heliocentric redshift uncertainty |
47
+ | `apparent_mag_b` | float64 | Apparent B-band magnitude (SALT2 mB) |
48
+ | `apparent_mag_b_err` | float64 | Apparent magnitude uncertainty |
49
+ | `stretch_x1` | float64 | SALT2 stretch parameter x1 |
50
+ | `stretch_x1_err` | float64 | Stretch uncertainty |
51
+ | `color_c` | float64 | SALT2 color parameter c |
52
+ | `color_c_err` | float64 | Color uncertainty |
53
+ | `host_log_mass` | float64 | Host galaxy log stellar mass (solar masses) |
54
+ | `host_log_mass_err` | float64 | Host mass uncertainty |
55
+ | `fit_probability` | float64 | SALT2 fit probability |
56
+ | `distance_modulus` | float64 | Distance modulus from SH0ES analysis |
57
+ | `distance_modulus_err` | float64 | Distance modulus diagonal uncertainty |
58
+
59
+ ## Quick stats
60
+
61
+ - **1,701** Type Ia supernovae from **20** surveys
62
+ - Redshift range: 0.0012 to 2.261 (median 0.164)
63
+ - Distance modulus range: 29.00 to 46.18 mag
64
+
65
+ ## Usage
66
+
67
+ ```python
68
+ from datasets import load_dataset
69
+
70
+ ds = load_dataset("juliensimon/pantheon-plus-sne-ia", split="train")
71
+ df = ds.to_pandas()
72
+
73
+ # Hubble diagram
74
+ import matplotlib.pyplot as plt
75
+ import numpy as np
76
+
77
+ valid = df[df["distance_modulus"] > 0]
78
+ plt.errorbar(valid["redshift_cmb"], valid["distance_modulus"],
79
+ yerr=valid["distance_modulus_err"],
80
+ fmt=".", ms=2, alpha=0.5, elinewidth=0.5)
81
+ plt.xscale("log")
82
+ plt.xlabel("Redshift (CMB frame)")
83
+ plt.ylabel("Distance modulus (mag)")
84
+ plt.title("Pantheon+ Hubble Diagram")
85
+ plt.show()
86
+
87
+ # Color-stretch distribution
88
+ plt.scatter(df["stretch_x1"], df["color_c"], s=2, alpha=0.3)
89
+ plt.xlabel("Stretch x1")
90
+ plt.ylabel("Color c")
91
+ plt.title("SALT2 Parameter Distribution")
92
+ plt.show()
93
+
94
+ # Redshift distribution
95
+ df["redshift_cmb"].hist(bins=50)
96
+ plt.xlabel("Redshift")
97
+ plt.ylabel("Count")
98
+ plt.title("Pantheon+ Redshift Distribution")
99
+ plt.show()
100
+ ```
101
+
102
+ ## Data source
103
+
104
+ Scolnic, D., et al. (2022), *The Pantheon+ Analysis: The Full Dataset and Light-curve Release.*
105
+ Astrophysical Journal, 938, 113.
106
+
107
+ Brout, D., et al. (2022), *The Pantheon+ Analysis: Cosmological Constraints.*
108
+ Astrophysical Journal, 938, 110.
109
+
110
+ Data release: [PantheonPlusSH0ES/DataRelease](https://github.com/PantheonPlusSH0ES/DataRelease)
111
+
112
+ ## Pipeline
113
+
114
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
115
+
116
+ ## Citation
117
+
118
+ ```bibtex
119
+ @dataset{pantheon_plus_sne,
120
+ author = {Simon, Julien},
121
+ title = {Pantheon+ Type Ia Supernovae},
122
+ year = {2026},
123
+ publisher = {Hugging Face},
124
+ url = {https://huggingface.co/datasets/juliensimon/pantheon-plus-sne-ia},
125
+ note = {Based on Scolnic et al. (2022) and Brout et al. (2022) Pantheon+ data release}
126
+ }
127
+ ```
128
+
129
+ ## License
130
+
131
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
data/pantheon_plus_sne.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:243f8810c97892acb5076931a1add72c061e71ab7c785810eedcadcdc76d5708
3
+ size 198324