From 92e0bc71ac7bc4ec6008728fc147f74c29a5172b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Rivi=C3=A8re?= Date: Wed, 20 Nov 2019 10:39:51 +0100 Subject: [PATCH] examples notebook preview URL: https://observablehq.com/d/9b417e049e687a65 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c9cc917..a634122 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ Note: **no defensive copy** of the template array is created; modifications of t If the array is a typed array (Float64Array, etc), the interpolateNumberArray method is called instead. -# d3.interpolateNumberArray(a, b) · [Source](https://github.com/d3/d3-interpolate/blob/master/src/numberArray.js) +# d3.interpolateNumberArray(a, b) · [Source](https://github.com/d3/d3-interpolate/blob/master/src/numberArray.js), [Examples](https://observablehq.com/@d3/d3-interpolatenumberarray) Returns an interpolator between the two number arrays *a* and *b*. Internally, an array template is created that is the same type and length as *b*. For each element in *b*, if there exists a corresponding element in *a*, the values are directly interpolated in the array template. If there is no such element, the static value from *b* is copied. The updated array template is then returned.