ret | R Documentation |
ret() is similar to embed(), but returns a data.frame specified with colnames, not matrix.
ret(wts, k)
wts |
Univariate time series. |
k |
k-1 lagged terms. |
ret() is similar to embed(), but returns a data.frame with colnames, not matrix. Moreover, unlike embed(),ret() fills lagged cells with NA, instead of trimming them.
A T by k dataframe returns. If you need 2 lags, you have to specify k=3, then it returns a dataframe with T by 3 dataframe, the first column is lag0.
Ho Tsung-wu <tsungwu@ntnu.edu.tw>, modifed from Javier Lopez-de-Lacalle
Javier Lopez-de-Lacalle in https://github.com/cran/uroot/blob/master/R/hegy.R
data(inf_Q)
y=inf_Q[,2]
ret(y,3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.