plan4hub / yoda

GitHub extension for agile project management using the issues subsystem.

Home Page:https://plan4hub.github.io/yoda/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Trendline calculation correction

Joshuaalbert opened this issue · comments

The trendline does linear regression on bar heights. This leads to skewed estimates. The proper thing to do is:

velocity = (story points at start - story points currently)/(current time - start time)

Estimate time remaining:

est. time remaining = (story points remaining) / velocity

Draw a line between (start time, story points as start) and (current time + est. time remaining, 0).