Description Usage Arguments Details Value Examples
View source: R/geom_timeline.R
Module 2: Visualize the times at which earthquakes occur within certain countries
1 2 3 4 5 6 7 8 9 10 |
mapping |
Create asthetics mapping. |
data |
The data |
stat |
The statistical transformation as a string. |
position |
Position adjustment |
na.rm |
If 'FALSE', the default, missing values are removed with a warning. If 'TRUE', missing values are silently removed. |
show.legend |
show the legends or not |
inherit.aes |
the default aesthetics |
... |
Other arguments passed on to [layer()]. These are often aesthetics, used to set an aesthetic to a fixed value, like 'colour = "red"' or 'size = 3'. They may also be parameters to the paired geom/stat. #' @section Aesthetics:
|
The data to be used with this geom from NOAA website
Produce a time line plot of selected earthquakes.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # The data must be cleaned using the function \code{eq_clean_data}, included in the package.
# Aesthetics can be specified in the \code{ggplot} function or in \code{geom_timeline} geom function
## Not run:
data <- readr::read_delim("signif.txt", delim = "\t")
data <- eq_clean_data(data)
data %>%
dplyr::filter(COUNTRY == c("MEXICO","USA") & lubridate::year(DATE) >= 2010) %>%
ggplot(aes(x=DATE,y=COUNTRY,color=TOTAL_DEATHS,size=EQ_PRIMARY)) +
geom_timeline(alpha=.5) +
theme(legend.position="bottom", legend.box="horizontal", plot.title=element_text(hjust=0.5)) +
ggtitle("Earthquakes Visualization Tool") +
labs(size = "Richter scale value", color = "# deaths")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.