Description Usage Arguments Value Examples
Creates an annotation for each earthquake that will show the location, magnitude (EQ_PRIMARY), and total number of deaths (TOTAL_DEATHS), with respective labels "Location", "Total deaths", and "Magnitude". If an earthquake is missing values for any of these, both the label and the value will be skipped for that element of the tag.
1 |
data |
Filtered dataframe of NOAA earthquakes dataset |
Popup text for Location, Magnitude, and Total number of Deaths (HTML formatted)
1 2 3 4 5 6 7 8 9 | ## Not run:
eq_create_label(data)
data %>%
dplyr::filter(COUNTRY %in% COUNTRIES & YEAR >= 2000) %>%
dplyr::mutate(popup_text = eq_create_label(.)) %>%
eq_map(annotation = "popup_text")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.