# load packages ----------------------------------------------------------------
library(tidyverse)
library(janitor)
# load data ---------------------------------------------------------------------
earthquakes <- read_csv("data-raw/earthquakes/earthquakes.csv")
# cleaning: clean names -------------------------------
earthquakes <- earthquakes |>
clean_names()
# save --------------------------------------------------------------------------
usethis::use_data(earthquakes, overwrite = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.