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
RLBigDataLinkage-class.Rd
\name{RLBigDataLinkage-class}
\Rdversion{1.1}
\docType{class}
\alias{RLBigDataLinkage-class}

\title{Class "RLBigDataLinkage"}
\description{
  Represents a record linkage setup with two datasets which are to 
  be linked together.
}
\section{Objects from the Class}{
Objects should be created using the constructor function 
\code{\link{RLBigDataLinkage}}, which does some essential error checking, 
  conversion and initialization.

}
\section{Slots}{
  See also \code{"\linkS4class{RLBigData}"} for inherited slots.
  \describe{
    \item{\code{data1}:}{Object of class \code{"data.frame"} First data set. }
    \item{\code{data2}:}{Object of class \code{"data.frame"} Second data set. }
    \item{\code{identity1}:}{Object of class \code{"factor"} True ID of records in \code{data1} }
    \item{\code{identity2}:}{Object of class \code{"factor"} True ID of records in \code{data2}  }
  }
}
\section{Extends}{
Class \code{"\linkS4class{RLBigData}"}, directly.
}

\section{Methods}{
  \describe{
    \item{getColumnNames}{\code{signature(object = "RLBigDataLinkage")}}
    \item{getExpectedSize}{\code{signature(object = "RLBigDataLinkage")}}
  }
  See also \link{RLBigData-class} for inherited methods.
}

\author{
  Andreas Borg
}

\seealso{
  \code{"\linkS4class{RLBigData}"}, \code{\link{RLBigDataLinkage}}
}
\examples{
showClass("RLBigDataLinkage")
}
\keyword{classes}
back to top