#' Prepare Chicago Gun Crimes Dataset
#'
#' Prepare the ChicagoGunCrimes dataset by reading it into R and
#' configuring this package to house it.
#'
#' @importFrom readr read_csv
#' @importFrom usethis use_data
.prepare_ChicagoGunCrimes <- function() {
ChicagoGunCrimes <- readr::read_csv(
system.file("original_data/Gun_Crimes_Heat_Map.csv",
package='ChicagoGunCrimes'))
usethis::use_data(ChicagoGunCrimes, overwrite = TRUE)
return(invisible(TRUE))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.