Nothing
test_that("e_rows_update can update a row in a data.frame", {
x <- mtcars
x$id <- seq_len(nrow(x))
y <- x[1,]
y$mpg <- 1000
result <- e_rows_update(x = x, y = y, by = "id")
expect_equal(result[1,"mpg"][[1]], 1000)
})
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.