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

raw-moments

v1.0.0

Published

single sample raw moment or array of multiple moments

Downloads

14

Readme

raw-moments

IntroductionLimitationsUsageTestLicense

Introduction

Returns the average(s) of values raised to one or more exponents: E(x,k) = ∑(x^k)/n

If a sample array and an exponent are provided, returns a single raw moment (origin moment)

f([A],b) = ∑(a^b) / n

If a sample array and an array of length N are provided, returns the same array filled moments 1 to N.

f([A], [B]) = [ ∑(a)/n, ∑(a^2)/n, ∑(a^3), ...]

Limitations

While Kahan summation is used internally to reduce floating point errors, care must be taken if different sums are to be substracted for variance or skew calculations.

For large data sets that are far from the origin (ie 0 would fall outside the range of values) the significant order of magnitude between terms will cause significant errors during substractions.

Usage

single power

With a single exponent, rawMoments(samples, k) return the single k^th raw moment (aka origin moment).

var rawMoments = require('raw-moments')
rawMoments([0, 1, 2], 2)    // return (0 + 1^2 + 2^2)/3 = 5/3
rawMoments([1/4, 1/2, 1], -1)    // return (4 + 2 + 1)/3 = 5/3

multiple powers

The actual use case is to obtain multiple k^th order raw moments in a single pass. The maximum order is the length of the parameter array and the results will be inserted in this Array before it is returned.

var rawMoments = require('raw-moments')
rawMoments([0,1,2], Array(4))    // returns [1, 5/3, 3, 17/3]

Values in the second parameter array are replaced with the actual result and the same array is returned

var rawMoments = require('raw-moments')
var results = [0, 0, 99]    //initial values not important, only the array length
rawMoments([2,2], results)    // results = [4, 8, 16]

edge cases

var rawMoments = require('raw-moments')
rawMoments([], Array(3))    // returns [NaN, NaN, NaN]
rawMoments([0,1,2])    // returns the simple average (5/3)
rawMoments([0,1,2], [])    // returns the empty set []

Test

In node, from the root folder type npm test. (test dependency is not included with the package and must be obtained from the git repository or npm)

License

Released under the MIT License

Test

In node, from the root folder type npm test. (test is not included with the package and must be obtained from the git repository)

License

Released under the MIT License