breakdates(obj, format.times = FALSE, ...)
"breakpoints"
, "breakpointsfull"
or their
confidence intervals as returned by confint
.TRUE
a vector of
strings with the formatted breakdates. See details for more
information.2002.75
of a monthly time series will be formatted to
"2002(10)"
.breakpoints
, confint
if(! "package:stats" %in% search()) library(ts)
## Nile data with one breakpoint: the annual flows drop in 1898
## because the first Ashwan dam was built
data(Nile)
plot(Nile)
bp.nile <- breakpoints(Nile ~ 1)
summary(bp.nile)
plot(bp.nile)
## compute breakdates corresponding to the
## breakpoints of minimum BIC segmentation
breakdates(bp.nile)
## confidence intervals
ci.nile <- confint(bp.nile)
breakdates(ci.nile)
ci.nile
plot(Nile)
lines(ci.nile)
Run the code above in your browser using DataLab