Nothing
auxiliary_pearson_measure <- function(series, lag = 1, features = FALSE) {
series_length <- length(series$Value)
phi2 <- auxiliary_phi2_measure(series = series, lag = lag)
if (features == FALSE) {
return(series_length * phi2)
} else {
return(auxiliary_phi2_measure(series = series, lag = lag,
features = TRUE))
}
}
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.