Nothing
#' List variables in a survey.
#'
#' @param sw starting characters in variable name (case insensitive)
#' @param all print all variables?
#'
#' @return A table
#' @export
#'
#' @examples
#' set_survey(namcs2019sv)
#' var_list("age")
var_list = function(sw = ""
, all = FALSE) {
design = .load_survey()
assert_that(nzchar(sw) | all
, msg = "Either set the 'sw' argument to a non-empty string, or set all=TRUE")
nn = names(design$variables)
if (!all) {
sw %<>% tolower
idx = nn %>% tolower %>% startsWith(sw)
nn = nn[idx]
}
ret = NULL
for (ii in nn) {
r1 = data.frame(
Variable = ii
, Class = paste(class(design$variables[,ii])
, collapse = ", ")
, `Long name` = .getvarname(design, ii)
, check.names = FALSE
)
ret %<>% rbind(r1)
}
ret = if (is.null(ret)) {
data.frame(Note = "No variables found.")
} else {
ret[order(ret$Variable), ]
}
attr(ret, "title") = if (all) {
"ALL variables"
} else {
paste0("Variables beginning with '", sw, "'")
}
.finalize_tab(ret)
}
.getvarname = function(design, vr) {
nm = attr(design$variables[,vr], "label")
if (is.null(nm)) nm = vr
nm
}
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.