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
20916ed1
Commit
20916ed1
authored
7 years ago
by
Simon Belak
Browse files
Options
Downloads
Patches
Plain Diff
add optimal-bin-width
parent
6f8c5e82
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/metabase/fingerprinting/histogram.clj
+25
-17
25 additions, 17 deletions
src/metabase/fingerprinting/histogram.clj
with
25 additions
and
17 deletions
src/metabase/fingerprinting/histogram.clj
+
25
−
17
View file @
20916ed1
...
...
@@ -17,12 +17,12 @@
([
^
Histogram
histogram
]
histogram
)
([
^
Histogram
histogram
x
]
(
impl/insert-categorical!
histogram
(
when
x
1
)
x
)))
(
def
^
:private
^
:const
^
Long
pdf-sample-points
100
)
(
def
^
{
:arglists
'
([
^
Histogram
histogram
])}
categorical?
"Returns true if given histogram holds categorical values."
(
comp
(
complement
#
{
:none
})
impl/target-type
))
(
def
^
:private
^
:const
^
Long
pdf-sample-points
100
)
(
defn
pdf
"Probability density function of given histogram.
Obtained by sampling density at `pdf-sample-points` points from the histogram
...
...
@@ -30,23 +30,23 @@
https://en.wikipedia.org/wiki/Probability_density_function"
[
^
Histogram
histogram
]
(
if
(
categorical?
histogram
)
(
map
(
let
[
norm
(
/
(
impl/total-count
histogram
))]
(
fn
[[
target
count
]]
[
target
(
*
count
norm
)]))
(
->
histogram
impl/bins
first
:target
:counts
))
(
let
[
norm
(
/
(
impl/total-count
histogram
))]
(
for
[[
target
count
]
(
->
histogram
impl/bins
first
:target
:counts
)]
[
target
(
*
count
norm
)]))
(
let
[{
:keys
[
min
max
]}
(
impl/bounds
histogram
)
step
(
/
(
-
max
min
)
pdf-sample-points
)]
step
(
/
(
-
max
min
)
pdf-sample-points
)]
(
transduce
(
take
pdf-sample-points
)
(
fn
([]
{
:total-count
0
:densities
(
transient
[])})
([{
:keys
[
total-count
densities
]}]
(
for
[[
x
count
]
(
persistent!
densities
)]
[
x
(
/
count
total-count
)]))
([{
:keys
[
total-count
densities
]}
i
]
(
let
[
d
(
impl/density
histogram
i
)]
{
:densities
(
conj!
densities
[
i
d
])
:total-count
(
+
total-count
d
)})))
([]
{
:total-density
0
:densities
(
transient
[])})
([{
:keys
[
total-density
densities
]}]
(
for
[[
x
density
]
(
persistent!
densities
)]
[
x
(
/
density
total-density
)]))
([
acc
x
]
(
let
[
d
(
impl/density
histogram
x
)]
(
->
acc
(
update
:densities
conj!
[
x
d
])
(
update
:total-density
+
d
)))))
(
iterate
(
partial
+
step
)
min
)))))
(
def
^
{
:arglists
'
([
^
Histogram
histogram
])}
nil-count
...
...
@@ -54,7 +54,7 @@
(
comp
:count
impl/missing-bin
))
(
defn
total-count
"Return total number of values histogram holds."
"Return total number
(including nils)
of values histogram holds."
[
^
Histogram
histogram
]
(
+
(
impl/total-count
histogram
)
(
nil-count
histogram
)))
...
...
@@ -68,3 +68,11 @@
(
map
#
(
*
%
(
math/log
%
))))
(
redux/post-complete
+
-
)
(
pdf
histogram
)))
(
defn
optimal-bin-width
"Determine optimal bin width (and consequently number of bins) for a given
histogram using Freedman-Diaconis rule.
https://en.wikipedia.org/wiki/Freedman%E2%80%93Diaconis_rule"
[
^
Histogram
histogram
]
(
let
[{
first-q
0.25
third-q
0.75
}
(
impl/percentiles
histogram
0.25
0.75
)]
(
*
2
(
-
third-q
first-q
)
(
math/pow
(
impl/total-count
histogram
)
(
/
-3
)))))
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