Commit 9e239420 authored by Heraut Louis's avatar Heraut Louis
Browse files

Cleaned and commented

parent 4e646db7
No related merge requests found
Showing with 2 additions and 4 deletions
+2 -4
...@@ -288,12 +288,10 @@ matrix_panel = function (list_df2plot, df_meta, trend_period, mean_period, slice ...@@ -288,12 +288,10 @@ matrix_panel = function (list_df2plot, df_meta, trend_period, mean_period, slice
df_data_code[df_data_code$Date >= Start_mean df_data_code[df_data_code$Date >= Start_mean
& df_data_code$Date <= End_mean,] & df_data_code$Date <= End_mean,]
# Min for the sub period # Min max for the sub period
Datemin = min(df_data_code_per$Date) Datemin = min(df_data_code_per$Date)
# Max for the sub period
Datemax = max(df_data_code_per$Date) Datemax = max(df_data_code_per$Date)
# Creates a period name
Periods = paste(Datemin, Datemax, Periods = paste(Datemin, Datemax,
sep=' / ') sep=' / ')
......
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