CoolFace
Datasetpublic

costinflation/coffee-creamer-prices-raw-dataset-2026

109,184 raw U.S. coffee creamer price observations across 12 ZIP markets and 29 days. Coffee Creamer Prices Raw Dataset (2026) Analyze 109,184 unaggregated product-level listed retail prices for coffee creamers 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. What “raw” means here: unaggregated product-level… See the full description on the dataset page: https://huggingface.co/datasets/costinflation/coffee-creamer-prices-raw-dataset-2026.

sourceHugging Facecc0-1.0updated 1mo agoView on Hugging Face
1likes40downloads
Dataset Card
109,184 raw U.S. coffee creamer price observations across 12 ZIP markets and 29 days.

Coffee Creamer Prices Raw Dataset (2026)

[image]

Analyze 109,184 unaggregated product-level listed retail prices for coffee creamers 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.

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.

Dataset at a glance

FieldCoverage
Rows109,184
Columns16
Observation windowJuly 13–August 10, 2026
Dates / ZIP markets29 / 12
Market-days348 of 348
Distinct product titles713
Comparable-price rows21,694 (19.9%)
Rows with unresolved comparison87,490 (80.1%)
Comparison target32 fluid ounces
Format / currencyCSV / USD
Expected updatesNone; fixed research snapshot

A result worth investigating

80.1% of rows expose a quantity-cleaning challenge. Only 21,694 of 109,184 rows (19.9%) have a compatible resolved liquid-creamer volume for the 32 fluid ounces comparison. The unresolved rows remain in the file with their listed prices and a blank comparable-price field, making missingness an explicit analysis surface.

What one row represents

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.

Comparable-price method

The fixed comparison target is 32 fluid ounces. Only compatible liquid-volume packages normalize to 32 fluid ounces. Powder, count-based, and unresolved packages remain as listed-price rows with a blank comparable price. Original package fields remain available for audit.

Columns

ColumnTypeMeaning
series_idstringStable source-neutral dataset series key
series_titlestringHuman-readable series title
canonical_urlstringRelated CostInflation category page
geography_typestringGeography level; always postal_code
geography_idstringFive-digit U.S. ZIP code; load as text
geography_labelstringHuman-readable ZIP-market label
observed_datedateObservation date in YYYY-MM-DD
product_namestringFull observed title; not a stable product ID
quantity_valuenumberResolved package quantity; 0 if unresolved
quantity_unitstringResolved package unit or unknown
quantity_namestringHuman-readable package quantity
price_amountnumberListed package or unit price
currency_codestringCurrency; always USD
normalized_price_amountnullable numberListed price scaled to the dataset comparison target
normalized_quantity_valuenumberNumeric comparison target
normalized_quantity_unitstringUnit for the comparison target

Project ideas

  • —Study liquid-versus-powder quantity missingness
  • —Run reproducible EDA and missing-value analysis

Quick start with Pandas

python
import pandas as pd

df = pd.read_csv(
    "costinflation-coffee-creamer-retail-prices-raw-2026-07-13-to-2026-08-10.csv",
    dtype={"geography_id": "string"},
)
comparable = df.dropna(subset=["normalized_price_amount"]).copy()
print(comparable["normalized_price_amount"].describe())

Quality and limitations

  • —All 348 expected date × ZIP-market combinations are present.
  • —Exact duplicate public rows: 0. The preparation pass removed 686 byte-identical input repeats.
  • —Scope review excluded 24 definite out-of-scope or unsafe titles representing 3,381 input rows.
  • —Product titles are descriptive text, not stable public product identifiers.
  • —ZIP labels are selected markets, not citywide or national estimates.
  • —Availability and title wording can change unmatched aggregates.
  • —Shipping, tax, redeemed promotions, purchases, and product performance are outside the dataset.

License

Released under CC0 1.0 Universal for unrestricted reuse. Attribution is not required, but citation helps others find the release.

CostInflation Team. (2026). Coffee Creamer Prices Raw Dataset (2026). CC0 1.0 Universal.

Resources

Released by CostInflation Team.