develop #7

Merged
j.r merged 5 commits from develop into main 2026-06-15 13:32:23 +00:00
Showing only changes of commit 84ae56368b - Show all commits

View File

@@ -33,8 +33,5 @@ def transform_example_dataset(df: pd.DataFrame) -> pd.DataFrame:
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