npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

curve-peak

v1.0.9

Published

A tiny piece of code to find peaks of the given curve.

Downloads

25

Readme

curve-peak

Description

A Javascript library for finding peak and valley points of the given curve.

Installation

Curve matcher can be installed via NPM

npm i curve-peak

Instructions

Curves are defined as arrays of points of y like below:

const curve = [{x: 2, y: 1.5}, {x: 4, y: 3}, ... ];

Finding peak points of a curve is as simple as calling:

import { findPeaks } from 'curve-peak';
const curve1 = [{ x: 0, y: 1 }, { x: 1, y: 3 }, { x: 2, y: 4 }, { x: 3, y: 3 }, { x: 4, y: 5 }, { x: 5, y: 5 }, { x: 6, y: 5 }, { x: 7, y: 1 }, { x: 8, y: 3 }];
console.log(findPV(curve1));  // { peaks: [{ x: 2, y: 4 }, { x: 4, y: 5 }, { x: 8, y: 3 }], valleys: [{ x: 0, y: 1 }, { x: 3, y: 3 }, { x: 7, y: 1 }], min: { x: 0, y: 1 }, max: { x: 4, y: 5 } }

The cover range of peak is set to 1 by default. That means if the y value of a point is bigger than the very left one, and isn't smaller than the very right one, will be recornised as a peak point. You can set the cover range as n like below, meaning that if the y value of a point is bigger than n left points, and isn't smaller than one of the n right points, it matches.

import { findPeaks } from 'curve-peak';
const curve2 = [{ x: 0, y: 2 }, { x: 1, y: 2 }, { x: 2, y: 3 }, { x: 3, y: 3 }, { x: 4, y: 4 }, { x: 5, y: 3 }, { x: 6, y: 2 }, { x: 7, y: 1 }, 
        { x: 8, y: 1 }, { x: 9, y: 0 }, { x: 10, y: 0 }, { x: 11, y: 1 }, { x: 12, y: 0 }, { x: 13, y: 1 }, { x: 14, y: 2 }, { x: 15, y: 1 }, 
        { x: 16, y: 3 }, { x: 17, y: 2 }, { x: 18, y: 3 }, { x: 19, y: 4 }, { x: 20, y: 5 }, { x: 21, y: 4 }, { x: 22, y: 3 }, { x: 23, y: 4 }];
console.log(findPV(curve2, { peakCoverRange: 3 }));  // { peaks: [{ x: 4, y: 4 }, { x: 20, y: 5 }], valleys: [{ x: 9, y: 0 }, { x: 12, y: 0 }, { x: 22, y: 3 }], min: { x: 9, y: 0 }, max: { x: 20, y: 5 } }