data-raw/data_and_definitions/01-process.R

# Process data and definitions

library(readxl)
library(dplyr)
library(janitor)

data_and_definitions <- read_xlsx(here::here("data-raw", "data_and_definitions", "data_and_definitions.xlsx")) %>%
  clean_names() %>%
  arrange(name)

usethis::use_data(data_and_definitions, overwrite = TRUE)
purposeanalytics/lemr documentation built on Dec. 22, 2021, 10:51 a.m.