Skip to content
Snippets Groups Projects
Commit fc4f044c authored by clblatte's avatar clblatte
Browse files

change settings in main for "First run"

parent dcfddc80
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,9 @@
#####
library(dplyr)
### Set the working path to this R-project
path <- paste0(getwd(),"/")
......@@ -40,7 +43,7 @@ db_names <- c("MV_Hartola",
#
# !!! Only needed if the DB is read/loaded for the first time. !!!
# source(paste0(path, "structure_SIMO_rslDB_FBE.R")) # Afterwards, you can exclude this line with: #
source(paste0(path, "structure_SIMO_rslDB_FBE.R")) # Afterwards, you can exclude this line with: #
### Import the restructured SIMO data (from UNIT table) in the R-environment
......@@ -70,9 +73,11 @@ columns <- paste0("id,
### !!! Needed if the DB is read/loaded for the first time, since dataframes are also stored as csv-file under "output/". !!!
# source(paste0(path, "loadDB.R")) # Afterwards, you can also exclude this line with: #
source(paste0(path, "loadDB.R")) # Afterwards, you can also exclude this line with: #
# ... and the single csv can later also be loaded into the R-environment with:
rslt <- read.csv(paste0(path, "output/rslt_", sim_variant, "_", "_all.csv" ), sep = ";", header = TRUE, stringsAsFactors = FALSE)
# rslt <- read.csv(paste0(path, "output/rslt_", sim_variant, "_all.csv" ), sep = ";", header = TRUE, stringsAsFactors = FALSE)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment