# NOT RUN {
## HS combined to SITC4
# one input: one-to-one match
concord_hs_sitc(sourcevar = "120600",
origin = "HS", destination = "SITC4",
dest.digit = 5, all = FALSE)
concord_hs_sitc(sourcevar = "120600",
origin = "HS", destination = "SITC4",
dest.digit = 5, all = TRUE)
# two inputs: multiple-to-one match
concord_hs_sitc(sourcevar = c("010110", "010119"),
origin = "HS", destination = "SITC4",
dest.digit = 5, all = FALSE)
concord_hs_sitc(sourcevar = c("010110", "010119"),
origin = "HS", destination = "SITC4",
dest.digit = 5, all = TRUE)
# two inputs: repeated
concord_hs_sitc(sourcevar = c("120600", "120600"),
origin = "HS", destination = "SITC4",
dest.digit = 5, all = FALSE)
# one to multiple matches
concord_hs_sitc(sourcevar = c("1206", "1001"),
origin = "HS", destination = "SITC4",
dest.digit = 5, all = TRUE)
# if no match, will return NA and give warning message
concord_hs_sitc(sourcevar = c("120600", "120610"),
origin = "HS", destination = "SITC4",
dest.digit = 5, all = FALSE)
# 4-digit inputs, 5-digit outputs
concord_hs_sitc(sourcevar = c("1206", "8546"),
origin = "HS", destination = "SITC4",
dest.digit = 5, all = TRUE)
# 6-digit inputs, 3-digit outputs
concord_hs_sitc(sourcevar = c("120600", "854610"),
origin = "HS", destination = "SITC4",
dest.digit = 3, all = TRUE)
## SITC4 to HS combined
concord_hs_sitc(sourcevar = c("22240", "77322"),
origin = "SITC4", destination = "HS",
dest.digit = 6, all = FALSE)
# }
Run the code above in your browser using DataLab