develop #8

Merged
j.r merged 3 commits from develop into main 2026-06-15 13:52:10 +00:00
2 changed files with 2 additions and 6 deletions

View File

@@ -32,9 +32,5 @@ 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"
Review

what the fuck?

what the fuck?
)
return df

View File

@@ -11,7 +11,7 @@ from util_services.resources import s3_resource
defs = Definitions(
jobs=[
example_dataframe_demo_job,
example_job,
data_processing_job,
k_anonymity_job_s3,
l_diversity_job_s3,