Skip to content

Commit

Permalink
prep for submission to cran - v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bfifield committed May 15, 2018
1 parent d7dd407 commit dc9ebb5
Show file tree
Hide file tree
Showing 10 changed files with 233 additions and 221 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
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")),
Expand Down
8 changes: 4 additions & 4 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
S3method(plot,fastLink)
S3method(print,inspectEM)
S3method(summary,fastLink)
export(aggconfusion)
export(aggregateEM)
export(calcMoversPriors)
export(clusterMatch)
export(confusion)
export(aggconfusion)
export(dedupeMatches)
export(emlinkMARmov)
export(emlinklog)
export(emlinkRS)
export(emlinklog)
export(fastLink)
export(gammaCK2par)
export(gammaCKpar)
Expand Down Expand Up @@ -49,15 +49,15 @@ importFrom(parallel,makeCluster)
importFrom(parallel,mclapply)
importFrom(parallel,stopCluster)
importFrom(plotrix,staxlab)
importFrom(stats,glm)
importFrom(stats,kmeans)
importFrom(stats,model.matrix)
importFrom(stats,na.omit)
importFrom(stats,prcomp)
importFrom(stats,predict)
importFrom(stats,quantile)
importFrom(stats,runif)
importFrom(stats,var)
importFrom(stats,glm)
importFrom(stats,model.matrix)
importFrom(stringdist,phonetic)
importFrom(stringdist,stringdist)
importFrom(stringdist,stringdistmatrix)
Expand Down
11 changes: 5 additions & 6 deletions R/aggconfusion.R
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]>
Expand Down
Loading

0 comments on commit dc9ebb5

Please sign in to comment.