synth_rank | R Documentation |
Using a list
two or more partial sequences, all of which observe the same order of elements, create a single "synthetic" ranking. This is accomplished by counting the total number of elements after running a recursive trace through all partial sequences (via quae_postea
). If partial sequences are inconsistent in their rankings, a NULL
value is returned.
synth_rank(obj, ties = "average")
## S3 method for class 'list'
synth_rank(obj, ties = "average")
obj |
A |
ties |
The way in which ties are handled per the |
A single vector containing the synthesized ranking.
x <- c("A", "B", "C", "D", "E")
y <- c("B", "D", "F", "E")
a <- list(x, y)
synth_rank(a)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.