From 9d3b8cdfc08d9a60e357128c98320f367d533605 Mon Sep 17 00:00:00 2001 From: Tomas Date: Thu, 30 Apr 2020 10:56:58 +0100 Subject: [PATCH] Add a working URL to an example report --- README.rst | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/README.rst b/README.rst index 7d67ece5..54d73cab 100644 --- a/README.rst +++ b/README.rst @@ -2,18 +2,15 @@ Population Shift Monitoring =========================== -.. image:: https://github.com/ing-bank/popmon/workflows/build/badge.svg +|build| |docs| * Version: 0.3.2. Released: April 2020 * Documentation: https://popmon.readthedocs.io * Repository: https://github.com/ing-bank/popmon * Authors: ING Wholesale Banking Advanced Analytics -.. raw:: html - -
- popmon logo -
+| +|logo| `popmon` is a package that allows one to check the stability of a dataset. `popmon` works with both pandas and spark datasets. @@ -36,7 +33,8 @@ The entire `popmon` documentation including tutorials can be found at `read-the- Examples ======== -- `Flight Delays and Cancellations Kaggle data `_ +- `Flight Delays and Cancellations Kaggle data `_ +- `Synthetic data (code example below) `_ Check it out ============ @@ -75,7 +73,7 @@ As a quick example, you can do: import popmon from popmon import resources - # open fake car insurance data + # open synthetic data df = pd.read_csv(resources.data('test.csv.gz')) df['date'] = pd.to_datetime(df['date']) df.head() @@ -114,10 +112,10 @@ To specify your own binning specifications and features you want to report on, y } # generate stability report - report = df.pm_stability_report(features=features, bin_specs=bin_specs) + report = df.pm_stability_report(features=features, bin_specs=bin_specs, time_axis=True) -These examples also works with spark dataframes. -You can see the output of such example notebook code `here `_. +These examples also work with spark dataframes. +You can see the output of such example notebook code `here `_. For all available examples, please see the `tutorials `_ at read-the-docs. Contact and support @@ -130,3 +128,13 @@ Please note that ING WBAA provides support only on a best-effort basis. License ======= Copyright ING WBAA. `popmon` is completely free, open-source and licensed under the `MIT license `_. + +.. |logo| raw:: html + +
+ popmon logo +
+.. |build| image:: https://github.com/ing-bank/popmon/workflows/build/badge.svg + :alt: Build status +.. |docs| image:: https://readthedocs.org/projects/popmon/badge/?version=latest + :alt: Package docs status