costinflation commited on
Commit
8d84d2e
·
verified ·
1 Parent(s): 60d9e9d

Upload 3 files

Browse files
README.md CHANGED
@@ -1,3 +1,160 @@
1
  ---
2
  license: cc0-1.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc0-1.0
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - tabular-regression
7
+ tags:
8
+ - retail
9
+ - prices
10
+ - time-series
11
+ - raw-data
12
+ - medical
13
+ pretty_name: Acetaminophen Prices Raw Dataset (2026)
14
+ size_categories:
15
+ - 10K<n<100K
16
+ configs:
17
+ - config_name: default
18
+ data_files:
19
+ - split: train
20
+ path: costinflation-acetaminophen-retail-prices-raw-2026-07-13-to-2026-08-10.csv
21
+ dataset_info:
22
+ features:
23
+ - name: series_id
24
+ dtype: string
25
+ - name: series_title
26
+ dtype: string
27
+ - name: canonical_url
28
+ dtype: string
29
+ - name: geography_type
30
+ dtype: string
31
+ - name: geography_id
32
+ dtype: string
33
+ - name: geography_label
34
+ dtype: string
35
+ - name: observed_date
36
+ dtype: string
37
+ - name: product_name
38
+ dtype: string
39
+ - name: quantity_value
40
+ dtype: float64
41
+ - name: quantity_unit
42
+ dtype: string
43
+ - name: quantity_name
44
+ dtype: string
45
+ - name: price_amount
46
+ dtype: float64
47
+ - name: currency_code
48
+ dtype: string
49
+ - name: normalized_price_amount
50
+ dtype: float64
51
+ - name: normalized_quantity_value
52
+ dtype: float64
53
+ - name: normalized_quantity_unit
54
+ dtype: string
55
+ splits:
56
+ - name: train
57
+ num_examples: 11116
58
  ---
59
+
60
+ > 11,116 raw U.S. acetaminophen price observations across 12 ZIP markets and 29 days.
61
+
62
+ # Acetaminophen Prices Raw Dataset (2026)
63
+
64
+ ![CostInflation cover for solid-unit acetaminophen listings: a centered AP monogram over a source-neutral retail-price data backdrop.](dataset-cover-image.png)
65
+
66
+ Analyze **11,116 unaggregated product-level listed retail prices** for solid-unit acetaminophen listings across 12 U.S. ZIP markets from July 13 through August 10, 2026. The single analysis-ready CSV preserves titles, dates, geography, package quantities, listed prices, and a source-neutral comparable-price field.
67
+
68
+ > **What “raw” means here:** unaggregated product-level observations after scope and safety filtering. The file includes derived normalization fields; it is not untouched acquisition data.
69
+
70
+ ## Dataset at a glance
71
+
72
+ | Field | Coverage |
73
+ |---|---:|
74
+ | Rows | 11,116 |
75
+ | Columns | 16 |
76
+ | Observation window | July 13–August 10, 2026 |
77
+ | Dates / ZIP markets | 29 / 12 |
78
+ | Market-days | 348 of 348 |
79
+ | Distinct product titles | 63 |
80
+ | Comparable-price rows | 9,465 (85.1%) |
81
+ | Rows with unresolved comparison | 1,651 (14.9%) |
82
+ | Comparison target | 100 units |
83
+ | Format / currency | CSV / USD |
84
+ | Expected updates | None; fixed research snapshot |
85
+
86
+ ## A result worth investigating
87
+
88
+ **The P90 comparable price was 9.4× the P10.** Across compatible rows, the 100 units-equivalent price ranged from a P10 of $1.80 to a P90 of $16.96, a 9.4× spread. This is a distribution description, not a matched-product quality or value claim.
89
+
90
+ ## What one row represents
91
+
92
+ One row is one quality-filtered product-title, ZIP-market, date, package-quantity, and listed-price observation. It is not a sale, order, demand, inventory, market-share, or consumer record. Distinct offers may share a title, ZIP, and date; exact duplicate public rows are removed.
93
+
94
+ ## Comparable-price method
95
+
96
+ The fixed comparison target is **100 units**. Compatible count units normalize to 100 tablets, caplets, or capsules. Dose, strength, formulation, safety, and efficacy are not treated as equivalent; this is not medical advice. Original package fields remain available for audit.
97
+
98
+ ## Columns
99
+
100
+ | Column | Type | Meaning |
101
+ |---|---|---|
102
+ | `series_id` | string | Stable source-neutral dataset series key |
103
+ | `series_title` | string | Human-readable series title |
104
+ | `canonical_url` | string | Related CostInflation category page |
105
+ | `geography_type` | string | Geography level; always postal_code |
106
+ | `geography_id` | string | Five-digit U.S. ZIP code; load as text |
107
+ | `geography_label` | string | Human-readable ZIP-market label |
108
+ | `observed_date` | date | Observation date in YYYY-MM-DD |
109
+ | `product_name` | string | Full observed title; not a stable product ID |
110
+ | `quantity_value` | number | Resolved package quantity; 0 if unresolved |
111
+ | `quantity_unit` | string | Resolved package unit or unknown |
112
+ | `quantity_name` | string | Human-readable package quantity |
113
+ | `price_amount` | number | Listed package or unit price |
114
+ | `currency_code` | string | Currency; always USD |
115
+ | `normalized_price_amount` | nullable number | Listed price scaled to the dataset comparison target |
116
+ | `normalized_quantity_value` | number | Numeric comparison target |
117
+ | `normalized_quantity_unit` | string | Unit for the comparison target |
118
+
119
+ ## Project ideas
120
+
121
+ - Compare package-count prices without dosage adjustment
122
+ - Track matched product titles through time
123
+ - Run reproducible EDA and missing-value analysis
124
+
125
+ ## Quick start with Pandas
126
+
127
+ ```python
128
+ import pandas as pd
129
+
130
+ df = pd.read_csv(
131
+ "costinflation-acetaminophen-retail-prices-raw-2026-07-13-to-2026-08-10.csv",
132
+ dtype={"geography_id": "string"},
133
+ )
134
+ comparable = df.dropna(subset=["normalized_price_amount"]).copy()
135
+ print(comparable["normalized_price_amount"].describe())
136
+ ```
137
+
138
+ ## Quality and limitations
139
+
140
+ - All 348 expected date × ZIP-market combinations are present.
141
+ - Exact duplicate public rows: 0. The preparation pass removed 2 byte-identical input repeats.
142
+ - Scope review excluded 6 definite out-of-scope or unsafe titles representing 655 input rows.
143
+ - Product titles are descriptive text, not stable public product identifiers.
144
+ - ZIP labels describe selected markets, not citywide estimates; the panel is not nationally representative.
145
+ - Availability and title wording can change unmatched aggregates through assortment change.
146
+ - Shipping, tax, redeemed promotions, purchases, and product performance are outside the dataset.
147
+
148
+ ## License
149
+
150
+ Released under **CC0 1.0 Universal** for unrestricted reuse. Attribution is not required, but citation helps others find the release.
151
+
152
+ > CostInflation Team. (2026). *Acetaminophen Prices Raw Dataset (2026).* CC0 1.0 Universal.
153
+
154
+ ## Resources
155
+
156
+ - [Acetaminophen price history](https://costinflation.com/indices/acetaminophen-price-history)
157
+ - [Kaggle dataset](https://www.kaggle.com/datasets/costinflation/acetaminophen-prices-raw-dataset-2026)
158
+ - [Hugging Face dataset](https://huggingface.co/datasets/costinflation/acetaminophen-prices-raw-dataset-2026)
159
+
160
+ Released by **CostInflation Team**.
costinflation-acetaminophen-retail-prices-raw-2026-07-13-to-2026-08-10.csv ADDED
The diff for this file is too large to render. See raw diff
 
dataset-cover-image.png ADDED

Git LFS Details

  • SHA256: 33b00d81f3ed2e0a34a90c73afd5faf00d5f7cfec0f087da30ddf929290f10c4
  • Pointer size: 130 Bytes
  • Size of remote file: 35 kB