1.0.13 • Published 2 years ago

estimate-js v1.0.13

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Release semantic-release

CodeFactor Maintainability Test Coverage

Commitizen friendly semver GitHub license Downloads

Estimation tools set. Currently supported entities:

  • 3-Point
  • PERT

Try it out

Want to get a quick demo before using it? Press the button below.

Installation

With NPM:

npm i estimate-js -S

or using YARN:

yarn add estimate-js

Usage

Import required entities to you code:

  import { ThreePointEstimate, PertEstimate } from 'estimate-js';

Perform operations you need:

  const threePointEstimate = new ThreePointEstimate(2, 3, 5);
  const PERTEstimate = new PertEstimate(threePointEstimate);

  const { estimate: E, standartDeviation: SD } = PERTEstimate;

  // 95% prob.
  console.log(E - (2 * SD), '-', E + (2 * SD));
1.0.2

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.1

3 years ago

1.0.0

3 years ago