-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
59 lines (59 loc) · 1.66 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Package: BDD
Type: Package
Title: Duplicate Detection Using a Bayesian Partitioning Approach
Version: 0.2.0
Date: 2021-01-24
Authors@R: c(
person(given = "Neil",
family = "Marchant",
email = "[email protected]",
role = c("aut", "cre")),
person(given = "Rebecca",
family = "Steorts",
email = "[email protected]",
role = "aut"),
person(given = "Benjamin",
family = "Rubinstein",
email = "[email protected]",
role = "aut"))
Maintainer: Neil Marchant <[email protected]>
URL: https://github.com/cleanzr/BDD
BugReports: https://github.com/cleanzr/BDD/issues
Description: An implementation of the Bayesian duplicate detection model
proposed by Sadinle (2014) <DOI:10.1214/14-AOAS779>. It resembles the
classic model of Fellegi & Sunter (1969)
<DOI:10.1080/01621459.1969.10501049>, but targets a partitioning of the
records, rather than pairwise match predictions. Inference is conducted
using a Gibbs sampler implemented in C++.
License: GPL (>= 2)
Depends: R (>= 3.0.2)
Imports: Rcpp (>= 0.12.12),
coda (>= 0.17-1),
methods,
mcmcse (>= 1.4),
progress (>= 1.2.2),
fuzzyjoin (>= 0.1.6)
Suggests: knitr,
rmarkdown,
comparator (>= 0.1.1),
magrittr (>= 1.5),
clevr (>= 0.1.1)
LinkingTo: Rcpp,
RcppProgress,
BH (>= 1.69.0)
RoxygenNote: 7.1.1
Roxygen: list(markdown = TRUE)
Encoding: UTF-8
VignetteBuilder: knitr
LazyData: true
Collate:
'BDD-package.R'
'utils.R'
'BDDModel.R'
'BDDFit.R'
'RcppExports.R'
'data.R'
'extract.R'
'indexing.R'
'run_inference.R'
'scoring.R'