Effort Estimation

Version 1.9 by chrisby on 2023/10/12 13:59

Techniques

There are a few common techniques for estimating the effort of stories, such as Wideband Delphi or Planning Poker, which are often combined with Three-Point Estimation. However, this article discusses general considerations only.

Tips

  • Story Points: The unit of story estimates is points, which provides a relative measure of effort rather than an absolute measure of time. This helps teams avoid getting bogged down in detailed time-based estimates and their units, and instead focus on comparing the relative size of different stories.
  • The Golden Story: At the very beginning of a project, choose a medium effort story to be the "golden story". It acts as a standard against which every other story must be compared and its estimated effort questioned. This prevents the estimated story points from being artificially inflated later in the project, e.g. due to pressure from management to increase the team's velocity. Velocity is a metric, not a goal, and should be approximately constant throughout the project.
  • Cheap Estimates: Breaking down a task and estimating the subtasks gives a higher accuracy than estimating the original task. Theoretically, this breakdown can be repeated until code level is reached and the feature is implemented, but this would no longer be a planning process. Planning should be cheap, estimating should take little time and be as accurate as necessary.
  • Increasing Estimate Precision: Initial estimates are highly inaccurate. As the project progresses, new insights and feedback loops allow the accuracy to be increased.
  • Uncertainty & Honesty: Honestly communicate the level of certainty for each of your estimate. Choose wisely between "I'm sure that ...", "I think ..." I guess ...". The most honest answer is sometimes "I don't know". Uncertain estimates can still be valuable and can be modeled by probabilities or ranges of estimates.
  • Absolute vs Relative Estimates: Absolute estimates are best ("Task A is worth 3 points"), but relative estimates can still be valuable ("Task A will require twice as much effort as Task B").