print.summary.arfima {arfima} | R Documentation |
Prints the output of a call to summary
on an arfima
object
Description
Prints the output of a call to summary
on an arfima
object
Usage
## S3 method for class 'summary.arfima'
print(
x,
digits = max(6, getOption("digits") - 3),
signif.stars = getOption("show.signif.stars"),
...
)
Arguments
x |
A |
digits |
The number of digits to print |
signif.stars |
Whether to print stars on significant output |
... |
Currently not used |
Value
Returns the object x
invisibly
Author(s)
JQ (Justin) Veenstra
References
Veenstra, J.Q. Persistence and Antipersistence: Theory and Software (PhD Thesis)
See Also
arfima
, print.arfima
,
summary.arfima
, print
Examples
set.seed(54678)
sim <- arfima.sim(1000, model = list(phi = 0.9, H = 0.3))
fit <- arfima(sim, order = c(1, 0, 0), lmodel = "g", back=TRUE)
summary(fit)
[Package arfima version 1.8-1 Index]