d3.entries()

d3.entries(object) Returns an array containing the property keys and values of the specified object (an associative array). Each entry is an object with a key and value attribute, such as {key: "foo", value: 42}. The order of the returned array is undefined. d3.entries({foo: 42, bar: true}); // [{key: "foo", value: 42}, {key: "bar", value: true}]

d3.tsvParseRows()

d3.tsvParseRows(string[, row]) Equivalent to dsvFormat("\t").parseRows.

quantize.copy()

quantize.copy() Returns an exact copy of this scale. Changes to this scale will not affect the returned scale, and vice versa.

transition.nodes()

transition.nodes() Returns an array of all (non-null) elements in this transition. Equivalent to selection.nodes.

voronoi()

voronoi(data) Computes the Voronoi diagram for the specified data points.

zoom.interpolate()

zoom.interpolate([interpolate]) If interpolate is specified, sets the interpolation factory for zoom transitions to the specified function. If interpolate is not specified, returns the current interpolation factory, which defaults to d3.interpolateZoom to implement smooth zooming. To apply direct interpolation between two views, try d3.interpolate instead.

request.response()

request.response(value) Sets the response value function to the specified function and returns this request instance. The response value function is used to map the response XMLHttpRequest object to a useful data value. See the convenience methods json and text for examples.

area.curve()

area.curve([curve]) If curve is specified, sets the curve factory and returns this area generator. If curve is not specified, returns the current curve factory, which defaults to curveLinear.

d3.geoConicEqualAreaRaw

d3.geoConicEqualArea() d3.geoConicEqualAreaRaw Alber’s conic equal-area projection; see d3-geo.

d3.schemeGnBu

d3.interpolateGnBu(t) d3.schemeGnBu Given a number t in the range [0,1], returns the corresponding color from the “GnBu” sequential color scheme represented as an RGB string.