develop #10

Merged
j.r merged 4 commits from develop into main 2026-06-16 12:51:21 +00:00
Showing only changes of commit 2e7bf4a0d5 - Show all commits

View File

@@ -32,5 +32,9 @@ def transform_example_dataset(df: pd.DataFrame) -> pd.DataFrame:
"""Applies a simple transformation to the example dataset."""
df["total_price"] = df["quantity"] * df["unit_price"]
df["price_band"] = df["total_price"].apply(
lambda value: "high" if value >= 25 else "standard"
)
return df