summary.lpacf | R Documentation |
lpacf
object.
Print out summary information about a lpacf
object.
## S3 method for class 'lpacf'
summary(object, ...)
object |
The |
... |
Other arguments |
Prints out number of times that we have localized partial autocorrelation for and the number of lags computed. The localized partial autocorrelation is computed at a number of time points that might not be identical to the times in the original series, this function prints out the min and max of the range of times and an indicator of whether the whole series' localized pacf was computed. The bandwidth associated with spectral smoothing is printed and a note made of whether it was computed automatically or supplied as an earlier argument.
None
Guy Nason
Killick, R., Knight, M. I., Nason, G.P. and Eckley, I. A. (2020) The local partial autocorrelation function and some applications. Electron. J. Statist. 14 (2), 3268-3314. DOI: 10.1214/20-EJS1748.
lpacf
, print.lpacf
#
# Simulate an example
#
set.seed(100)
x.test <- tvar2sim()
#
# Compute the lpacf
#
x.lpacf <- lpacf(x.test)
#
# Print it out - note, can normally just type name of object
#
summary(x.lpacf)
#Number of times: 220
#Number of lags: 27
#Range of times from: 147 to 366
#Part series was analyzed (alltimes=FALSE)
#Smoothing binwidth used was: 293
# Binwidth was chosen automatically
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.