print.summary.arfima: Prints the output of a call to 'summary' on an 'arfima'...

View source: R/utilityfcns.R

print.summary.arfimaR 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 summary.arfima object

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)


arfima documentation built on Aug. 19, 2022, 5:14 p.m.