summary.RLResult: Summary method for '"RLResult"' objects.

View source: R/summary.r

summary.RLResultR Documentation

Summary method for "RLResult" objects.

Description

Get summarized information on a "RLResult" object.

Usage

  ## S4 method for signature 'RLResult'
summary(object)
  ## S3 method for class 'summaryRLResult'
print(x, ...)

Arguments

object

The object for which to show a summary.

x

Return value of the summary function.

...

Additional arguments from the generic function are ignored.

Details

The summary methods return a list of the format shown below. The print method displays this information on the console in a user-friendly format.

Value

For summary, a list with components

nPairs

Number of record pairs.

nLinks

Number of detected links.

nPossibleLinks

Number of detected possible links.

Author(s)

Andreas Borg, Murat Sariyar

See Also

summary "RLResult"

Examples

  data(RLdata500)
  rpairs <- RLBigDataDedup(RLdata500, blockfld=list(1,3,5:7),
    identity = identity.RLdata500)
  rpairs <- epiWeights(rpairs)
  result <- epiClassify(rpairs, 0.7)
  summary(result)

RecordLinkage documentation built on Nov. 10, 2022, 5:42 p.m.