| rmdpstitle | R Documentation |
Get Titles and Footnotes for all TLGs or one specific TLG
rmdpstitle(
df,
tblid,
idvar = "tblid",
identifier = "identifier",
text = "text"
)
df |
dataframe with three variables; table name, row identifier ( |
tblid |
character vector containing the table id, optional, used to
subset |
idvar |
character vector containing the variable in |
identifier |
character vector containing the variable name in |
text |
character vector containing the variable name in |
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]]
title_foot[[2]]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.