Initializing playground…
← Back to examples

📦 Inventory Replenishment Planning

Scenario: A retail operations analyst combines daily sell-through with SKU master data to find categories moving fastest and flag items whose on-hand stock is below lead-time demand.

Skills you'll use: readCsv, merge, function-valued assign, rolling-style demand features, filters, and pivot tables.

1 · Enrich sales with product master data

Parse store/SKU sales, join attributes, and compute inventory value and sell-through.

TypeScript
Click ▶ Run to execute
Ctrl+Enter to run · Tab to indent

2 · Calculate reorder points from recent demand

Estimate rolling demand per SKU, compare it to on-hand stock, and summarize reorder status.

TypeScript
Click ▶ Run to execute
Ctrl+Enter to run · Tab to indent