#' Millions to billions
#'
#' @param df
#'
#' @return
#' @export
#'
#' @examples
millions_to_billions <- function(df){
df %>%
dplyr::mutate(
dplyr::across(.cols = any_of(c('gftfbusx', 'gfeghhx', 'gfeghdx', 'gfeigx')),
.fns = ~ . / 1000)
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.