Get Titles and Footnotes for all TLGs or one specific TLG
rmdpstitle(
df,
tblid,
idvar = "tblid",
identifier = "identifier",
text = "text"
)
dataframe with three variables; table name, row identifier (TITLE or FOOTNOTEn), and title/footnote text to display
character vector containing the table id, optional, used to subset df to a specific table (defaults to tblid)
character vector containing the variable in df that contains your table id
character vector containing the variable name in df that contains your record identifier (defaults to "identifier")
character vector containing the variable name in df that contains your title and footnote text (defaults to "text")
list of length two, the first element contains the titles as a tibble and the second contains the footnotes as a list
tblid <- "TSIDEM01"
titles <-tibble::tribble(
~tblid, ~identifier, ~text,
"TSIDEM01", "TITLE", "Demographics Example",
"TSIDEM01", "FOOTNOTE1", "Example footnote."
)
title_foot <- rmdpstitle(titles, tblid)
title_foot[[1]]
#> # A tibble: 1 × 1
#> text
#> <chr>
#> 1 Demographics Example
title_foot[[2]]
#> $`1`
#> [1] "Example footnote."
#>