setupGeom: setupGeom

Description Usage Arguments Value Examples

Description

Create a ggplot theme and add this to an ggplot object.

Usage

1

Arguments

p

a ggplot object previously built

Value

a ggplot object

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
df <- load_data()
df <- eq_clean_data(df)
df <- eq_location_clean(df)
country <- c("JAPAN")
dfFilter <- filterData(df, COUNTRY=country,
minYear=1000, maxYear=1400)
test <- (ggplot2::ggplot()+
           geom_timeline(data=dfFilter,ggplot2::aes(x=DataEQ,
                                           xmin=as.Date("1000-01-01"),
                                           xmax=as.Date("1400-12-31"),
                                           colour=DEATHS,
                                           fill=DEATHS,
                                           size=EQ_PRIMARY,
                                           y=COUNTRY))+
           geom_timeline_label(data=dfFilter, ggplot2::aes(x=DataEQ,
                                                  location=LOCATION_NAME,
                                                  size=EQ_PRIMARY,
                                                  n_max=5,
                                                  y=COUNTRY)))

a <- setupGeom(test)

constantin345/NOOA documentation built on May 16, 2019, 7:09 p.m.