Nothing
test_that("pairwise", {
p <- pairwise(iris[,1:4])
expect_s3_class(p, "pairwise")
expect_identical(dim(p), c(6L,6L))
})
test_that("pairwise from matrix", {
p <- pairwise(cor(iris[,1:4]))
expect_s3_class(p, "pairwise")
expect_identical(dim(p), c(6L,6L))
})
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.