From 4a76288d1061574da5cab2d90ec31cf341f0da11 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 10 Jun 2024 03:51:59 -0400 Subject: [PATCH] Update median per v1.7+ (#90) --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6358c3a..761127d 100644 --- a/README.md +++ b/README.md @@ -47,13 +47,13 @@ model-paths: ["models", "docs"] # docs/dbt_profiler/customer.md {% docs dbt_profiler__customer %} -| column_name | data_type | not_null_proportion | distinct_proportion | distinct_count | is_unique | min | max | avg | std_dev_population | std_dev_sample | profiled_at | -| ----------------------- | --------- | ------------------- | ------------------- | -------------- | --------- | ---------- | ---------- | ------------------- | ------------------- | ------------------- | ----------------------------- | -| customer_id | int64 | 1.00 | 1.00 | 100 | 1 | 1 | 100 | 50.5000000000000000 | 28.8660700477221200 | 29.0114919758820200 | 2022-01-13 10:14:48.300040+00 | -| first_order | date | 0.62 | 0.46 | 46 | 0 | 2018-01-01 | 2018-04-07 | | | | 2022-01-13 10:14:48.300040+00 | -| most_recent_order | date | 0.62 | 0.52 | 52 | 0 | 2018-01-09 | 2018-04-09 | | | | 2022-01-13 10:14:48.300040+00 | -| number_of_orders | int64 | 0.62 | 0.04 | 4 | 0 | 1 | 5 | 1.5967741935483863 | 0.7716692718648833 | 0.7779687173818426 | 2022-01-13 10:14:48.300040+00 | -| customer_lifetime_value | float64 | 0.62 | 0.35 | 35 | 0 | 1 | 99 | 26.9677419354838830 | 18.6599171435558730 | 18.8122455252636630 | 2022-01-13 10:14:48.300040+00 | +| column_name | data_type | not_null_proportion | distinct_proportion | distinct_count | is_unique | min | max | avg | median | std_dev_population | std_dev_sample | profiled_at | +| ----------------------- | --------- | ------------------- | ------------------- | -------------- | --------- | ---------- | ---------- | ------------------- | ------- | ------------------- | ------------------- | ----------------------------- | +| customer_id | int64 | 1.00 | 1.00 | 100 | 1 | 1 | 100 | 50.5000000000000000 | 50 | 28.8660700477221200 | 29.0114919758820200 | 2022-01-13 10:14:48.300040+00 | +| first_order | date | 0.62 | 0.46 | 46 | 0 | 2018-01-01 | 2018-04-07 | | | | | 2022-01-13 10:14:48.300040+00 | +| most_recent_order | date | 0.62 | 0.52 | 52 | 0 | 2018-01-09 | 2018-04-09 | | | | | 2022-01-13 10:14:48.300040+00 | +| number_of_orders | int64 | 0.62 | 0.04 | 4 | 0 | 1 | 5 | 1.5967741935483863 | 1 | 0.7716692718648833 | 0.7779687173818426 | 2022-01-13 10:14:48.300040+00 | +| customer_lifetime_value | float64 | 0.62 | 0.35 | 35 | 0 | 1 | 99 | 26.9677419354838830 | 22 | 18.6599171435558730 | 18.8122455252636630 | 2022-01-13 10:14:48.300040+00 | {% enddocs %} ```