extract_pairs_from_band: Function that extracts pairs of records from a band in the...

Description Usage Arguments Value Examples

View source: R/minhash_v2.R

Description

Function that extracts pairs of records from a band in the signature matrix M import bit64

Usage

1

Arguments

a_band

Band of the signature matrix M

Value

The edgelist of record pairs that are connected

Examples

1
2
3
4
5
6
band1 <- c(2,1,2,1,2)
extract_pairs_from_band(band1)
band2 <- c(6,7,8,9,6)
extract_pairs_from_band(band2)
band.12 <- rbind(band1, band2)
apply(band.12,1,extract_pairs_from_band)

tlsh documentation built on Nov. 16, 2020, 9:15 a.m.