Description Usage Arguments Value Examples
This function should put together a character string for each earthquake that will show the cleaned location, the magnitude, and the total number of deaths (TOTAL_DEATHS), with boldface labels for each ("Location", "Total deaths", and "Magnitude").
1 | eq_create_label(clean_data)
|
clean_data |
The clean earthquake data |
A character vector containing the pop-up text to be used in a leaflet visualization.
1 2 3 4 5 6 7 8 | ## Not run:
readr::read_delim("earthquakes.tsv.gz", delim = "\t") %>%
eq_clean_data() %>%
dplyr::filter(COUNTRY == "MEXICO" & lubridate::year(DATE) >= 2000) %>%
dplyr::mutate(popup_text = eq_create_label(.)) %>%
eq_map(annot_col = "popup_text")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.