Skip to content

Add complex end-to-end playground examples#299

Merged
mrjf merged 3 commits into
mainfrom
copilot/add-more-complex-end-to-end-examples
May 13, 2026
Merged

Add complex end-to-end playground examples#299
mrjf merged 3 commits into
mainfrom
copilot/add-more-complex-end-to-end-examples

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented May 12, 2026

New Feature

What does this feature do?

Adds more complex, real-world pandas-style workflows to the Pages playground so users can explore richer end-to-end analysis scenarios in-browser.

Implementation details

  • New examples

    • Added Marketplace Fraud Triage: joins transaction and merchant risk data, scores expected loss, filters review queues, and builds pivot summaries.
    • Added Inventory Replenishment Planning: combines SKU sales with product metadata, computes sell-through and reorder signals.
    • Added Marketing Attribution ROAS: reshapes spend data, joins conversions, and compares channel performance.
  • Playground navigation

    • Linked all new examples from the examples gallery.
    • Updated the landing page workflow count from 10 to 13.
  • Coverage

    • Added a playground conformance check to ensure the new example pages stay linked from the gallery.

Example workflow pattern:

const joined = merge(spend, conversions, {
  on: ["date", "region", "channel"],
  how: "left",
}).assign({
  roas: (df) => df.col("revenue").div(df.col("spend")),
});

Co-authored-by: mrjf <180956+mrjf@users.noreply.github.com>
Copilot AI changed the title [WIP] Add more complicated end-to-end examples in Pages playground Add complex end-to-end playground examples May 12, 2026
Copilot finished work on behalf of mrjf May 12, 2026 06:59
Copilot AI requested a review from mrjf May 12, 2026 06:59
@mrjf mrjf marked this pull request as ready for review May 12, 2026 15:29
@mrjf
Copy link
Copy Markdown
Contributor

mrjf commented May 12, 2026

@copilot fix ci errors

Co-authored-by: mrjf <180956+mrjf@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented May 12, 2026

@copilot fix ci errors

Fixed in 95eb5c1. The new pandas reference snippets are now self-contained, and python scripts/validate-python-examples.py playground/ passes locally.

Copilot finished work on behalf of mrjf May 12, 2026 15:46
@mrjf mrjf merged commit 7488d8d into main May 13, 2026
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add more, and more complicated, end-to-end examples in the Pages playground

2 participants