Nothing
test_that("kNNdist", {
set.seed(665544)
n <- 1000
x <- cbind(
x = runif(10, 0, 10) + rnorm(n, sd = 0.2),
y = runif(10, 0, 10) + rnorm(n, sd = 0.2),
z = runif(10, 0, 10) + rnorm(n, sd = 0.2)
)
d <- kNNdist(x, k = 5)
expect_length(d, n)
d <- kNNdist(x, k = 5, all = TRUE)
expect_equal(dim(d), c(n, 5))
# does the plot work?
#kNNdistplot(x, 5)
})
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.