Nothing
context("Missing value handling")
test_that("missing shades are handled properly", {
shades <- gradient(c("red","blue"), 3)
shades[2] <- NA
expect_equal(is.na(shades), c(FALSE,TRUE,FALSE))
expect_true(all(is.na(coords(shades)[2,])))
expect_equal(saturation(shades), c(1,NA,1))
expect_equal(saturation(shades,0.5), shade(c("#FF8080",NA,"#8080FF")), hexonly=TRUE)
expect_equivalent(is.na(saturation(shades, c(0,0.5,1))), matrix(c(FALSE,TRUE,FALSE),3,3,byrow=TRUE))
expect_equivalent(complement(shades), shade(c("#00FFFF",NA,"#FFFF00")))
expect_equivalent(dichromat(shades)[2], shade(NA))
expect_equal(opacity(shades,0.5), c("#FF000080",NA,"#0000FF80"), hexonly=TRUE)
})
test_that("NAs as new property values lead to pass-through", {
expect_equal(saturation(saturation("olivedrab",NA)), saturation("olivedrab"))
expect_equal(opacity("red",NA), "red")
expect_equal(opacity("red",c(0,NA,1)), c("#FF000000","#FF0000FF","#FF0000FF"), hexonly=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.