Usage
centiles.ts(obj, xvar = NULL, cent = c(0.5, 2.5, 50, 95.5, 99.5), legend = TRUE, ylab = "y", xlab = "x", main = NULL, main.gsub = "@", xleg = min(xvar), yleg = max(obj$y), xlim = range(xvar), ylim = range(obj$y), save = FALSE, plot = TRUE, type = "l", points = TRUE, pch = "+", col = "blue", col.centiles = 1:length(cent) + 2,
lty.centiles = 1, lwd.centiles = 1, ...)
Arguments
obj
a fitted gamlss object which has a time series response variable
xvar
the time of the time series
cent
a vector with elements the % centile values for which the centile curves have to be evaluated
legend
whether a legend is required in the plot or not, the default is legent=TRUE
main
the main title here as character.
If NULL the default title "centile curves using NO" (or the relevant distributions name) is shown
main.gsub
if the main.gsub
(with default "@") appears in the main
title then it is substituted with the default title.
xleg
position of the legend in the x-axis
yleg
position of the legend in the y-axis
xlim
the limits of the x-axis
ylim
the limits of the y-axis
save
whether to save the sample percentages or not with default equal to FALSE
.
In this case the sample percentages are printed but are not saved
plot
whether to plot the centiles. This option is useful for centile.split
pch
the character to be used as the default in plotting points see par
col
plotting colour see par
col.centiles
Plotting colours for the centile curves
lty.centiles
line type for the centile curves
lwd.centiles
The line width for the centile curves
points
whether the data points should be plotted, default is TRUE
for centiles()
and
FALSE
for centiles.fan()