Learn R Programming

lpacf (version 1.0.1)

print.lpacf: Prints a lpacf object.

Description

Prints a lpacf object, basically telling you what's there.

Usage

# S3 method for lpacf
print(x, ...)

Value

None

Arguments

x

The lpacf object to print.

...

Other arguments

Author

Guy Nason

Details

Prints a lpacf object.

References

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.

See Also

lpacf, summary.lpacf

Examples

Run this code
#
# Simulate an example
#
x.test <- tvar2sim()
#
# Compute the lpacf
#
x.lpacf <- lpacf(x.test)
#
# Print it out - note, can normally just type name of object
#
print(x.lpacf)
#Class 'lpacf' : Localized Partial Autocorrelation Object:
#       ~~~~  : List with 5 components with names
#              the.x lpacf the.vacc binwidth AutoBinWidth 
#
#
#summary(.):
#----------
#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

Run the code above in your browser using DataLab