Skip to content

Commit 5ce4a64

Browse files
authored
Merge pull request #42 from brenthuisman/patch-1
Fix misspelling of Fellegi
2 parents fbcf9dc + 88c24ff commit 5ce4a64

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

R/errorlocalizer.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ setRefClass("ErrorLocalizer",
2121
)
2222
)
2323

24-
#' Feligi-Holt Errorlocalizer
24+
#' Fellegi-Holt Errorlocalizer
2525
#'
26-
#' Implementation of the Feligi-Holt algorithm using the `ErrorLocalizer` base class.
27-
#' Given a set of validation rules and a dataset the Feligi-Holt algorithm finds for each record
26+
#' Implementation of the Fellegi-Holt algorithm using the `ErrorLocalizer` base class.
27+
#' Given a set of validation rules and a dataset the Fellegi-Holt algorithm finds for each record
2828
#' the smallest (weighted) combination of variables that are erroneous (if any).
2929
#'
3030
#' @note Most users do not need this class and can use [locate_errors()].
3131
#'
32-
#' `errorlocalizer` implements feligi holt using a MIP-solver. For problems in which
32+
#' `errorlocalizer` implements Fellegi holt using a MIP-solver. For problems in which
3333
#' coefficients of the validation rules or the data are too different, you should consider scaling
3434
#' the data.
3535
#' @include MipRules.R

man/FHLocalizer-class.Rd

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

uRos2018/presentation.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ check_that( data.frame( age = 3
110110
```
111111
Ok, clear that this is a faulty record, but what is the error?
112112

113-
## Feligi Holt formalism:
113+
## Fellegi Holt formalism:
114114

115115
> Find the minimal (weighted) number of variables that cause the invalidation of the data rules.
116116

useR2017/lightning.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ check_that( data.frame( age = 3
107107
```
108108
Ok, clear that this is a faulty record, but what is the error?
109109

110-
## Feligi Holt formalism:
110+
## Fellegi Holt formalism:
111111

112112
> Find the minimal (weighted) number of variables that cause the invalidation of the data rules.
113113

0 commit comments

Comments
 (0)