library(readr)
library(dplyr)
library(stringr)
# load data --------------------------------------------------------------------
raw_data <- read_delim(here::here("data-raw/movies/movies.txt"), "\t")
# cleaning: none required
movies <- raw_data |>
janitor::clean_names()
usethis::use_data(movies, overwrite = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.