Nothing
test_that("arrange a data.frame", {
ir = as.data.table(iris)
expect_equal(iris %>% arrange_dt(Sepal.Length),ir[order(Sepal.Length)])
expect_equal(iris %>% arrange_dt(-Sepal.Length),ir[order(-Sepal.Length)])
expect_equal(iris %>% arrange_dt(Sepal.Length,Petal.Length),
ir[order(Sepal.Length,Petal.Length)])
expect_equal(iris %>% arrange_dt(Sepal.Length,-Petal.Length),
ir[order(Sepal.Length,-Petal.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.