https://github.com/janithl/three-point-est
A 'simple three point estimation' app in React
https://github.com/janithl/three-point-est
estimation project-management software-development three-point-estimation
Last synced: 5 months ago
JSON representation
A 'simple three point estimation' app in React
- Host: GitHub
- URL: https://github.com/janithl/three-point-est
- Owner: janithl
- License: mit
- Created: 2018-07-02T15:02:51.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-12T04:39:28.000Z (almost 2 years ago)
- Last Synced: 2024-08-12T05:44:41.804Z (almost 2 years ago)
- Topics: estimation, project-management, software-development, three-point-estimation
- Language: JavaScript
- Homepage: https://janithl.github.io/three-point-est/
- Size: 612 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# three-point-est
A 'simple three point estimation' app in React. You can
[see it in action here](https://janithl.github.io/three-point-est/).
## What is a three-point estimation?
> The three-point estimation technique is used in management and information systems applications
> for the construction of an approximate probability distribution representing the outcome of future
> events, based on very limited information.
>
> Based on the assumption that a **double-triangular distribution** governs the data, several
> estimates are possible. These values are used to calculate an E value for the estimate and a
> standard deviation (SD) as L-estimators, where:
>
> **E = (a + 4m + b) / 6**
>
> _(where a = the best-case estimate, m = the most likely estimate, b = the worst-case estimate)_
— [Wikipedia](https://en.wikipedia.org/wiki/Three-point_estimation)
It is used a lot in Software Engineering to estimate project durations. I highly discourage you from using
it for that purpose, given my personal experiences with it. There are far better Agile estimation methods.
## Building
Run `yarn` to install dependencies, `yarn start` to debug, and `yarn deploy` to deploy to Github pages.
## TODO
- TESTS!
- CSV Export
- Graphs
## License
three-point-est is released under the [MIT License](http://opensource.org/licenses/MIT).