From c740e32cff78e0cbddfb065a2636dc79334a2205 Mon Sep 17 00:00:00 2001 From: Simon Brugman Date: Mon, 4 Jul 2022 23:38:35 +0200 Subject: [PATCH] chore: add titles to reports --- examples/flight_delays.py | 1 + examples/synthetic_data.py | 1 + 2 files changed, 2 insertions(+) diff --git a/examples/flight_delays.py b/examples/flight_delays.py index ca84fa26..08c85d51 100644 --- a/examples/flight_delays.py +++ b/examples/flight_delays.py @@ -12,6 +12,7 @@ # Configuration of the monitoring rules and report settings = Settings() settings.report.extended_report = False +settings.report.title += " | Flight Delays Dataset" settings.monitoring.pull_rules = {"*_pull": [10, 7, -7, -10]} # generate stability report using automatic binning of all encountered features diff --git a/examples/synthetic_data.py b/examples/synthetic_data.py index 9e006701..04aea1da 100644 --- a/examples/synthetic_data.py +++ b/examples/synthetic_data.py @@ -9,6 +9,7 @@ # generate stability report using automatic binning of all encountered features # (importing popmon automatically adds this functionality to a dataframe) report = df.pm_stability_report( + title="POPMON Report | Synthetic Dataset", time_axis="date", time_width="2w", features=["date:age", "date:gender", "date:isActive", "date:eyeColor"],