classifyUnsup | R Documentation |
Classify record pairs with unsupervised clustering methods.
classifyUnsup(rpairs, method, ...)
rpairs |
Object of type |
method |
The classification method to use. One of |
... |
Further arguments for the classification method |
A clustering algorithm is applied to find clusters in the comparison patterns. In the case of two clusters (the default), the cluster further from the origin (i.e. representing higher similarity values) is interpreted as the set of links, the other as the set of non-links.
Supported methods are:
K-means clustering, see kmeans
.
Bagged clustering, see bclust
.
An object of class "RecLinkResult"
that represents a copy
of newdata
with element rpairs$prediction
, which stores
the classification result, as addendum.
Andreas Borg, Murat Sariyar
trainSupv
and classifySupv
for supervised
classification.
# Classification with bclust data(RLdata500) rpairs=compare.dedup(RLdata500, identity=identity.RLdata500, blockfld=list(1,3,5,6,7)) result=classifyUnsup(rpairs,method="bclust") summary(result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.