Nothing
context("Arrange")
test_that("bogus sort order", {
expect_error(arrange(mtcars, diff(mpg)), "Length of ordering vectors")
})
test_that("descending sort", {
expect_equal(arrange(mtcars, desc(mpg)), arrange(mtcars, -mpg))
})
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.