
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
ndarray-moments
Advanced tools
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).
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])
npm install ndarray-moments
require("ndarray-moments")(n, array)Calcuates the first n moments of array
n is the number of momentsarray is the array we are iterating overReturns An array of moments of the array.
(c) 2013 Mikola Lysenko. MIT License
FAQs
Statistical moments of ndarrays
The npm package ndarray-moments receives a total of 414 weekly downloads. As such, ndarray-moments popularity was classified as not popular.
We found that ndarray-moments demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.