Commit 6962adcf authored by Heraut Louis's avatar Heraut Louis
Browse files

Cleaned and commented

parent a8db14e8
No related merge requests found
Showing with 12 additions and 4 deletions
+12 -4
...@@ -192,7 +192,9 @@ map_panel = function (list_df2plot, df_meta, df_shapefile, idPer=1, outdirTmp='' ...@@ -192,7 +192,9 @@ map_panel = function (list_df2plot, df_meta, df_shapefile, idPer=1, outdirTmp=''
# If there is the verbose option # If there is the verbose option
if (verbose) { if (verbose) {
# Prints the name of the map # Prints the name of the map
print(paste('Map for variable :', type)) print(paste('Map for variable : ', type,
" (", round(i/nbp*100, 1), " %)",
sep=''))
} }
# If there is no specified station code to highlight (mini map) # If there is no specified station code to highlight (mini map)
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
# #
# plotting/matrix.R # plotting/matrix.R
# #
# # Allows the creation of a summarizing matrix of trend and break analyses
## 1. MATRIX PANEL ## 1. MATRIX PANEL
...@@ -401,10 +401,16 @@ matrix_panel = function (list_df2plot, df_meta, trend_period, mean_period, slice ...@@ -401,10 +401,16 @@ matrix_panel = function (list_df2plot, df_meta, trend_period, mean_period, slice
# Extracts each possibilities of first letter of station code # Extracts each possibilities of first letter of station code
firstLetter = levels(factor(substr(Code, 1, 1))) firstLetter = levels(factor(substr(Code, 1, 1)))
# Number of different first letters
nfL = length(firstLetter)
# For all the available first letter # For all the available first letter
for (fL in firstLetter) { for (ifL in 1:nfL) {
# Gets the first letter
fL = firstLetter[ifL]
# Print the matrix name # Print the matrix name
print(paste('Matrix for region :', fL)) print(paste('Matrix for region : ', fL,
" (", round(ifL/nCode*100, 1), " %)",
sep=''))
# Get only station code with the same first letter # Get only station code with the same first letter
subCodefL = Code[substr(Code, 1, 1) == fL] subCodefL = Code[substr(Code, 1, 1) == fL]
......
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