Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
b95eb497
Unverified
Commit
b95eb497
authored
6 years ago
by
Cam Saul
Browse files
Options
Downloads
Patches
Plain Diff
Test fixes & extra tests
[ci drivers]
parent
96eedd20
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/metabase/query_processor/middleware/binning.clj
+19
-16
19 additions, 16 deletions
src/metabase/query_processor/middleware/binning.clj
test/metabase/query_processor/middleware/binning_test.clj
+47
-2
47 additions, 2 deletions
test/metabase/query_processor/middleware/binning_test.clj
with
66 additions
and
18 deletions
src/metabase/query_processor/middleware/binning.clj
+
19
−
16
View file @
b95eb497
...
...
@@ -64,14 +64,14 @@
(
u/round-to-decimals
5
(
/
(
-
max-value
min-value
)
num-bins
)))
(
s/defn
^
:private
calculate-num-bins
:-
s
/Num
(
s/defn
^
:private
calculate-num-bins
:-
s
u/IntGreaterThanZero
"Calculate number of bins of width `bin-width` required to cover interval [`min-value`, `max-value`]."
[
min-value
:-
s/Num,
max-value
:-
s/Num,
bin-width
:-
(
s/constrained
s/Num
(
complement
neg?
)
"number >= 0"
)]
(
long
(
Math/ceil
(
/
(
-
max-value
min-value
)
bin-width
))))
(
s/defn
^
:private
resolve-default-strategy
:-
[(
s/one
(
s/enum
:bin-width
:num-bins
)
"strategy"
)
(
s/one
{
:bin-width
s/Num,
:num-bins
s
/Num
}
"opts"
)]
(
s/one
{
:bin-width
s/Num,
:num-bins
s
u/IntGreaterThanZero
}
"opts"
)]
"Determine the approprate strategy & options to use when `:default` strategy was specified."
[
metadata
:-
{
:special_type
su/FieldType,
s/Any
s/Any
}
,
min-value
:-
s/Num,
max-value
:-
s/Num
]
(
if
(
isa?
(
:special_type
metadata
)
:type/Coordinate
)
...
...
@@ -147,6 +147,21 @@
;;; -------------------------------------------- Adding resolved options ---------------------------------------------
(
defn-
resolve-options
[
strategy
strategy-param
metadata
min-value
max-value
]
(
case
strategy
:num-bins
[
:num-bins
{
:num-bins
strategy-param
:bin-width
(
calculate-bin-width
min-value
max-value
strategy-param
)}]
:bin-width
[
:bin-width
{
:bin-width
strategy-param
:num-bins
(
calculate-num-bins
min-value
max-value
strategy-param
)}]
:default
(
resolve-default-strategy
metadata
min-value
max-value
)))
(
s/defn
^
:private
update-binned-field
:-
mbql.s/binning-strategy
"Given a `binning-strategy` clause, resolve the binning strategy (either provided or found if default is specified)
and calculate the number of bins and bin width for this field. `field-id->filters` contains related criteria that
...
...
@@ -163,22 +178,10 @@
:as
min-max
}
(
extract-bounds
(
when
(
integer?
field-id-or-name
)
field-id-or-name
)
(
:fingerprint
metadata
)
field-id->filters
)
[
new-strategy
resolved-options
]
(
case
strategy
:num-bins
[
:num-bins
{
:num-bins
strategy-param
:bin-width
(
calculate-bin-width
min-value
max-value
strategy-param
)}]
:bin-width
[
:bin-width
{
:bin-width
strategy-param
:num-bins
(
calculate-num-bins
min-value
max-value
strategy-param
)}]
:default
(
resolve-default-strategy
metadata
min-value
max-value
))
[
new-strategy
resolved-options
]
(
resolve-options
strategy
strategy-param
metadata
min-value
max-value
)
resolved-options
(
merge
min-max
resolved-options
)]
;; Bail out and use unmodifed version if we can't converge on a nice version.
[
:binning-strategy
field-clause
new-strategy
strategy-param
(
or
(
nicer-breakout
strategy
resolved-options
)
[
:binning-strategy
field-clause
new-strategy
strategy-param
(
or
(
nicer-breakout
new-
strategy
resolved-options
)
resolved-options
)]))
...
...
This diff is collapsed.
Click to expand it.
test/metabase/query_processor/middleware/binning_test.clj
+
47
−
2
View file @
b95eb497
(
ns
metabase.query-processor.middleware.binning-test
(
:require
[
expectations
:refer
[
expect
]]
[
metabase.models.field
:as
field
]
[
metabase.query-processor.middleware.binning
:as
binning
]))
[
metabase.models.field
:as
field
:refer
[
Field
]]
[
metabase.query-processor.middleware.binning
:as
binning
]
[
metabase.query-processor.store
:as
qp.store
]
[
metabase.test.data
:as
data
]
[
metabase.util
:as
u
]
[
toucan.util.test
:as
tt
]))
(
expect
{}
...
...
@@ -84,3 +88,44 @@
[
:num-bins
{
:min-value
9
,
:max-value
1002
,
:num-bins
8
,
:bin-width
0
}]
[
:bin-width
{
:min-value
9
,
:max-value
1002
,
:num-bins
1
,
:bin-width
15.0
}]]]
(
#
'binning/nicer-breakout
strategy
opts
)))
;; does `resolve-default-strategy` work the way we'd expect?
(
expect
[
:num-bins
{
:num-bins
8
,
:bin-width
28.28321
}]
(
#
'binning/resolve-default-strategy
{
:special_type
:type/Income
}
12.061602936923117
238.32732001721533
))
;; does `nicer-breakout` make things NICER?
(
expect
{
:min-value
0.0
,
:max-value
240.0
,
:num-bins
8
,
:bin-width
30
}
(
#
'binning/nicer-breakout
:num-bins
{
:min-value
12.061602936923117
:max-value
238.32732001721533
:bin-width
28.28321
:num-bins
8
}))
;; Try an end-to-end test of the middleware
(
tt/expect-with-temp
[
Field
[
field
(
field/map->FieldInstance
{
:database_type
"DOUBLE"
:table_id
(
data/id
:checkins
)
:special_type
:type/Income
:name
"TOTAL"
:display_name
"Total"
:fingerprint
{
:global
{
:distinct-count
10000
}
:type
{
:type/Number
{
:min
12.061602936923117
:max
238.32732001721533
:avg
82.96014815230829
}}}
:base_type
:type/Float
})]]
{
:query
{
:source-table
(
data/id
:checkins
)
:breakout
[[
:binning-strategy
[
:field-id
(
u/get-id
field
)]
:num-bins
nil
{
:min-value
0.0
,
:max-value
240.0
,
:num-bins
8
,
:bin-width
30
}]]}
:type
:query
:database
(
data/id
)}
(
qp.store/with-store
(
qp.store/store-field!
field
)
((
binning/update-binning-strategy
identity
)
{
:query
{
:source-table
(
data/id
:checkins
)
:breakout
[[
:binning-strategy
[
:field-id
(
u/get-id
field
)]
:default
]]}
:type
:query
:database
(
data/id
)})))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment