Socket
Book a DemoInstallSign in
Socket

ndarray-moments

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ndarray-moments

Statistical moments of ndarrays

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

ndarray-moments

Calculate unnormalized moments of an ndarray. Another name for these things is that they are the expected value of polynomials. The first unnormalized moment is just the mean, the second is the expected value of x^2, the 3rd is E[x^3], etc. Using this data, you can compute any polynomial statistic like variance, kurtosis, or skewness using the method of moments (aka linearity of expectation).

Example

var ndarray = require("ndarray")
var x = ndarray(new Float64Array([1, 2, 5, -10]))

//Compute moments
var moments = require("ndarray-moments")(2, x)

//Print out statistics
console.log("Mean:", moments[0])
console.log("Variance:", moments[1] - moments[0]*moments[0])

Install

npm install ndarray-moments

require("ndarray-moments")(n, array)

Calcuates the first n moments of array

  • n is the number of moments
  • array is the array we are iterating over

Returns An array of moments of the array.

Credits

(c) 2013 Mikola Lysenko. MIT License

Keywords

moment

FAQs

Package last updated on 29 Apr 2014

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