You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
d3.least([1, null]) returns null, and d3.greatest([-1, null]) returns null, contrary to the other reducers (such as min, max, median…) which are all skipping nulls.
Interestingly, d3.leastIndex and d3.greatestIndex do not return the same result when using the default and identity accessors (because it follows two different code paths):
d3.least([1, null])
returns null, andd3.greatest([-1, null])
returns null, contrary to the other reducers (such as min, max, median…) which are all skipping nulls.Interestingly, d3.leastIndex and d3.greatestIndex do not return the same result when using the default and identity accessors (because it follows two different code paths):
This issue is similar to #203.
The text was updated successfully, but these errors were encountered: