Nothing
correlation_i_j_k_function <- function(series, i_cat, j_cat, k = 1) {
series_length <- length(series$Value)
binarized_series <- binarization(series)
a <- binarized_series[(k + 1) : series_length, i_cat]
b <- binarized_series[1 : (series_length - k), j_cat]
return(stats::cor(a, b))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.