You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb-postgresql/doc/CDB_QuantileBins.md

850 B

Find the breaks for N categories in a numerical column based on the [Quantile bins]. Below, the quantile method is used to determine color based on the area of the polygons.

qunatile

Using the function

We can determine the 7 most optimal breaks in a column of numerical data as follows,

SELECT CDB_QuantileBins(array_agg(numeric_column), 7) FROM table_name
-- Results in an ordered array like, {80,2281,7162,17652,39730,91077,1638094}
-- Each break happens up to, and equal, to a number: 
-- (bin1 is less than or equal to 80, bin2 is less than or equal to 2281, etc.)

Arguments

CDB_QuantileBins(in_array, breaks)

  • in_array numeric[]. A NUMERIC array of values.
  • breaks int. The number of categories you want to create