plot,burndown-method {plan} | R Documentation |
Draw a burndown chart
Description
Plot a burndown chart.
Usage
## S4 method for signature 'burndown'
plot(
x,
col = NULL,
draw.plan = TRUE,
draw.regression = TRUE,
draw.lastupdate = FALSE,
t.stop = "",
y.name = "Remaining Effort",
debug = FALSE,
...
)
Arguments
x |
A burndown object. |
col |
list of colours for items, starting with the first key in the
file (which will be at the bottom of the chart). If not specified, the
|
draw.plan |
boolean, set to |
draw.regression |
boolean, set to |
draw.lastupdate |
boolean, set to |
t.stop |
a POSIX time, the maximum time for graph (defaults to deadline if not given). |
y.name |
character string, for labelling the vertical axis. |
debug |
boolean, set to |
... |
extra things handed down to plotting functions. |
Author(s)
Dan Kelley
References
https://en.wikipedia.org/wiki/Burndown_chart
See Also
Other things related to burndown data:
as.burndown()
,
burndown-class
,
burndown
,
read.burndown()
,
summary,burndown-method
Examples
library(plan)
data(burndown)
summary(burndown)
plot(burndown)