-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.R
41 lines (39 loc) · 1.43 KB
/
config.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# =================================================================
# This file configures the project by specifying filenames, loading
# packages and setting up some project-specific variables.
# =================================================================
initialize_startr(
title = 'emergency-service-budgets',
author = 'Michael Pereira <[email protected]>',
timezone = 'America/Winnipeg',
should_render_notebook = FALSE,
should_process_data = TRUE,
should_timestamp_output_files = FALSE,
should_beep = FALSE,
packages = c(
"tidyverse", "glue", "magrittr", "lubridate", "hms",
"readxl", "feather", "RcppRoll",
"scales", "janitor", "httr", "Cairo",
"ggrepel", "prettydoc",
"aws.s3", "dotenv", "rlang",
"googledrive", "googlesheets4", "cowplot",
"zip", "gmailr", "knitr", "DT", "zoo", "ggtext",
"ggpubr", "ggtext", "showtext", "kableExtra",
"gmailr", "patchwork",
"pracma", "ISOweek",
"slackr", "ggbeeswarm",
"forecast", "fpp2", "TTR"
# 'rvest',
# 'sf',
# 'tidymodels',
# 'gganimate',
# 'tgamtheme',
# 'cansim',
# 'cancensus'
)
)
# Refer to your source data here. These can be either references to files in
# your `data/raw` folder, or paths to files hosted on the web. For example:
# For example:
# sample.raw.file <- dir_data_raw('your-filename-here.csv')
# sample.raw.path <- 'https://github.com/tidyverse/dplyr/raw/master/data-raw/starwars.csv'