View source: R/makevar_functions.R
makeVarlist | R Documentation |
Return a list of variable names or data frame of variable metadata containing a given string. This can be used create a list of variables to later pass to getCensus, or a data frame documenting variables used in a given project.
makeVarlist(name, vintage = NULL, find, varsearch = "all", output = "list")
name |
API name - e.g. acs5. See list at https://api.census.gov/data.html |
vintage |
Year of dataset, e.g. 2014 - not required for timeseries APIs |
find |
A string to find in the variable metadata |
varsearch |
Optional argument specifying which fields to search. Default is "all". Options are "all", "name", "label", or "concept". |
output |
Optional argument, specifying output to "list" or "dataframe". Default is "list". |
# Return a list, and then use getCensus function to retrieve those variables ## Not run: myvars <- makeVarlist(name = "timeseries/poverty/saipe", find = "Ages 0-4", varsearch = "label") myvars saipe_dt <- getCensus(name = "timeseries/poverty/saipe", time = 2016, vars = myvars, region = "state:*") head(saipe_dt) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.