Nothing
test_that("not_nan returns FALSE if value is NaN", {
not_nan(NaN) %>% expect_false()
})
test_that("not_nan returns TRUE if value is not NaN", {
for_all(
a = anything(),
property = function(a)
(isTRUE(identical(a, NaN)) || not_nan(a)) %>%
expect_true()
)
})
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.