develop #4

Merged
m.b merged 5 commits from develop into main 2026-06-12 09:58:56 +00:00
Showing only changes of commit 3485844c5b - Show all commits

View File

@@ -34,4 +34,7 @@ def transform_example_dataset(df: pd.DataFrame) -> pd.DataFrame:
df["price_band"] = df["total_price"].apply(
lambda value: "high" if value >= 25 else "standard"
)
df["total_price"] = df["quantity"] * df["unit_price"]
return df