plotPenLL {tilingArray} | R Documentation |
Plot the log-likelihood and two versions of penalized log-likelihoods (AIC, BIC) for a segmentation object.
plotPenLL(seg, extrabar=numeric(0), type="b", lty=1, pch=16, lwd=2, ...)
seg |
A segmentation object. |
extrabar |
In addition to the location of maximmal BIC, vertical bars are drawn at these x-positions as well. |
type, pch, lty, lwd, ... |
Get passed on to matplot . |
This function is used in the vignette: How to use the segment function to fit a piecewise constant curve.
The function is called for its side effect, which is creating a plot in the current graphics device.
Wolfgang Huber <huber@ebi.ac.uk>
x = rep( sin((0:4)/2*pi), each=3) + rnorm(3*5, sd=0.1) res = segment(x, maxseg=8, maxk=15) plotPenLL(res)