README.md 2.97 KB
Newer Older
Nicolau Manubens's avatar
Nicolau Manubens committed
s2dverification
===============

s2dverification (seasonal to decadal verification) is an R framework
that aids in the analysis of forecasts from the data retrieval stage,
through computation of statistics and skill scores against observations,
to visualisation of data and results. While some of its components are
only targeted to verification of seasonal to decadal climate forecasts,
it provides tools that can be useful for verification of forecasts
Nicolau Manubens's avatar
Nicolau Manubens committed
in any field.

Find out more in the overview below, on the wiki page at
<https://earth.bsc.es/gitlab/es/s2dverification/wikis/home> or on the
CRAN website at
Nicolau Manubens's avatar
Nicolau Manubens committed
<https://cran.r-project.org/web/packages/s2dverification/index.html>.  
Nicolau Manubens's avatar
Nicolau Manubens committed
You can also sign up to the s2dverification mailing list by sending a
message with the subject 'subscribe' to <s2dverification-request@bsc.es>
if you want to keep abreast of internal discussons or latest development
releases.

Installation
------------

s2dverification has a system dependency, the CDO libraries, for
interpolation of grid data and retrieval of metadata. Make sure you have
these libraries installed in the system or download and install from
<https://code.zmaw.de/projects/cdo>.
You can then install the publicly released version of s2dverification from CRAN:
Nicolau Manubens's avatar
Nicolau Manubens committed
```r
Nicolau Manubens's avatar
Nicolau Manubens committed
install.packages("s2dverification")
Nicolau Manubens's avatar
Nicolau Manubens committed
```
Or the development version from the GitLab repository:
Nicolau Manubens's avatar
Nicolau Manubens committed
```r
Nicolau Manubens's avatar
Nicolau Manubens committed
# install.packages("devtools")
devtools::install_git("https://earth.bsc.es/gitlab/es/s2dverification.git")
Nicolau Manubens's avatar
Nicolau Manubens committed
```
Nicolau Manubens's avatar
Nicolau Manubens committed
Overview
--------
Nicolau Manubens's avatar
Nicolau Manubens committed
The following diagram depicts the modules of s2dverification and how
they interact:
Nicolau Manubens's avatar
Nicolau Manubens committed
<img src="vignettes/s2dv_modules.png" width="800" />
The [**Data
retrieval**](vignettes/data_retrieval.md)
Nicolau Manubens's avatar
Nicolau Manubens committed
module allows you to gather and homogenize NetCDF data files stored in a
local or remote file system. Some simple previous steps are required, however, 
to set up some configuration parameters so that the module can locate the
source files and recognize the variables of interest.
Once the data has been loaded into an R object, [**Basic
statistics**](vignettes/basic_statistics.md)
Nicolau Manubens's avatar
Nicolau Manubens committed
can be computed, such as climatologies, trends, bias correction,
smoothing, ...
Nicolau Manubens's avatar
Nicolau Manubens committed
Either after computing basic statistics or directly from the original
data, the functions in the
[**Verification**](vignettes/verification.md)
Nicolau Manubens's avatar
Nicolau Manubens committed
module allow you to compute deterministic and probabilistic scores and
skill scores, such as root mean square error, time or spatial
correlation or brier score.
[**Visualisation**](vignettes/visualisation.md)
Nicolau Manubens's avatar
Nicolau Manubens committed
functions are also provided to plot the results obtained from any of the
modules above.
Nicolau Manubens's avatar
Nicolau Manubens committed
If it's your first time using s2dverification you can check an 
[**Example**](vignettes/example.md) 
Nicolau Manubens's avatar
Nicolau Manubens committed
of use spanning its four modules, or review the 
[**Tutorials**](vignettes/tutorials.ms)
Nicolau Manubens's avatar
Nicolau Manubens committed
section. You will find more detailed examples in the documentation page of 
each module.  

Nicolau Manubens's avatar
Nicolau Manubens committed
You can also check the examples of usage of each function after attaching the 
package as follows:
Nicolau Manubens's avatar
Nicolau Manubens committed
ls('package:s2dverification')
Nicolau Manubens's avatar
Nicolau Manubens committed
?FunctionName
Nicolau Manubens's avatar
Nicolau Manubens committed
```