Commit e0604ab9 authored by Heraut Louis's avatar Heraut Louis
Browse files

Minor structure changes

parent 0013da4b
No related merge requests found
Showing with 41 additions and 1 deletion
+41 -1
data
script.R 0 → 100644
### A MODIFIER ###
# Path to the data
computer_data_path = "/home/louis/Documents/bouleau/INRAE/CDD_stationnarite/data"
# Work path
computer_work_path = "/home/louis/Documents/bouleau/INRAE/CDD_stationnarite/ASH"
filedir = ""
filename = "H5920011_HYDRO_QJM.txt"
##################
# Set working directory
setwd(computer_work_path)
# Sourcing R file
source('processing/extract.R')
source('plotting/panel.R')
# Usefull library
# Result directory
resdir = file.path(computer_work_path, 'results')
print(paste('resdir :', resdir))
# Figure directory
figdir = file.path(computer_work_path, 'figures')
print(paste('figdir :', figdir))
df_info = extract_info(computer_data_path, filedir, filename)
df_data = extract_data(computer_data_path, filedir, filename)
panel(df_data, df_info, figdir, filedir)
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment