library(readxl)
library(janitor)
library(dplyr)
# load data ---------------------------------------------------------------------
lego_sample <- read_excel(
here::here("data-raw/lego_sample/lego_sample.xlsx"),
na = c("", "NA")
)
# cleaning ----------------------------------------------------------------------
# cleaning: Making Variables Snake Case
lego_sample <- lego_sample |>
clean_names() |>
select(-availability)
# save --------------------------------------------------------------------------
usethis::use_data(lego_sample, overwrite = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.