Skip to content

Plot reliability diagram #9

@Budusa

Description

@Budusa

I would like to use a reliability diagram for verification of my data organized in 16 ensemble members and one observation. Of course, all are in the netCDF format for June-August 2018. I was able to compute other scores such as PRS, CRPS, and others. provided all other skill scores and I would like to evaluate the results using the diagram. Thank you for your help in advance. Find also how I have tried to read and organize my data as follow:

require (ncdf4)
require(easyVerification)

fcstfiles <- list.files(pattern = 'wrf_t2m_')

fcst <- sapply(fcstfiles, function(f){

nc <- nc_open(f)

on.exit(nc_close(nc))

ncvar_get(nc, 't2m')

}, simplify = 'array')

library(cmsaf)
library(raster)

ncobs <- nc_open("era5_t2m_wrf_eth.nc")
obs <- ncvar_get(ncobs, 't2m')

corr <- veriApply("EnsCorr",
fcst = fcst,
obs = obs,
ensdim = 4, tdim = 3)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions