R/misc.R
theme_benchmark.Rd
A ggplot2 theme for benchmarking the index series
theme_benchmark(yintercept = -2, linetype = "dashed")
intercept
linetype
a ggplot2 object
if (require("ggplot2", quietly = TRUE) ){ dplyr::tibble(x = 1:100, y = rnorm(100, sd = 2)) |> ggplot(aes(x = x, y =y )) + geom_line() + theme_benchmark() }