get_rankings | R Documentation |
Returns all possible rankings that extend a partial ranking.
get_rankings(data, force = FALSE)
data |
List as returned by exact_rank_prob when run with |
force |
Logical scalar. Stops function if the number of rankings is too large. Only change to TRUE if you know what you are doing |
The i
th row of the matrix contains the rank of node i
in all possible rankings
that are in accordance with the partial ranking P
. The lowest rank possible is
associated with 1
.
A matrix containing ranks of nodes in all possible rankings.
David Schoch
P <- matrix(c(0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, rep(0, 10)), 5, 5, byrow = TRUE)
P
res <- exact_rank_prob(P, only.results = FALSE)
get_rankings(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.