Published
Edited
Jun 19, 2021
1 star
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
project_size_hours
Insert cell
Insert cell
a // Max possible improvement (1 + a)
Insert cell
Insert cell
b // Speed at which returns reduce
Insert cell
Insert cell
c // Initial slow learning period
Insert cell
function diminishing_returns(hours) {
return a / (1 + Math.exp(-(hours - c)/b))
}
Insert cell
Insert cell
Insert cell
Insert cell
function estimate_time(hours) {
let result = diminishing_returns(hours) + 1;
let work_hours = project_size_hours / result;
return hours + work_hours;
}
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more