https://github.com/cran/RecordLinkage
Raw File
Tip revision: d650bb5b048f47ae3237cec162d379a89734ff57 authored by Andreas Borg on 02 May 2016, 13:21:08 UTC
version 0.4-9
Tip revision: d650bb5
editMatch.Rd
\name{editMatch}
\Rdversion{1.1}
\alias{editMatch}
\alias{editMatch-methods}
\alias{editMatch,RecLinkData-method}
\alias{editMatch,RLBigData-method}


\title{
  Edit Matching Status
}
\description{
  Allows editing the matching status of record pairs.
}
\usage{
editMatch(rpairs)
}

\arguments{
  \item{rpairs}{
    A \code{"\link{RecLinkData}"} or \code{"\linkS4class{RLBigData}"} object.
      The record pairs to edit.
  }
}

\details{
  This function pops up an editor (via \code{\link{edit}}) where each record
  pair in \code{rpairs} is printed in two consecutive lines, pairs seperated by blank
  lines. The matching status is printed and can be edited in the last column
  following the first respective record. A match is denoted by 1, a non-match
  by 0. \code{NA}s are possible to mark pairs with unkown status. Changes in
  other fields are ignored.
  
  Manual editing of the matching status is useful for clerical review in 
  general and in particular to label training sets. In conjunction with
  \code{\link{getMinimalTrain}}, good results can be obtained with a manageable
  effort of manual review.
}
\value{
  A copy of \code{rpairs} with edited matching status.
}


\author{
  Andreas Borg
}

\seealso{
  \code{\link{getMinimalTrain}}
}

\keyword{classif}

back to top