View source: R/simulate_contests.R
simulate_comparisons | R Documentation |
This function simulates pair-wise contests according to the Bradley–Terry model. It require the true quality of the areas and the number of comparisons to be carried out. It can also include some judge noise or error. When including noise, each time a judge carries out a comparisons, we assume they use the true quality with some zero-mean normal noise added. The standard deviation must be specified.
simulate_comparisons(n.contests, true.quality, sigma.obs)
n.contests |
The number of contests to be carried out |
true.quality |
A vector with the level of deprivation in each object on the log scale. |
sigma.obs |
Standard deviation for the noise to be added to the level of deprivation in each object. If 0, no noise is used. |
A list containing a data.frame with each pair-wise contest, the outcome (a 1 for a win, a 0 for a loss), and a win matrix where the i,j^th element is the number of times i beat j
example.deprivation <- -2:2 #True level of deprivation in each object example.comparisons <- simulate_comparisons(10, example.deprivation, 0) #generate comparisons with judge noise. example.comparisons <- simulate_comparisons(10, example.deprivation, 0.1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.