Causal Inference Methods for the Web
npm install causal-inference.js> Opensource causal-inference package for the web
```
npm install --save causal-inference
`javascript
// import package
const { getEffectAB } = require("causal-inference.js");
//calculate ab effect
const difference = getEffectAB(controlGroupMean, testGroupMean);
// ...
`
| Methods | Status | Description |
| ---------------- | ------ | ------------------------------------------------------- |
| getEffectAB | WIP | Get effect of AB test of data array or just mean values |
| getABControlSize | WIP | Provide control group size for AB test |
| distributeGroups | WIP | Distribute groups to avoid effect of externalities |
##### Feel free to contribute to this project, my email is luis.egvillarreal@gmail.com for any questions.
`bash``
npm test