costinflation commited on
Commit
1a89770
·
verified ·
1 Parent(s): c76cf98

Upload 3 files

Browse files
README.md CHANGED
@@ -1,3 +1,162 @@
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
+ - food
13
+ pretty_name: Ground Beef 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-ground-beef-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: 18928
58
  ---
59
+
60
+ > 18,928 raw U.S. ground beef price observations across 12 ZIP markets and 29 days.
61
+
62
+ # Ground Beef Prices Raw Dataset (2026)
63
+
64
+ ![CostInflation cover for raw ground beef and beef patties: a centered GB monogram over a source-neutral retail-price data backdrop.](dataset-cover-image.png)
65
+
66
+ Analyze **18,928 unaggregated product-level listed retail prices** for raw ground beef and beef patties 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 | 18,928 |
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 | 100 |
80
+ | Comparable-price rows | 16,412 (86.7%) |
81
+ | Rows with unresolved comparison | 2,516 (13.3%) |
82
+ | Comparison target | 1 pound |
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 3.0× the P10.** Across compatible rows, the 1 pound-equivalent price ranged from a P10 of $7.33 to a P90 of $21.88, a 3.0× 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 **1 pound**. Compatible mass units normalize to one pound. The comparison does not adjust for fat percentage, seasoning, form, or product quality. 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 one-pound-equivalent ground-beef prices
122
+ - Track matched product titles through time
123
+ - Compare selected ZIP markets
124
+ - Build a reproducible retail-price dashboard
125
+ - Run reproducible EDA and missing-value analysis
126
+
127
+ ## Quick start with Pandas
128
+
129
+ ```python
130
+ import pandas as pd
131
+
132
+ df = pd.read_csv(
133
+ "costinflation-ground-beef-retail-prices-raw-2026-07-13-to-2026-08-10.csv",
134
+ dtype={"geography_id": "string"},
135
+ )
136
+ comparable = df.dropna(subset=["normalized_price_amount"]).copy()
137
+ print(comparable["normalized_price_amount"].describe())
138
+ ```
139
+
140
+ ## Quality and limitations
141
+
142
+ - All 348 expected date × ZIP-market combinations are present.
143
+ - Exact duplicate public rows: 0. The preparation pass removed 28 byte-identical input repeats.
144
+ - Scope review excluded 0 definite out-of-scope or unsafe titles representing 0 input rows.
145
+ - Product titles are descriptive text, not stable public product identifiers.
146
+ - ZIP labels describe selected markets, not citywide estimates; the panel is not nationally representative.
147
+ - Availability and title wording can change unmatched aggregates through assortment change.
148
+ - Shipping, tax, redeemed promotions, purchases, and product performance are outside the dataset.
149
+
150
+ ## License
151
+
152
+ Released under **CC0 1.0 Universal** for unrestricted reuse. Attribution is not required, but citation helps others find the release.
153
+
154
+ > CostInflation Team. (2026). *Ground Beef Prices Raw Dataset (2026).* CC0 1.0 Universal.
155
+
156
+ ## Resources
157
+
158
+ - [Ground beef price history](https://costinflation.com/indices/beef-patty-price-history)
159
+ - [Kaggle dataset](https://www.kaggle.com/datasets/costinflation/ground-beef-prices-raw-dataset-2026)
160
+ - [Hugging Face dataset](https://huggingface.co/datasets/costinflation/ground-beef-prices-raw-dataset-2026)
161
+
162
+ Released by **CostInflation Team**.
costinflation-ground-beef-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: d4dce97fa067ff431f2e120c5c3be65bc5c37d64a5f6ab3ebf4dd9ae0183728f
  • Pointer size: 130 Bytes
  • Size of remote file: 32.8 kB