Nothing
context("test-fill_missing_max")
test_that("filling with minimum works", {
expect_equal(fill_missing_max(c(1, 2, NA)), c(1, 2, 2))
})
test_that("negative numbers work", {
expect_equal(fill_missing_max(c(-1, 0, 1, NA)), c(-1, 0, 1, 1))
})
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.