Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
  • CSTools CSTools
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
  • Issues 28
    • Issues 28
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 2
    • Merge requests 2
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Metrics
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • External
  • CSToolsCSTools
  • Merge requests
  • !82

Fixes on QuantileMapping correctly handle exp_cor and dependencies

  • Review changes

  • Download
  • Patches
  • Plain diff
Merged Nuria Pérez-Zanón requested to merge develop-QM into master Oct 14, 2020
  • Overview 0
  • Commits 16
  • Pipelines 11
  • Changes 11

This merge request solves issue #70 (closed): waiting for external user feedback. It also moves package qmap from Imports to Depends in DESCRIPTION file to avoid manual package loading.

The function should be tested and fixed when possible to work with weather types dimension, similar to this:

exp <- array(rnorm(2*3*5*6*7*4), c(lon = 2, lat = 3, member = 5, sdate = 6,
             ftime = 7, wt = 4))
obs <- array(rnorm(2*3*1*6*7*4), c(lon = 2, lat = 3, member = 1, sdate = 6,
             ftime = 7, wt = 4))
res <- QuantileMapping(exp, obs, sample_dims = 'ftime')
res <- QuantileMapping(exp, obs, sample_dims = c('sdate','ftime'))
res <- QuantileMapping(exp, obs, sample_dims = c('sdate','ftime', 'member'))
Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: develop-QM