Nothing
context("Checking lookup")
test_that("lookup is producing vectors with NA for missing",{
expect_true(length(lookup(1:5, data.frame(1:4, 11:14))) == 5)
expect_true(is.na(lookup(1:5, data.frame(1:4, 11:14))[5]))
})
test_that("lookup is producing vectors with original for missing = NULL",{
expect_true(lookup(1:5, data.frame(1:4, 11:14), missing=NULL)[5]==5)
})
test_that("lookup is producing vectors with factors",{
key <- data.frame(a=1:3, b=factor(paste0("l", 1:3)))
expect_true(is.factor(1:3 %l% key) )
})
test_that("lookup gives a character when column 2 is character",{
expect_true(is.character(lookup(mtcars$carb, sort(unique(mtcars$carb)),
c("one", "two", "three", "four", "six", "eight"))))
})
test_that("lookup works with lists",{
codes <- list(
A = c(1, 2, 4),
B = c(3, 5),
C = 7,
D = c(6, 8:10)
)
expect_equivalent(lookup(1:10, codes),
c("A", "A", "B", "A", "B", "D", "C", "D", "D", "D"))
})
test_that("lookup works with when terms mode and col 2 mode not the same",{
m <- c("100", "101", "102", "103", "E")
expect_equivalent(m,
lookup(LETTERS[1:5], data.frame(LETTERS[1:4], 100:103), missing=NULL)
)
expect_equivalent(m,
lookup(LETTERS[1:5], factor(LETTERS[1:4]), 100:103, missing=NULL)
)
})
test_that("lookup works with single length inputs",{
m2 <- lookup("New Jersey", data.frame(c("New Jersey", "foo"), c("NJ", "bar"),
stringsAsFactors = FALSE), missing=NULL)
expect_equivalent(m2, "NJ")
})
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.