Function to calculate probability of assigning a set of specific ranks to an specific item given its rank in the consensus ranking
calculate_forward_probability(
item_ordering,
partial_ranking,
remaining_set,
rho,
alpha,
n_items,
metric = "footrule"
)
List containing aug_ranking, a ranking sequence vector of the proposed augmented ranking and forward_prob a numerical value of the probability of creating the augmented ranking using the pseudolikelihood augmentation.
A vector of integer values to represent the specified queue of which unranked item to assign a rank for the proposed augmented ranking
An incomplete rank sequence vector of the original observed incomplete ranking which contains NAs
A vector of integer values to represent the elements (ranks) missing from original observed ranking
Numeric vector specifying the consensus ranking
Numeric value of the scale parameter
Integer is the number of items in a ranking
A character string specifying the distance metric to use in
the Bayesian Mallows Model. Available options are "footrule"
,
"spearman"
, "cayley"
, "hamming"
, "kendall"
,
and "ulam"
.