lm.fts {fts} | R Documentation |
Do a linear regression using date matching between left hand side and explanatory variables
lm.fts(y, ..., origin=F)
y |
An Fts object |
... |
Fts objects |
origin |
boolean indicating whether regression should go though origin |
an lm obmect
Whit Armstrong
x <- fts() y <- fts() z <- fts() ## show that date matching is done z <- z[1:50,] lm.result <- lm.fts(z,y,x) summary(lm.result)