| banner | R Documentation | 
BannerCreate an object of class Banner
banner(dataset, vars, labels = NULL, recodes = NULL)
| dataset | A Crunch dataset. | 
| vars | A named list of vectors of aliases of the variables that should
constitute the banner object. These should be categorical (and typically hidden)
variables present in the  | 
| labels | An optional named list of labels, where names are variables' aliases
(present in the  | 
| recodes | An optional named list of categories recodes (the syntax is similar
to the one used in the  | 
An object of class Banner.
## Not run: 
banner_data <- banner(crunch_dataset,
  vars = list(subBanner1 = c("alias1", "alias2"), subBanner2 = c("alias3")),
  labels = c(alias1 = "var1 label", alias2 = "var2 label"),
  recodes = list(
    alias1 = list(cat1a = "new cat1a", cat1b = NA),
    alias2 = list(cat2a = "new cat2a", cat2b = "new cat2b", .default = NA)
  )
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.