develop #11

Merged
j.r merged 3 commits from develop into main 2026-06-17 07:07:32 +00:00
Showing only changes of commit 7c028ef02f - Show all commits

View File

@@ -33,8 +33,4 @@ def transform_example_dataset(df: pd.DataFrame) -> pd.DataFrame:
df["total_price"] = df["quantity"] * df["unit_price"] 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 return df