Description Usage Arguments Value Examples
Compare a test fingerprint with a known fingerprint
1 | compareWithFingerprint(test, fingerprint, threshold = 0.001, exact = FALSE)
|
test |
fingerprint |
fingerprint |
fingerprint |
threshold |
single numeric similarity parameter,
for the |
exact |
single logical should fingerprints match exactly (default
|
single logical
1 2 3 4 5 6 7 8 9 | compareWithFingerprint(test = 1:3, fingerprint = 1:3)
compareWithFingerprint(test = 1:3, fingerprint = 1:4)
compareWithFingerprint(test = 1:3, fingerprint = 1:3 + 1e-3)
compareWithFingerprint(test = 1:3, fingerprint = c(1, 2, 3.1))
compareWithFingerprint(
test = 1:3,
fingerprint = c(1, 2, 3.1),
exact = TRUE
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.