| pbsSimplex | R Documentation | 
Forecast via Simplex Projection
pbsSimplex(
  N,
  E = 1:10,
  p = 1L,
  first_difference = FALSE,
  centre_and_scale = FALSE,
  verbose = FALSE
)
| N | [data.frame()] or [numeric()] Response variable time series as first column or as a vector. | 
| E | [integer()] Vector of embedding dimensions. | 
| p | [integer()] Scalar forecast distance. | 
| first_difference | [logical()] First-difference the time series | 
| centre_and_scale | [logical()] Centre and scale the time series? | 
| verbose | [logical()] Print progress? | 
A list of class pbsSimplex
Luke A. Rogers
N <- data.frame(x = 1:30)
s1 <- pbsSimplex(N)
N <- data.frame(x = simple_ts)
s2 <- pbsSimplex(N)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.