Description Usage Arguments Details Value Examples
Computes the Brier Score for probabilistic forecasts of binary outcomes.
1 | brier_score(true_values, predictions)
|
true_values |
A vector with the true observed values of size n |
predictions |
A vector with a predicted probability that true_value = 1. |
The Brier score is a proper score rule that assesses the accuracy of probabilistic binary predictions. The outcomes can be either 0 or 1, the predictions must be a probability that the true outcome will be 1.
The Brier Score is then computed as the mean squared error between the probabilistic prediction and the true outcome.
Brier_Score = \frac{1}{N} ∑_{t = 1}^{n} (prediction_t - outcome_t)^2
A numeric value with the Brier Score, i.e. the mean squared error of the given probability forecasts
1 2 3 4 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.