Nothing
library(ggplot2)
library(DT)
context("Make Chunks")
source("reference.r")
# The list we'll make an RMarkdown document from.
test_list <- list(
iris = iris,
Sepal.Length = list(
Sepal.Width = ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width)) +
geom_point(),
Petal.Length = ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width)) +
geom_point(),
Colored = list(
Sepal.Width = ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width,
color = Species)) + geom_point(),
Petal.Length = ggplot(iris, aes(x = Sepal.Length, y = Petal.Length,
color = Species)) + geom_point())))
# The listdown object. It needs the libraries to load, the decorators,
# and, coming soon, arbitrary code.
# If it sees a ggplot object, it does nothing. If it sees a dataframe
# it decorates with datatable from the DT package.
write_if_make_reference(test_list, "test_list.rds")
ld <- listdown(load_cc_expr = readRDS(file.path("reference-data",
"test_list.rds")),
package = c("ggplot2", "DT", "purrr"),
decorator = list(ggplot = identity,
data.frame = datatable),
init_expr = {
datatable <- partial(DT::datatable,
options = list(ordering = FALSE))
add_one <- function(x) {
x + 1
}
})
test_that("A listdown object can be created.", {
expect_true(inherits(ld, "listdown"))
})
# Create the RMarkdown string.
write_if_make_reference(ld_make_chunks(ld), "test-make-chunks-1.rds")
test_that("The listdown object is the same as before.", {
expect_equal(ld_make_chunks(ld),
read_reference("test-make-chunks-1.rds"))
})
ld2 <- listdown(load_cc_expr = readRDS(file.path("reference-data",
"test_list.rds")),
package = c("ggplot2", "DT", "purrr"),
decorator = list(data.frame = datatable),
init_expr = {
datatable <- partial(DT::datatable,
options = list(ordering = FALSE))
},
echo = FALSE,
warning = FALSE,
message = FALSE)
test_that("A listdown object with initial expression can be created.", {
expect_true(inherits(ld2, "listdown"))
})
# Create the RMarkdown string.
write_if_make_reference(ld_make_chunks(ld2), "test-make-chunks-2.rds")
test_that("The listdown object with init expr is the same as before.", {
expect_equal(ld_make_chunks(ld2),
read_reference("test-make-chunks-2.rds"))
})
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.