mms {blink} | R Documentation |
Function to compute a record's Maximal Matching Set (MMS) based on a single linkage structure
Description
Function to compute a record's Maximal Matching Set (MMS) based on a single linkage structure
Usage
mms(lambda, record)
Arguments
lambda |
The linkage structure |
record |
A vector of records |
Value
Computes a records MMS
Examples
lambda <- matrix(c(1,1,2,2,3,3),ncol=3)
record <- c(1,10,3,5,20,2)
mms(lambda=lambda, record=record)
[Package blink version 1.1.0 Index]