Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
  • S s2dverification
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
  • Issues 65
    • Issues 65
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 7
    • Merge requests 7
  • Deployments
    • Deployments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • Earth SciencesEarth Sciences
  • s2dverification
  • Wiki
  • Home

Home · Changes

Page history
Added index of contents as main page authored Jan 13, 2016 by Nicolau Manubens Gil's avatar Nicolau Manubens Gil
Show whitespace changes
Inline Side-by-side
home.md
View page @ 24700d98
s2dverification
===============
s2dverification wiki
====================
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
in any field.
Welcome to the s2dverification wiki page! You'll find all the documentation in the following sections:
Find out more in the overview below or on the CRAN website at
<https://cran.r-project.org/web/packages/s2dverification/index.html>.
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.
Index of contents
-----------------
Installation
------------
1. [Overview](https://earth.bsc.es/gitlab/es/s2dverification/README.md)
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>.
2. [Data retrieval](https://earth.bsc.es/gitlab/es/s2dverification/vignettes/data_retrieval.md)
You can then install the publicly released version of s2dverification from CRAN:
```r
install.packages("s2dverification")
```
Or the development version from the GitLab repository:
```r
# install.packages("devtools")
devtools::install_git("https://earth.bsc.es/gitlab/es/s2dverification.git")
```
Overview
--------
3. [Basic statistics](https://earth.bsc.es/gitlab/es/s2dverification/vignettes/basic_statistics.md)
The following diagram depicts the modules of s2dverification and how
they interact:
4. [Verification](https://earth.bsc.es/gitlab/es/s2dverification/vignettes/verification.md)
<img src="https://earth.bsc.es/gitlab/es/s2dverification/vignettes/s2dv_modules.png" width="800" />
5. [Visualisation](https://earth.bsc.es/gitlab/es/s2dverification/vignettes/visualisation.md)
The [**Data
retrieval**](https://earth.bsc.es/gitlab/es/s2dverification/wikis/data_retrieval.md)
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.
6. [Example](https://earth.bsc.es/gitlab/es/s2dverification/vignettes/example.md)
Once the data has been loaded into an R object, [**Basic
statistics**](https://earth.bsc.es/gitlab/es/s2dverification/wikis/basic_statistics.md)
can be computed, such as climatologies, trends, bias correction,
smoothing, ...
7. [Snippets](https://earth.bsc.es/gitlab/es/s2dverification/vignettes/snippets.md)
Either after computing basic statistics or directly from the original
data, the functions in the
[**Verification**](https://earth.bsc.es/gitlab/es/s2dverification/wikis/verification.md)
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**](https://earth.bsc.es/gitlab/es/s2dverification/wikis/visualisation.md)
functions are also provided to plot the results obtained from any of the
modules above.
If it's your first time using s2dverification you can check an
[**Example**](https://earth.bsc.es/gitlab/es/s2dverification/wikis/example.md)
of use spanning its four modules, or review the
[**Tutorials**](https://earth.bsc.es/gitlab/es/s2dverification/wikis/tutorials.ms)
section. You will find more detailed examples in the documentation page of
each module.
You can also check the examples of usage of each function after attaching the
package as follows:
```r
ls('package:s2dverification')
## [1] "ACC" "Alpha"
## [3] "Ano" "Ano_CrossValid"
## [5] "Clim" "ColorBar"
## [7] "ConfigAddEntry" "ConfigApplyMatchingEntries"
## [9] "ConfigEditDefinition" "ConfigEditEntry"
## [11] "ConfigFileCreate" "ConfigFileOpen"
## [13] "ConfigFileSave" "ConfigRemoveDefinition"
## [15] "ConfigRemoveEntry" "ConfigShowDefinitions"
## [17] "ConfigShowSimilarEntries" "ConfigShowTable"
## [19] "Consist_Trend" "Corr"
## [21] "CRPS" "Enlarge"
## [23] "Eno" "EnoNew"
## [25] "Filter" "FitAcfCoef"
## [27] "FitAutocor" "GenSeries"
## [29] "Histo2Hindcast" "IniListDims"
## [31] "InsertDim" "LeapYear"
## [33] "Load" "Mean1Dim"
## [35] "MeanListDim" "Plot2VarsVsLTime"
## [37] "PlotACC" "PlotAno"
## [39] "PlotClim" "PlotEquiMap"
## [41] "PlotSection" "PlotStereoMap"
## [43] "PlotVsLTime" "ProbBins"
## [45] "RatioRMS" "RatioSDRMS"
## [47] "Regression" "RMS"
## [49] "RMSSS" "sampleDepthData"
## [51] "sampleMap" "sampleTimeSeries"
## [53] "Season" "SelIndices"
## [55] "Smoothing" "Spectrum"
## [57] "Spread" "Trend"
```
```r
?FunctionName
```
\ No newline at end of file
8. [Tutorials](https://earth.bsc.es/gitlab/es/s2dverification/vignettes/tutorials.md)
Clone repository
  • FAQ
  • Home