Nothing
library(collapsibleTree)
context("Root labelling")
test_that("unlabelled root works for collapsibleTree", {
wb <- collapsibleTree(warpbreaks, c("wool", "tension", "breaks"))
expect_is(wb,"htmlwidget")
expect_is(wb$x$data,"list")
expect_is(wb$x$options$hierarchy,"character")
})
test_that("unlabelled root works for collapsibleTreeSummary", {
wb <- collapsibleTreeSummary(warpbreaks, c("wool", "tension", "breaks"))
expect_is(wb,"htmlwidget")
expect_is(wb$x$data,"list")
expect_is(wb$x$options$hierarchy,"character")
})
test_that("labeled root works for collapsibleTree", {
wblabeled <- collapsibleTree(warpbreaks, c("wool", "tension", "breaks"), "a label")
expect_is(wblabeled$x$data,"list")
expect_is(wblabeled$x$options$hierarchy,"character")
})
test_that("labeled root works for collapsibleTreeSummary", {
wblabeled <- collapsibleTreeSummary(warpbreaks, c("wool", "tension", "breaks"), "a label")
expect_is(wblabeled$x$data,"list")
expect_is(wblabeled$x$options$hierarchy,"character")
})
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.