-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prep for submission to cran - v0.4.0
- Loading branch information
Showing
10 changed files
with
233 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Package: fastLink | ||
Type: Package | ||
Title: Fast Probabilistic Record Linkage with Missing Data | ||
Version: 0.3.2 | ||
Date: 2018-02-25 | ||
Version: 0.4.0 | ||
Date: 2018-05-15 | ||
Authors@R: c( | ||
person("Ted", "Enamorado", email = "[email protected]", role = c("aut", "cre")), | ||
person("Ben", "Fifield", email = "[email protected]", role = c("aut")), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
#' Get confusion table for fastLink objects after blocking via clusterMatch() | ||
#' aggconfusion | ||
#' | ||
#' Calculate confusion table after running fastLink(). | ||
#' Aggregate confusion tables from separate runs of fastLink() (UNDER DEVELOPMENT) | ||
#' | ||
#' @usage confusion(object, threshold) | ||
#' @usage aggconfusion(object) | ||
#' | ||
#' @param object A 'fastLink' object. Can only be run if 'return.all = TRUE' in 'fastLink().' | ||
#' @param threshold The matching threshold above which a pair is a true match. Default is .85 | ||
#' @param object A list of confusion tables. | ||
#' | ||
#' @return 'confusion()' returns two tables - one calculating the confusion table, and another | ||
#' @return 'aggconfusion()' returns two tables - one calculating the confusion table, and another | ||
#' calculating a series of additional summary statistics. | ||
#' | ||
#' @author Ted Enamorado <[email protected]> and Ben Fifield <[email protected]> | ||
|
Oops, something went wrong.