From 5f332a3dc260eb6d66f8b10f80017bca5427adcd Mon Sep 17 00:00:00 2001
From: unknown <olivier.delaigue@ANPI1430.antony.irstea.priv>
Date: Fri, 10 Nov 2017 08:27:48 +0100
Subject: [PATCH] v1.0.9.63 minor revisions in vignettes

---
 DESCRIPTION                       | 4 ++--
 NEWS.rmd                          | 2 +-
 vignettes/V02.2_param_mcmc.Rmd    | 4 ++--
 vignettes/V03_param_sets_GR4J.Rmd | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/DESCRIPTION b/DESCRIPTION
index 2f8e52f3..f9176b68 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,8 +1,8 @@
 Package: airGR
 Type: Package
 Title: Suite of GR Hydrological Models for Precipitation-Runoff Modelling
-Version: 1.0.9.62
-Date: 2017-11-09
+Version: 1.0.9.63
+Date: 2017-11-10
 Authors@R: c(
   person("Laurent", "Coron", role = c("aut", "trl")),
   person("Charles", "Perrin", role = c("aut", "ths")),
diff --git a/NEWS.rmd b/NEWS.rmd
index 97bfe056..605ab742 100644
--- a/NEWS.rmd
+++ b/NEWS.rmd
@@ -14,7 +14,7 @@ output:
 
 
 
-### 1.0.9.62 Release Notes (2017-11-09) 
+### 1.0.9.63 Release Notes (2017-11-10) 
 
 #### New features
 
diff --git a/vignettes/V02.2_param_mcmc.Rmd b/vignettes/V02.2_param_mcmc.Rmd
index 5db9cfa0..ab4feb30 100644
--- a/vignettes/V02.2_param_mcmc.Rmd
+++ b/vignettes/V02.2_param_mcmc.Rmd
@@ -139,14 +139,14 @@ In addition, graphical tools can be used, with for example the [ggmcmc](https://
 
 First, the evolution of the Markov chains can be seen with a traceplot:
 
-```{r, fig.width=6, fig.height=9}
+```{r, fig.width=6, fig.height=9, warning=FALSE}
 ParamDRAM <- ggmcmc::ggs(MultDRAM) ## to convert objet for using by all ggs_* graphical functions
 ggmcmc::ggs_traceplot(ParamDRAM)
 
 ```
 
 The posterior density for each parameter can then be visualised:
-```{r, fig.width=6, fig.height=9}
+```{r, fig.width=6, fig.height=9, warning=FALSE}
 ParamDRAM_burn <- dplyr::filter(ParamDRAM, Iteration > 1000) # to keep only the second half of the series
 ggmcmc::ggs_density(ParamDRAM_burn)
 ```
diff --git a/vignettes/V03_param_sets_GR4J.Rmd b/vignettes/V03_param_sets_GR4J.Rmd
index 3916b8b7..4e9fe570 100644
--- a/vignettes/V03_param_sets_GR4J.Rmd
+++ b/vignettes/V03_param_sets_GR4J.Rmd
@@ -44,7 +44,7 @@ data(L0123001)
 data(Param_Sets_GR4J)
 ```
 
-The given GR4J **X4u** variable does not correspond to the actual GR4J **X4** parameter. As explained in @andreassian_seeking_2014 [section 2.1], the given GR4J **X4u** value has to be adjusted (rescaled) using catchment area (S) [km2] as follows: $X4 = X4u / 5.995 \times S^{0.3}$ (please note that **the formula is erroneous in the publication**).
+The given GR4J **X4u** variable does not correspond to the actual GR4J **X4** parameter. As explained in @andreassian_seeking_2014 [section 2.1], the given GR4J **X4u** value has to be adjusted (rescaled) using catchment area (S) [km2] as follows: `X4 = X4u / 5.995 * S^0.3` (please= note that **the formula is erroneous in the publication**).
 
 It means we need first to transform the **X4** parameter.
 
-- 
GitLab