Nothing
test_that("filter a data.frame", {
ir = as.data.table(iris)
expect_equal(
iris %>% filter_dt(Sepal.Length > 7),
ir[Sepal.Length > 7]
)
expect_equal(
iris %>% filter_dt(Sepal.Length > 7 & Sepal.Width > 3),
ir[Sepal.Length > 7 & Sepal.Width > 3]
)
expect_equal(
iris %>% filter_dt(Sepal.Length > 7 | Sepal.Width > 3),
ir[Sepal.Length > 7 | Sepal.Width > 3]
)
expect_equal(
iris %>% filter_dt(Sepal.Length == max(Sepal.Length)),
ir[Sepal.Length == max(Sepal.Length)]
)
})
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.