-
Notifications
You must be signed in to change notification settings - Fork 33
/
DESCRIPTION
45 lines (45 loc) · 1.39 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Package: textreuse
Type: Package
Title: Detect Text Reuse and Document Similarity
Version: 0.1.5
Date: 2024-05-24
Authors@R: c(
person("Yaoxiang", "Li", role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID="0000-0001-9200-1016")),
person("Lincoln", "Mullen", role = c("aut"),
email = "[email protected]",
comment = c(ORCID = "0000-0001-5103-6917")
))
Description: Tools for measuring similarity among documents and detecting
passages which have been reused. Implements shingled n-gram, skip n-gram,
and other tokenizers; similarity/dissimilarity functions; pairwise
comparisons; minhash and locality sensitive hashing algorithms; and a
version of the Smith-Waterman local alignment algorithm suitable for
natural language.
License: MIT
LazyData: TRUE
URL: https://docs.ropensci.org/textreuse (website)
https://github.com/ropensci/textreuse
BugReports: https://github.com/ropensci/textreuse/issues
VignetteBuilder: knitr
Depends:
R (>= 3.1.1)
Imports:
assertthat (>= 0.1),
digest (>= 0.6.8),
dplyr (>= 0.8.0),
NLP (>= 0.1.8),
Rcpp (>= 0.12.0),
RcppProgress (>= 0.1),
stringr (>= 1.0.0),
tibble (>= 3.0.1),
tidyr (>= 0.3.1)
Suggests:
testthat (>= 0.11.0),
knitr (>= 1.11),
rmarkdown (>= 0.8),
covr
LinkingTo: BH, Rcpp, RcppProgress
RoxygenNote: 7.3.1
Encoding: UTF-8