Nothing
test_that("sort-by() works", {
x <- runif(10)
y <- runif(10)
expect_equal(sort_by(x, x), sort(x))
expect_equal(sort_by(x, y), x[order(y)])
expect_equal(sort_by(x, -y), x[flip(order(y))])
})
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.