Nothing
test_that("$ and [[ works", {
expect_equal(megaplot$`File Signature`, "LASF")
expect_equal(megaplot$`X scale factor`, 0.01)
})
test_that("$<- and [[<-] works", {
megaplot$`File Signature` <- "ABC"
megaplot$`X scale factor` <- 0.1
expect_equal(megaplot[["File Signature"]], "ABC")
expect_equal(megaplot[["X scale factor"]], 0.1)
})
test_that("vlr works", {
VLR <- vlr(megaplot)
EVLR <- evlr(megaplot)
expect_is(VLR, "list")
expect_is(EVLR, "list")
VLR <- vlr(header(megaplot))
EVLR <- evlr(header(megaplot))
expect_is(VLR, "list")
expect_is(EVLR, "list")
})
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.