View source: R/psi_auto_distance.R
psi_auto_distance | R Documentation |
Demonstration function to compute the sum of distances between consecutive cases in a time series.
psi_auto_distance(x = NULL, distance = "euclidean")
x |
(required, zoo object or matrix) univariate or multivariate time series with no NAs. Default: NULL |
distance |
(optional, character vector) name or abbreviation of the distance method. Valid values are in the columns "names" and "abbreviation" of the dataset distances. Default: "euclidean". |
numeric value
Other psi_demo:
psi_auto_sum()
,
psi_cost_matrix()
,
psi_cost_path()
,
psi_cost_path_sum()
,
psi_distance_lock_step()
,
psi_distance_matrix()
,
psi_equation()
#distance metric
d <- "euclidean"
#simulate zoo time series
x <- zoo_simulate(
name = "x",
rows = 100,
seasons = 2,
seed = 1
)
#sum distance between consecutive samples
psi_auto_distance(
x = x,
distance = d
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.