print.tvp: Prints 'tvp' Object.

View source: R/print.tvp.R

print.tvpR Documentation

Prints tvp Object.

Description

The function prints selected outcomes obtained from tvp.

Usage

## S3 method for class 'tvp'
print(x, ...)

Arguments

x

an object of tvp class

...

not used

Details

The function prints mean regression coefficients from the analyzed period, Root Mean Squared Error (RMSE) and Mean Absolute Error (MAE) from the estimated model.

Value

Called for printing.

Examples

wti <- crudeoil[-1,1]
drivers <- (lag(crudeoil[,-1],k=1))[-1,]
ld.wti <- (diff(log(wti)))[-1,]
ld.drivers <- (diff(log(drivers)))[-1,]
tvp <- tvp(y=ld.wti,x=ld.drivers,V=1,lambda=0.99)
print(tvp)

fDMA documentation built on July 26, 2023, 6:09 p.m.

Related to print.tvp in fDMA...