Skip to contents

Get cumulative probabilities from distribution of chips of one expert

Usage

get_cum_probs_1exp(chips)

Arguments

chips

Vector of integers, representing the distribution of chips assigned by one expert, as elicited through the roulette method. Each element of the vector represents one bin in the grid.

Value

A numeric vector with the cumulative distribution of chips.

See also

[get_model_input_1exp()] and [fit_beta_1exp()].

Examples

chips <- c(0, 2, 3, 2, 1, 1, 1, 0, 0, 0)
x <- get_cum_probs_1exp(chips)
print(x)
#>  [1] 0.0 0.2 0.5 0.7 0.8 0.9 1.0 1.0 1.0 1.0