Nothing
context("vizMountainPosition")
## tests
library(aqp, quietly = TRUE)
suppressWarnings(library(cluster, quietly = TRUE))
suppressWarnings(library(dendextend, quietly = TRUE))
suppressWarnings(library(latticeExtra, quietly = TRUE))
test_that("vizMountainPosition works as expected", {
# use local data
data("OSDexamples")
a <- OSDexamples$mtnpos
# with / without highlight
res <- vizMountainPosition(a)
res <- vizMountainPosition(a, s = 'MUSICK')
# print(res$fig)
# list of lattice + clustering order
expect_true(inherits(res, 'list'))
expect_true(inherits(res$fig, 'trellis'))
expect_true(inherits(res$order, 'integer'))
expect_true(inherits(res$match.rate, 'numeric'))
# try a singleton
res <- vizFlatsPosition(a[1, ])
expect_true(inherits(res, 'list'))
expect_true(inherits(res$fig, 'trellis'))
expect_true(inherits(res$order, 'integer'))
expect_true(is.na(res$match.rate))
})
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.