summary.reg | R Documentation |
reg
Object.The function summarizes selected outcomes obtained from roll.reg
and rec.reg
.
## S3 method for class 'reg'
summary(object, ...)
object |
an object of |
... |
not used |
The function produces the outcomes as print.reg
.
Additionally, it provides how often p-values for t-test of statistical significance for each independent variable in the model is below 1%, 5% and 10%, respectively.
Called for printing.
wti <- crudeoil[-1,1]
drivers <- (lag(crudeoil[,-1],k=1))[-1,]
ld.wti <- (diff(log(wti)))[-1,]
ld.drivers <- (diff(log(drivers)))[-1,]
roll <- roll.reg(y=ld.wti,x=ld.drivers,window=100)
rec <- rec.reg(y=ld.wti,x=ld.drivers)
summary(roll)
summary(rec)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.