lsh_subset | R Documentation |
List of all candidates in a corpus
lsh_subset(candidates)
candidates |
A data frame of candidate pairs from
|
A character vector of document IDs from the candidate pairs, to be
used to subset the TextReuseCorpus
.
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)
candidates <- lsh_candidates(buckets)
lsh_subset(candidates)
corpus[lsh_subset(candidates)]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.