-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathr-script-template.R
34 lines (32 loc) · 1.34 KB
/
r-script-template.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
##############################################################################
# Script name: r-script-template.R
# Purpose:
# Author:
# Date Created: YYYY-MM-DD
# Copyright (c) Phillip Hungerford, 2020
# Email: [email protected]
##############################################################################
# Notes:
#
#
##############################################################################
# set working directory for Mac and PC
#setwd("~/Google Drive/")
#setwd("C:/Users/tim/Google Drive/")
##############################################################################
options(scipen = 6, digits = 4)
#memory.limit(30000000)
##############################################################################
# Dependencies:
# require(tidyverse)
# require(data.table)
# source("functions/packages.R") # loads up all the packages we need
##############################################################################
# Level 1
#=============================================================================
# Level 2
#-----------------------------------------------------------------------------
# Level 3
##############################################################################
#################################### END #####################################
##############################################################################