Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

list API in alphabetical order #316

Merged
merged 9 commits into from
May 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Changelog History
xskillscore v0.0.21 (2021-XX-XX)
--------------------------------

Documentation
~~~~~~~~~~~~~
- Added more info in ``quick-start.ipynb`` (:pr:`316`) `Ray Bell`_.


xskillscore v0.0.20 (2021-05-08)
--------------------------------
Expand Down
5 changes: 5 additions & 0 deletions ci/docs_notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ dependencies:
- sphinx
- sphinxcontrib-napoleon
- sphinx_rtd_theme
- black
- doc8
- isort
- flake8
- pre-commit
- pip
- pip:
- sphinx_autosummary_accessors
Expand Down
47 changes: 26 additions & 21 deletions docs/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,29 +16,30 @@ Correlation Metrics
.. autosummary::
:toctree: api/

effective_sample_size
pearson_r
pearson_r_p_value
pearson_r_eff_p_value
linslope
spearman_r
spearman_r_p_value
spearman_r_eff_p_value
effective_sample_size
r2
linslope


Distance Metrics
~~~~~~~~~~~~~~~~

.. autosummary::
:toctree: api/

me
rmse
mse
mae
mape
me
median_absolute_error
mse
r2
rmse
smape
mape


Probabilistic Metrics
Expand All @@ -55,12 +56,13 @@ Currently, most of our probabilistic metrics are ported over from
crps_ensemble
crps_gaussian
crps_quadrature
threshold_brier_score
rps
rank_histogram
discrimination
rank_histogram
reliability
roc
rps
threshold_brier_score


Contingency-based Metrics
-------------------------
Expand All @@ -87,19 +89,20 @@ Dichotomous-Only (yes/no) Metrics
.. autosummary::
:toctree: api/

Contingency.hits
Contingency.misses
Contingency.false_alarms
Contingency.correct_negatives
Contingency.bias_score
Contingency.hit_rate
Contingency.false_alarm_ratio
Contingency.false_alarm_rate
Contingency.success_ratio
Contingency.threat_score
Contingency.correct_negatives
Contingency.equit_threat_score
Contingency.false_alarm_rate
Contingency.false_alarm_ratio
Contingency.false_alarms
Contingency.hit_rate
Contingency.hits
Contingency.misses
Contingency.odds_ratio
Contingency.odds_ratio_skill_score
Contingency.success_ratio
Contingency.threat_score


Multi-Category Metrics
~~~~~~~~~~~~~~~~~~~~~~
Expand All @@ -108,11 +111,12 @@ Multi-Category Metrics
:toctree: api/

Contingency.accuracy
Contingency.gerrity_score
Contingency.heidke_score
Contingency.peirce_score
Contingency.gerrity_score
roc


Comparative
-----------

Expand All @@ -121,8 +125,9 @@ Tests to compare whether one forecast is significantly better than another one.
.. autosummary::
:toctree: api/

sign_test
mae_test
sign_test


Resampling
----------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ You can also install the bleeding edge (pre-release versions) by running:

.. code-block:: bash

pip install git+https://github.com/xarray-contrib/xskillscore@master --upgrade
pip install git+https://github.com/xarray-contrib/xskillscore@main --upgrade

**Getting Started**

Expand Down
Loading