An error occurred while loading the file. Please try again.
-
Poulet Camille authoredd43fcf3e
\encoding{UTF-8}
\name{plot.SimGR}
\alias{plot.SimGR}
\title{Synthetic plotting of model outputs}
\usage{
\method{plot}{SimGR}(x, ...)
}
\arguments{
\item{x}{[object of class \emph{SimGR}] see \code{\link{SimGR}} for details}
\item{...}{other parameters to be passed through to plotting functions}
}
\value{
screen plot window
}
\description{
Function which creates a screen plot giving an overview of the model outputs
}
\details{
Dashboard of results including various graphs (depending on the model):
(1) time series of total precipitation and simulated flows (and observed flows if provided)
(2) interannual median monthly simulated flow (and observed flows if provided)
(3) correlation plot between simulated and observed flows (if observed flows provided)
(4) cumulative frequency plot for simulated flows (and observed flows if provided)
}
\seealso{
\code{\link{SimGR}}, \code{\link{plot_OutputsModel}}
}
\examples{
library(airGR)
## data.frame of observed data
data(L0123001)
BasinObs2 <- BasinObs[, c("DatesR", "P", "E", "Qmm", "T")]
## Preparation of observed data for modelling
w1 <- ObsGR(ObsBV = BasinObs2, TypeModel = "GR4J", CemaNeige = FALSE)
## Calibration step
w2 <- CalGR(ObsGR = w1, CalCrit = c("NSE", "KGE", "KGE2", "RMSE"),
WupPer = NULL, CalPer = c("1990-01-01", "1993-12-31"))
## Simulation step using the result of the automatic calibration method to set the model parameters
w3 <- SimGR(ObsGR = w1, CalGR = w2, EffCrit = "KGE2",
WupPer = NULL, SimPer = c("1994-01-01", "1998-12-31"))
plot(w3)
}
\author{
Laurent Coron, Olivier Delaigue
}