| extract_matches | R Documentation | 
Compares a query string to a list of choices using the specified scorer and returns the top matches with a similarity score above the cutoff.
extract_matches(
  query,
  choices,
  score_cutoff = 50,
  limit = 3L,
  processor = TRUE,
  scorer = "WRatio"
)
| query | The query string to compare. | 
| choices | A vector of strings to compare against the query. | 
| score_cutoff | A numeric value specifying the minimum similarity score (default is 50.0). | 
| limit | The maximum number of matches to return (default is 3). | 
| processor | A boolean indicating whether to preprocess strings before comparison (default is TRUE). | 
| scorer | A string specifying the similarity scoring method ("WRatio", "Ratio", "PartialRatio", etc.). | 
A data frame containing the top matched strings and their similarity scores.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.