Burndown Chart

- Added debug output showing calculations.
- Made the bias configurable, defaulting to 0.666.
- Added 'burndown.bias' to the taskrc.5 man page.
This commit is contained in:
Paul Beckingham 2010-11-24 15:11:02 -05:00
parent 42c0b33f07
commit 955634c35b
3 changed files with 28 additions and 10 deletions

View file

@ -306,6 +306,16 @@ comparison of the data. This can be in either the 'side' style, which compares
values side-by-side in a table, or 'diff' style, which uses a format similar to
the 'diff' command.
.TP
.B burndown.bias=0.666
The burndown bias is a number that lies within the range 0 <= bias <= 1. The bias
is the fraction of the find/fix rates derived from the short-term data (last
25% of the report) versus the longer term data (last 50% of the report). A
value of 0.666 (the default) means that the short-term rate has twice the weight
of the longer-term rate. The calculation is as follows:
rate = (long-term-rate * (1 - bias)) + (short-term-rate * bias)
.TP
.B debug=off
Taskwarrior has a debug mode that causes diagnostic output to be displayed.