Nothing
context("jaccard")
test_that("jaccard metric works as expected", {
# generate data
x <- matrix(sample(0:5, 200, replace = TRUE), nrow = 100)
# reference result
n <- nrow(x)
m <- matrix(0, nrow=n, ncol=n)
for(i in seq_len(n - 1))
for(j in seq(i, n)){
if (all(x[i, ] == x[j, ])) {
m[j, i] <- m[i, j] <- 0
}
else {
m[j, i] <- m[i, j] <- sum(x[i,] != x[j,]) / sum(x[i, ] != 0 | x[j, ] != 0)
}
}
dist_mat <- m
dist_dist <- as.dist(dist_mat)
# check pdist and cdist
expect_equivalent(dist_dist, rdist(x, metric = "jaccard"))
expect_equivalent(dist_mat, pdist(x, metric = "jaccard"))
expect_equivalent(dist_mat, cdist(x, x, metric = "jaccard"))
expect_equivalent(dist_mat[1:2, 3:100],
cdist(x[1:2, ], x[3:100, ], metric = "jaccard"))
expect_equivalent(dist_mat[1, 2:100, drop = FALSE],
cdist(x[1, , drop = FALSE], x[2:100, , drop = FALSE], metric = "jaccard"))
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.