lev_score_multiple {levitate} | R Documentation |
Score multiple candidate strings against a single input
Description
Given a single input
string and multiple candidates
, compute scores for each candidate.
Usage
lev_score_multiple(input, candidates, .fn = lev_ratio, ..., decreasing = TRUE)
Arguments
input |
A single string |
candidates |
One or more candidate strings to score |
.fn |
The scoring function to use, as a string or function object. Defaults to
|
... |
Additional arguments to pass to |
decreasing |
If |
Value
A list where the keys are candidates
and the values are the scores. The list is sorted
according to the decreasing
parameter, so by default higher scores are first.
See Also
Examples
lev_score_multiple("bilbo", c("frodo", "gandalf", "legolas"))
[Package levitate version 0.2.0 Index]