Learn R Programming

tidyBdE (version 0.2.4)

theme_bde: BdE ggplot2 theme

Description

A custom ggplot2 theme based on the publications of BdE.

Usage

theme_bde(...)

Arguments

...

Ignored.

Value

A ggplot2::theme().

See Also

ggplot2::theme()

Other bde_plot: bde_pals, scales_bde

Examples

Run this code
# NOT RUN {
library(tidyverse)

series_TC <- bde_series_full_load("TC_1_1.csv")

# If download was OK then plot
if (nrow(series_TC) > 0) {
  series_TC <- series_TC[c(1, 2)]

  series_TC_pivot <- series_TC %>%
    filter(
      Date >= "2020-01-01" & Date <= "2020-12-31",
      !is.na(series_TC[[2]])
    )

  names(series_TC_pivot) <- c("x", "y")

  ggplot(series_TC_pivot, aes(x = x, y = y)) +
    geom_line(size = 0.8, color = bde_vivid_pal()(1)) +
    labs(
      title = "Title",
      subtitle = "Some metric",
      caption = "Bank of Spain"
    ) +
    theme_bde()
}
# }

Run the code above in your browser using DataLab