Description Usage Arguments Value Note Author(s) Examples
Converts continuous probability values into binned discrete probability forecasts. This is useful in calculated Brier type scores for values with continuous probabilities. Each probability is assigned the value of the midpoint.
1 2 | probcont2disc(x, bins = seq(0,1,0.1) )
|
x |
A vector of probabilities |
bins |
Bins. Defaults to 0 to 1 by 0.1 . |
A vector of discrete probabilities. E
This function is used within brier
.
Matt Pocernich
1 2 3 4 5 6 7 8 9 | # probabilistic/ binary example
set.seed(1)
x <- runif(10) ## simulated probabilities.
probcont2disc(x)
probcont2disc(x, bins = seq(0,1,0.25) )
## probcont2disc(4, bins = seq(0,1,0.3)) ## gets error
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.