powered by
tacvf
Plots the theoretical autocovariance functions of the modes for a fitted arfima object
arfima
# S3 method for tacvf plot( x, type = "o", pch = 20, xlab = NULL, ylab = NULL, main = NULL, xlim = NULL, ylim = NULL, tacf = FALSE, maxlag = NULL, lag0 = !tacf, ... )
None. There is a plot as output.
A tacvf object from a call to said function
See plot. The default is recommended for short maxlag
plot
maxlag
See plot
If TRUE, plots the theoretical autocorellations instead
TRUE
The maximum lag for the plot
Whether or not to plot lag 0 of the tacvfs/tacfs. Default !tacf. Used by tacfplot.
!tacf
tacfplot
Currently not used
JQ (Justin) Veenstra
Only plots up to nine tacvfs. It is highly recommended that the arfima object be weeded before calling tacvf
Veenstra, J.Q. Persistence and Antipersistence: Theory and Software (PhD Thesis)
set.seed(1234) sim <- arfima.sim(1000, model = list(theta = 0.99, dfrac = 0.49)) fit <- arfima(sim, order = c(0, 0, 1)) plot(tacvf(fit)) plot(tacvf(fit), tacf = TRUE)
Run the code above in your browser using DataLab