array-xy-unique-x

0.0.4 • Public • Published

arrayxy-uniquex

NPM version build status David deps npm download

Function to sum the y values if the x values are equals. The x array has to be ordered. It is an in place modification

Installation

npm i array-xy-unique-x

const uniqueX=require('array-xy-unique-x');

  var x = [0, 0, 1, 2, 3, 3];
  var y = [1, 2, 3, 4, 5, 6];
  uniqueX({ x, y });

  // x = [0, 1, 2, 3]
  // y = [3, 3, 4, 11]

API Documentation

License

MIT

Package Sidebar

Install

npm i array-xy-unique-x

Weekly Downloads

0

Version

0.0.4

License

MIT

Unpacked Size

5.98 kB

Total Files

7

Last publish

Collaborators

  • lpatiny