generated from HerbVar-Network/new_dataset_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile.R
More file actions
46 lines (25 loc) · 962 Bytes
/
makefile.R
File metadata and controls
46 lines (25 loc) · 962 Bytes
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
42
43
44
45
46
#### Template of a master script for the project ####
## Using an advanced tool like {drake} or {targets} is recommended,
## but this can work as a simple alternative.
# Packages Required -------------------------------------------------------
# install.packages("grateful")
# install.packages("here")
# install.packages("tidyverse")
library(grateful)
library(here)
library(tidyverse)
### if you have written specific functions in R/, load the package:
# library("myproject")
### Source data cleaning scripts
# source("data-raw/datacleaning.R")
### Could also be Rmarkdown:
# rmarkdown::render("data-raw/datacleaning.Rmd")
## Check your code ##
# goodpractice::gp()
# Generate Session Info and list of packages used -------------------------
source(here("code", "packages_and_session_info.R"))
packages_and_session_info()
## Make a website for your project?
## see https://pkgdown.r-lib.org/
# usethis::use_pkgdown()
# pkgdown::build_site()