You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 6, 2021. It is now read-only.
Original Subject: Throughput calculation appears to be wrong
Copied from PR comment:
I think the cycle time data shouldn't actually factor into the throughput calculation at all. For example:
If we finish 5 cards in a week in serial, each card has a 1-day cycle time -> avgCycleTime === 1
If we finish 5 cards in a week in parallel, each card has a 5-day cycle time -> avgCycleTime === 5
The throughput should be the same in both cases: 5 cards per week. But the equation in getCategorySummary() will instead give very different answers for these two cases...
Original Subject: Throughput calculation appears to be wrong
Copied from PR comment:
I think the cycle time data shouldn't actually factor into the throughput calculation at all. For example:
avgCycleTime === 1avgCycleTime === 5The throughput should be the same in both cases: 5 cards per week. But the equation in
getCategorySummary()will instead give very different answers for these two cases...