Skip to content

Instantly share code, notes, and snippets.

@randyzwitch
Last active August 29, 2015 14:02
Show Gist options
  • Save randyzwitch/e1b60919a1d0bc336fd5 to your computer and use it in GitHub Desktop.
Save randyzwitch/e1b60919a1d0bc336fd5 to your computer and use it in GitHub Desktop.
Hive Histogram
select
histogram_numeric(salary, 20) as salary_hist
from
sample_08;
--Results
[{"x":23507.68627450983,"y":255.0},{"x":31881.7647058824,"y":340.0},{"x":39824.11498257844,"y":287.0},{"x":47615.58011049725,"y":181.0},{"x":55667.01219512195,"y":164.0},{"x":59952.499999999985,"y":8.0},{"x":66034.67153284674,"y":137.0},{"x":75642.31707317074,"y":82.0},{"x":82496.13636363638,"y":44.0},{"x":91431.66666666667,"y":60.0},{"x":100665.71428571428,"y":21.0},{"x":107326.66666666667,"y":15.0},{"x":121248.74999999999,"y":16.0},{"x":142070.0,"y":2.0},{"x":153896.6666666667,"y":6.0},{"x":162310.0,"y":6.0},{"x":169810.0,"y":2.0},{"x":176740.0,"y":2.0},{"x":193925.0,"y":8.0},{"x":206770.0,"y":2.0}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment