Skip to content

consider adding unbiased root mean square difference to the metrics #19

Description

@DanCodigaNOAA

I did not see "unbiased root mean square difference" (URMSD), also known as "centered RMSD", in the list of metrics and if it's not there I suggest that it be included.

Using O for observation and M for model,
URMSD = stdev(M-O) = $< (M - < M > )^2 + (O - < O > )^2 >$

A reason to include it is that the following six metrics are essentially a "complete" set:

RMSD
URMSD
Mean Bias (MB)
stdev(M)
stdev(O)
CC

where the first 5 all have the same units (say, meters, for sea level) and the last one (CC) is the familiar unitless Pearson's correlation coefficient:

CC = $< (M - < M >) * (O - < O >) > / [stdev(M) * stdev(O)]$ .

These six are all part of the fundamental relationships:

$RMSD^2 = URMSD^2 + MB^2$

$URMSD^2 = stdev(M)^2 + stdev(O)^2 - 2* CC* stdev(M)*stdev(O)$

$RMSD^2 = stdev(M)^2 + stdev(O)^2 - 2* CC*stdev(M)*stdev(O) + MB^2$

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions