Nothing
test_that("select works!", {
model <- readRDS(paste0(system.file("extdata",package="eva3dm"),"/model.Rds"))
a <- select(data = model, day = 'weekday')
b <- select(data = model, day = 'weekend')
c <- select(data = model, start = '2012-01-05', end = '2012-01-09')
d <- select(data = model, year = 2012,month = 1, day = 1,hour = 0,minutes = 0,seconds = 0)
e <- select(data = model, month = 'JAN')
f <- select(data = model, day = 'tue')
expect_equal(nrow(a) + nrow(b), nrow(model))
})
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.