bisector.left()

bisector.left(array, x[, lo[, hi]]) Equivalent to bisectLeft, but uses this bisector’s associated comparator.

d3.scan()

d3.scan(array[, comparator]) Performs a linear scan of the specified array, returning the index of the least element according to the specified comparator. If the given array contains no comparable elements (i.e., the comparator returns NaN when comparing each element to itself), returns undefined. If comparator is not specified, it defaults to ascending. For example: var array = [{foo: 42}, {foo: 91}]; d3.scan(array, function(a, b) { return a.foo - b.foo; }); // 0 d3.scan(array, function(a,

d3.histogram()

d3.histogram() Constructs a new histogram generator with the default settings.

d3.geoLarriveeRaw

d3.geoLarrivee() d3.geoLarriveeRaw The Larrivée projection.

point.padding()

point.padding([padding]) If padding is specified, sets the outer padding to the specified value which must be in the range [0, 1]. If padding is not specified, returns the current outer padding which defaults to 0. The outer padding determines the ratio of the range that is reserved for blank space before the first point and after the last point. Equivalent to band.paddingOuter.

d3.geoCircle()

d3.geoCircle() Returns a new circle generator.

histogram()

histogram(data) Computes the histogram for the given array of data samples. Returns an array of bins, where each bin is an array containing the associated elements from the input data. Thus, the length of the bin is the number of elements in that bin. Each bin has two additional attributes: x0 - the lower bound of the bin (inclusive). x1 - the upper bound of the bin (exclusive, except for the last bin).

d3.geoModifiedStereographicRaw()

d3.geoModifiedStereographic(coefficients, rotate) d3.geoModifiedStereographicRaw(coefficients) The family of modified stereographic projections. The default clip angle for these projections is 90°. These projections do not support projection.rotate: a fixed rotation is applied that is specific to the given coefficients.

d3.interpolateLab()

d3.interpolateLab(a, b) Returns a Lab color space interpolator between the two colors a and b. The colors a and b need not be in Lab; they will be converted to Lab using d3.lab. The return value of the interpolator is an RGB string.

d3.geoModifiedStereographicLee()

d3.geoModifiedStereographicLee() A modified stereographic projection for the Pacific ocean.