smap_efficient | R Documentation |
SMap That Returns Only The Forecast Accuracy
smap_efficient(
N,
lags = NULL,
theta = 0,
p = 1L,
first_difference = FALSE,
centre_and_scale = FALSE,
exclusion_radius = "half"
)
N |
A data frame with named columns for the response variable and covariate time series. |
lags |
A list of named integer vectors specifying the lags to use for
each time series in |
theta |
The numeric local weighting parameter. |
p |
The integer forecast distance. |
first_difference |
Logical. First-difference each time series? |
centre_and_scale |
Logical. Centre and scale each time series? |
exclusion_radius |
Number of points around $\bf x_t^*$ to exclude as candidate nearest neighbours; either default of 'half' as used for our manuscript (see equation (6)), or a number to match the 'exclusionRadius' setting in 'rEDM::Simplex()'. See '?pbsDist' for more details. |
[numeric()] The forecast accuracy rho
N <- data.frame(x = simple_ts)
lags <- list(x = 0:1)
m4 <- smap_efficient(N, lags, first_difference = TRUE)
# And see pbsSmap vignette.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.