We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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).
(start time, story points as start)
(current time + est. time remaining, 0)
The text was updated successfully, but these errors were encountered:
solved
Sorry, something went wrong.
No branches or pull requests
The trendline does linear regression on bar heights. This leads to skewed estimates. The proper thing to do is:
Estimate time remaining:
Draw a line between
(start time, story points as start)
and(current time + est. time remaining, 0)
.The text was updated successfully, but these errors were encountered: