geom_timeline: geom_timeline

Description Usage Arguments Value Aesthetics Examples

Description

A ggplot2 graphical function to plot a timeline of earthquakes from cleaned data. The plot indicates the magnitude of each earthquake and number of deaths.

Usage

1
2
3
geom_timeline(mapping = NULL, data = NULL, stat = "identity",
  position = "identity", na.rm = FALSE, show.legend = NA,
  inherit.aes = TRUE, ...)

Arguments

mapping

mapping

data

data

stat

stat

position

position

na.rm

na.rm

show.legend

show.legend

inherit.aes

inherit.aes

...

...

Value

ggplot2 graphical object

Aesthetics

geom_timeline understands the following aesthetics:

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
## Not run: 
library(ggplot2)
dmin = as.Date("2000-01-01", format="%Y-%m-%d")
dmax = as.Date("2017-01-01", format="%Y-%m-%d")
ggplot(df) +
geom_timeline(aes(x=DATE,
                  colour=DEATHS,
                  size=RITCHER,
                  fill=DEATHS,
                  xmin=dmin,
                  xmax=dmax)
             )

## End(Not run)

Grandez/jggEarthquake documentation built on May 14, 2019, 2:36 p.m.