New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

correl-z

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

correl-z

correlated standard normal distribution random number generator

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

correl-z

correlated standard normal distribution random number generator

ExampleAPILicense

Example

var correlZ = require('correlZ'),
    randomZ = require('random-z'), // unit normal distribution random number generator
    cholesky = require('cholesky') // cholesky decomposition

var correlMatrix = [[1], [0.2, 1], [0.2, 0.2, 1]] // lower triangle is enough
    correlWeights = cholesky(correlMatrix),
    correlSeeders = correlWeights.map(correlZ) // array of random number generators

var iids = correlWeights.map(randomZ) // shared identically distributed variables

// all 3 results below are different but correlated, E=0, V=1, Cor(i,j) = 0.2
var x0 = correlSeeder[0](iids),
    x1 = correlSeeder[1](iids),
    x2 = correlSeeder[2](iids)

API

The module exports a single function that takes an array of linear factors or a key-factor object to be applied to shared standard normal Independent and identically distributed random_variables (iids) and returns a standard normal correlated random number generator.

NameTypeNotes / Examples
correlZweights => randomFcnrand = correlZ({2:0.1, 1:0.2})
weights`ObjectArray`
randomFcn(iidZs [,selfZ]) => NumberZi<1: sample = randomFcn({a:0.7, b:0.4})
iidZs`ObjectArrayofzSeed`
selfZzSeedoptional standard normal seed for testing. Normally generated internally
zSeedNumberstandard normal random seed -1 < v < 1

Note that the linear iid weights can obtained from the correlation matrix with the cholesky module.

License

MIT © Hugo Villeneuve

Keywords

FAQs

Package last updated on 08 Jan 2017

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc