Description Usage Arguments Value Examples
View source: R/multivariateErrorMeasures.R
Computes the multivariate WAPE based on the individual time series (according to:https https://arxiv.org/pdf/1905.03806.pdf)
1 | MWAPE(X, X_hat)
|
X |
|
X_hat |
|
List containing:
values_vec
: Vector of the individual WAPEs
mean
: Mean of the vector of the individual WAPEs
article_ref
: WAPE computed according to the reference article
1 2 3 4 5 6 | X <- matrix(rnorm(100),10,10)
X_hat <- matrix(rnorm(100,mean=1),10,10)
results_list <- MWAPE(X,X_hat)
results_list$values_vec # For individual WAPEs vector
results_list$mean # For the mean of the individual WAPEs vector
results_list$article_ref # For the value computed according to the reference article
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.