
Default transformations to apply to association file columns.
Source:R/import-functions.R
default_af_transform.RdA list of default transformations to apply to the association file columns
after importing it via import_association_file()
Arguments
- convert_tp
The value of the argument
convert_tpin the call toimport_association_file()
See also
Other Import functions helpers:
annotation_issues(),
date_formats(),
default_iss_file_prefixes(),
matching_options(),
quantification_types()
Examples
default_af_transform(TRUE)
#> $TimepointMonths
#> ~dplyr::if_else(is.na(.x), NA_character_, stringr::str_pad(as.character(.x),
#> pad = "0", side = "left", width = max(nchar(as.character(.x[!is.na(.x)])),
#> na.rm = TRUE) + 1))
#> <environment: 0x563e3dd1e140>
#>
#> $TimepointYears
#> ~dplyr::if_else(is.na(.x), NA_character_, stringr::str_pad(as.character(.x),
#> pad = "0", side = "left", width = max(nchar(as.character(.x[!is.na(.x)])),
#> na.rm = TRUE) + 1))
#> <environment: 0x563e3dd1e140>
#>