fit_beta_mult_exp {tipmap} | R Documentation |
Fit beta distributions for multiple experts
Description
Fit beta distributions to data elicited from multiple experts via the roulette method.
Usage
fit_beta_mult_exp(chips_mult)
Arguments
chips_mult |
A dataframe or matrix containing weights. It should contain one row per expert and 10 columns, one for each bin, representing weights from 0 to 1. |
Value
A dataframe containing the parameters of the individual beta distributions.
See Also
Examples
beta_fits <- fit_beta_mult_exp(
chips_mult = rbind(
c(0, 0, 0, 0, 2, 3, 3, 2, 0, 0),
c(0, 0, 0, 1, 2, 4, 2, 1, 0, 0),
c(0, 0, 0, 2, 2, 2, 2, 2, 0, 0)
)
)
print(beta_fits)
[Package tipmap version 0.5.2 Index]