-
Notifications
You must be signed in to change notification settings - Fork 2
/
packages.R
32 lines (28 loc) · 956 Bytes
/
packages.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
######################## LOAD R PACKAGES #######################################
################################################################################
#
#' R packages needed to run any/most {targets} workflows
#
################################################################################
library(targets)
library(tarchetypes)
library(tidyverse)
library(here)
library(knitr)
library(rmarkdown)
library(paws)
library(conflicted)
################################################################################
#
#' Additional R packages needed to run your specific workflow
#'
#' * Delete or hash out lines of code for R packages not needed in your workflow
#' * Insert code here to load additional R packages that your workflow requires
#
################################################################################
library(tflow)
library(fnmate)
library(containerTemplateUtils)
library(dotenv)
library(usethis)
library(kableExtra)