lsh_candidates: Candidate pairs from LSH comparisons

Description Usage Arguments Value Examples

View source: R/lsh_candidates.R

Description

Given a data frame of LSH buckets returned from lsh, this function returns the potential candidates.

Usage

1
lsh_candidates(buckets)

Arguments

buckets

A data frame returned from lsh.

Value

A data frame of candidate pairs.

Examples

1
2
3
4
5
6
7
dir <- system.file("extdata/legal", package = "textreuse")
minhash <- minhash_generator(200, seed = 234)
corpus <- TextReuseCorpus(dir = dir,
                          tokenizer = tokenize_ngrams, n = 5,
                          minhash_func = minhash)
buckets <- lsh(corpus, bands = 50)
lsh_candidates(buckets)

ropensci/textreuse documentation built on May 19, 2020, 7:40 a.m.