Skip to content

Commit

Permalink
Update median per v1.7+ (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
odikia authored Jun 10, 2024
1 parent c1c7850 commit 4a76288
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
```
Expand Down

0 comments on commit 4a76288

Please sign in to comment.