Nothing
context("hasAttributes")
test_that("hasAttributes", {
x = 1:10
attribute.names = c("size", "importance")
expect_false(hasAttributes(x, attribute.names))
attr(x, "size") = length(x)
expect_false(hasAttributes(x, attribute.names))
attr(x, "importance") = "very important"
expect_true(hasAttributes(x, attribute.names))
})
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.