You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

ml-arrayxy-uniquex

Package Overview
Dependencies
Maintainers
7
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ml-arrayxy-uniquex

Function to sum the y values if the x values are equals. The x array has to be ordered.

0.2.4
Source
npm
Version published
Weekly downloads
162
-19.4%
Maintainers
7
Weekly downloads
 
Created
Source

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 ml-arrayxy-uniquex

const uniqueX=require('ml-arrayxy-uniquex');

  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

Keywords

machine

FAQs

Package last updated on 06 Aug 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts