Learn R Programming

tsbugs (version 1.2.1)

print.tsbugs: Prints tsbugs object

Description

Prints the BUGS model in a tsbugs object.

Usage

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

Arguments

x

A BUGS model of class tsbugs

Additional arguments passed to print

Details

Prints tsbugs BUGS model. Note, in a tsbugs object there are additional details (the data used and other summary information) that are not printed.

Examples

Run this code
# NOT RUN {
# Create AR(1) model for Lake Huron data
LH <- LakeHuron
ar1 <- ar.bugs(y = diff(LH), ar.order = 1)

print(ar1) 
# }

Run the code above in your browser using DataLab