https://github.com/cran/RecordLinkage
Raw File
Tip revision: 049bc2bba325bb2e15a6e715f4d1b51866d95d7f authored by Murat Sariyar Developer on 09 April 2020, 11:40:02 UTC
version 0.4-12
Tip revision: 049bc2b
makeBlockingPairs.Rd
\name{makeBlockingPairs}
\alias{makeBlockingPairs}

\title{
  Create record pairs from blocks of ids.
}
\description{
  Create record pairs from blocks of ids. 
}
\usage{
makeBlockingPairs(id_vec)
}
\arguments{
  \item{id_vec}{
    A list of integer vectors.
  }
}
\details{
  Each element in \code{id_vec} holds the ids of a set of records which agree
  for a particular blocking variable (see \code{\link{compare.dedup}} for the
  blocking mechanism). For each block, all unordered pairs of the ids are 
  created and concatenated in the output.
}
\value{
  A matrix with two columns, each row holding the ids of one record pair.
}
\author{
  Andreas Borg
}
\note{
Internal function used by \code{\link{compare.dedup}}.
}

\keyword{internal}

back to top