Releases: TUW-GEO/pytesmo
v0.13.3
rollback to old C-files due to numpy compatibility issues
v0.13.2
Merge pull request #257 from s-scherrer/master Fix PyPI upload in CI
v0.13.1
Merge pull request #249 from pstradio/monthly_clim Monthly climatology
v0.13.0
- monthly climatologies
- wraparound=True is the new default in the climatology calculation
- better error handling in validation framework
v0.12.0
v0.11.4
bug fixes
v0.11.3: Merge pull request #240 from s-scherrer/master
adding python 3.9 to CI
v0.11.2
more bugs fixed
v0.11.1
bugfix in combined temporal matcher
v0.11.0
-
Analytical and bootstrapping confidence intervals for metrics (PR #206). This
includes some changes to the existing implementations (all old
implementations are still available, but deprecated)-
all pairwise metric functions take two arrays as input and return a single value
-
the correlation metrics (
pearsonr
,spearmanr
,kendalltau
) have new
versionspearson_r
,spearman_r
, andkendall_tau
which only return the
correlation value, but not the p-value. The old functions have been
deprecated. For calculating correlation + p-value, it is advised to use
scipy.stats.pearsonr
,scipy.stats.spearmanr
, and
scipy.stats.kendalltau
. Instead of p-values, confidence intervals for
the correlation coefficients could be obtained with::r, lower, upper = with_analytical_ci(pearson_r, x, y)
-
pytesmo.metrics.tcol_error
andpytesmo.metrics.tcol_snr
have been
deprecated. Usepytesmo.metrics.tcol_metrics
instead (which is simply a
renaming oftcol_snr
). -
pytesmo.metrics.mse
has been deprecated. There is a new, much faster
implementation available (pytesmo.metrics.mse_decomposition
).
Individual values of the components can be calculated with
pytesmo.metrics.mse
,pytesmo.metrics.mse_corr
,
pytesmo.metrics.mse_bias
,pytesmo.metrics.mse_var
.
-
-
Removed dependency on deprecated Numpy API
-
added mean resampling in temporal collocation
-
updated to
ascat
version 2.0