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 e338459f66 - Show all commits

View File

@@ -33,5 +33,8 @@ 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