TUW-GEO/pytesmo: v0.11.0
Authors/Creators
- 1. @vandersat
- 2. TU Wien
- 3. @tuw-geo
Description
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_tauwhich 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 usescipy.stats.pearsonr,scipy.stats.spearmanr, andscipy.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_errorandpytesmo.metrics.tcol_snrhave been deprecated. Usepytesmo.metrics.tcol_metricsinstead (which is simply a renaming oftcol_snr).pytesmo.metrics.msehas been deprecated. There is a new, much faster implementation available (pytesmo.metrics.mse_decomposition). Individual values of the components can be calculated withpytesmo.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
ascatversion 2.0
Files
TUW-GEO/pytesmo-v0.11.0.zip
Files
(686.7 kB)
| Name | Size | Download all |
|---|---|---|
|
md5:c3b3d04002d8106ff6e654bc6b69aaab
|
686.7 kB | Preview Download |
Additional details
Related works
- Is supplement to
- https://github.com/TUW-GEO/pytesmo/tree/v0.11.0 (URL)