- Link: https://www.dunnhumby.com/source-files/
- License: Dunnhumby Source Files Terms of Use — academic / non-commercial; access via registration.
- Sample in this repo: None. Users register and download themselves.
"(Nearly) Real-world data for data enthusiasts, academics, and professionals to practice analytics techniques."
Four datasets are offered; The Complete Journey is the flagship:
| Dataset | Type | Content |
|---|---|---|
| The Complete Journey | Relational | Household-level transactions over 2 years for 2,500 frequent-shopper households. Includes direct marketing contact history and demographics. All categories. |
| Breakfast at the Frat | Time series | 156 weeks of sales for 5 products across 4 categories (mouthwash, pretzels, pizza, cereal). Unit sales, base price, shelf price, promo details. |
| Carbo-Loading | Relational | 2 years of household transactions in 4 categories (pasta, sauce, syrup, pancake mix). |
| Let's Get Sort-of-Real | Dummy | 117 weeks, 300M transactions, ~500K customers, ~5K products. |
transaction_data—household_key, BASKET_ID, DAY, PRODUCT_ID, QUANTITY, SALES_VALUE, STORE_ID, RETAIL_DISC, TRANS_TIME, WEEK_NO, COUPON_DISC, COUPON_MATCH_DISChh_demographic— household age, marital status, income bracket, household composition, kid categoryproduct—PRODUCT_ID, DEPARTMENT, COMMODITY_DESC, SUB_COMMODITY_DESC, MANUFACTURER, BRAND, CURR_SIZE_OF_PRODUCTcampaign_desc— campaign date rangescampaign_table— which household received which campaigncoupon— which products each coupon was valid forcoupon_redempt— which coupons each household redeemedcausal_data— when a product was on display / in mailer at a given store/week
transaction_data:
household_key=24 BASKET_ID=2659... DAY=540
PRODUCT_ID=1027524 QUANTITY=2 SALES_VALUE=4.50
STORE_ID=32 RETAIL_DISC=-0.50 COUPON_DISC=-1.00
COUPON_MATCH_DISC=0 TRANS_TIME=1422 WEEK_NO=78
hh_demographic:
household_key=24 AGE_DESC="35-44" MARITAL_STATUS_CODE=A
INCOME_DESC="50-74K" HH_COMP_DESC="2 Adults Kids"
KID_CATEGORY_DESC="1"
product:
PRODUCT_ID=1027524 DEPARTMENT=KIOSK-GAS COMMODITY_DESC=DIAPERS
SUB_COMMODITY_DESC=DIAPER MANUFACTURER=... BRAND="HUGGIES"
- True promo incrementality —
causal_datatells you when a product was on display or in a mailer. Difference-in-differences vs non-displayed periods gives clean incremental lift, not just promo-week sales. - Coupon targeting effectiveness —
campaign_table×coupon_redempt→ redemption rate by campaign type, by demographic. - Household CLV with demographics — most public retail datasets have no demographics. Here you can build CLV stratified by income, kids-at-home, life stage.
- Category role — destination (toilet paper), routine (milk), occasional (decoration), seasonal. Aggregate purchase frequency and basket attachment per category.
- Coupon stacking & forward-buy detection — high
COUPON_MATCH_DISCbaskets often signal stockpiling. Useful for inventory-impact modeling. - Channel-of-acquisition × LTV — link
campaign_desc→ first-purchase → 2yr CLV by acquisition campaign. - Private-label affinity —
BRAND="Private"flag (when present in product table) lets you study which households trade up to private-label and which trade down to it.
- "Day" is an integer offset from a baseline, not a real date. You can't join with macro data unless you anchor day=1.
- 2,500 households is small. Model variance is high; report confidence intervals.
- The Complete Journey is from a single US grocer — assortment generalization to mass merch (Walmart, Target) is weak.
- "Big Data" framing on the Dunnhumby page is dated; The Complete Journey is ~250MB, fits in memory.