rhenery {ohenery} | R Documentation |
Random generation under the Henery (or Harville) softmax model.
Description
Given base probabilities, and Henery gamma coefficients, performs random generation, using R's built in rand seed, of the final outcome of a race for each participant.
Usage
rhenery(mu, gamma = NULL)
Arguments
mu |
a vector of the probabilities of taking first place. |
gamma |
a vector of the gamma coefficients. Should have length
one less than |
Details
Given vectors \mu
and \gamma
, first computes
\pi_{1,i} = \frac{\mu_i^{\gamma_1}}{\sum_j \mu_j^{\gamma_1}},
then assigns a 1
to participant i
with probability
\pi_{1,i}
. The ‘winning’ participant is then removed
from consideration, and the process is repeated using the remaining
\mu
and \gamma
vectors.
Typically one has that \mu_i = \exp{\eta_i}
, for some
‘odds’, \eta_i
.
When the \gamma
are all one, you recover the Harville softmax
model.
Value
A vector, of the same length as the probabilities, giving the entry of each horse. Note that the expected value of this returned thing makes sense, it is not the finished rank ordering of a race.
Author(s)
Steven E. Pav shabbychef@gmail.com