Skip to content
New issue

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

Trendline calculation correction #10

Closed
Joshuaalbert opened this issue Oct 17, 2019 · 1 comment
Closed

Trendline calculation correction #10

Joshuaalbert opened this issue Oct 17, 2019 · 1 comment

Comments

@Joshuaalbert
Copy link

Joshuaalbert commented Oct 17, 2019

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).

@Joshuaalbert
Copy link
Author

solved

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant