| format_chars_and_dates | R Documentation | 
Converts all date columns to character class and replaces all NA values in
character/date columns with "".
format_chars_and_dates(tbl)
| tbl | a data frame, the SDTM table | 
This function should be applied as one of the last steps in the data process
but before assign_meta_data().
a modified copy of the tbl data frame
trim_and_make_blanks_NA()
df <- data.frame(
  dates = as.Date(c("2017-02-05", NA)),
  strings = c(NA_character_, "this"),
  nums = c(1, NA)
)
format_chars_and_dates(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.