View source: R/ts_projection.R
ts_projection | R Documentation |
Separates the ts_data
into input and output.
ts_projection(ts)
ts |
matrix or data.frame containing the time series. |
a ts_projection
object.
#setting up a ts_data
data(sin_data)
ts <- ts_data(sin_data$y, 10)
io <- ts_projection(ts)
#input data
ts_head(io$input)
#output data
ts_head(io$output)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.