hydromt.stats.skills.lognashsutcliffe#

hydromt.stats.skills.lognashsutcliffe(sim, obs, epsilon=1e-06, dim='time')[source]#

Return the log Nash-Sutcliffe model efficiency.

Efficiency calculation is based on simulated and observed time series.

NSE=1fracsumi=1N(log(simi)log(obsi))2sumi=1N(log(simi)log(barobs)21)1
Parameters:
  • sim (xarray DataArray) – simulations time series

  • obs (xarray DataArray) – observations time series

  • epsilon (float, optional) – small value to avoid taking the log of zero (the default is 1e-6)

  • dim (str, optional) – name of time dimension in sim and obs (the default is ‘time’)

Returns:

the log of the Nash-Sutcliffe model efficiency

Return type:

xarray DataArray