plot.tvp | R Documentation |
tvp
Object.The function plots selected outcomes from tvp
object.
## S3 method for class 'tvp'
plot(x,non.interactive=NULL, ...)
x |
an object of |
non.interactive |
optional, |
... |
not used |
After executing the command, the User is asked to choose
1 - for plotting actual and predicted values,
2 - for plotting residuals,
3 - for plotting regression coefficients on one plot,
4 - for plotting regression coefficients in separate png files, saved in the temporary directory, and moreover, to paste them into one big plot (also saved as a png file in the temporary directory).
Chosing 0 exits the plot
command.
If non.interactive=TRUE
all the above plots are made.
Called for making a plot.
It is suggested to execute graphics.off
before exectuing plot
command for tvp
object. However, the User should take care to save all other plots before executing this command, as they can be lost.
If graphics.off
is not executed before plotting tvp
object, sometimes a legend might cover the important parts of the plot.
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)
# graphics.off()
plot(tvp)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.