-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_Main_R.R
33 lines (23 loc) · 945 Bytes
/
_Main_R.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
#####
#####
# This main file calls and runs all subsequent R files in this analysis
#####
#####
# Author: Courtney Stuart
# Date of Creation: 2021-05-27
#####
# Set-up #######################################################################
# Data wrangling ###############################################################
# This script reads in Iris data and performs some simple data wrangling, then
# writes out files for model fitting
source("./Code/Data_Wrangling.R")
# Model fitting ################################################################
# This script reads in the appropriate CSVs, then fits a simple general linear
# model, then makes predictions
rm(list = ls())
source("./Code/Model_Fitting.R")
# Visualization ################################################################
# This script reads in two CSV files, then makes simple plots of the data and
# saves them
rm(list = ls())
source("./Code/Visualization.R")