View source: R/metrics-sample.R
se_mean_sample | R Documentation |
Squared error of the mean calculated as
\textrm{mean}(\textrm{observed} - \textrm{mean prediction})^2
The mean prediction is calculated as the mean of the predictive samples.
se_mean_sample(observed, predicted)
observed |
A vector with observed values of size n |
predicted |
nxN matrix of predictive samples, n (number of rows) being
the number of data points and N (number of columns) the number of Monte
Carlo samples. Alternatively, |
Overview of required input format for sample-based forecasts
observed <- rnorm(30, mean = 1:30)
predicted_values <- matrix(rnorm(30, mean = 1:30))
se_mean_sample(observed, predicted_values)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.