Skip to content

Commit 4ce1294

Browse files
committed
Mention in release notes
1 parent 898c40e commit 4ce1294

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

RELEASE-NOTES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
- The `size` kwarg behaves like it does in Aesara/NumPy. For univariate RVs it is the same as `shape`, but for multivariate RVs it depends on how the RV implements broadcasting to dimensionality greater than `RVOp.ndim_supp`.
1919
- An `Ellipsis` (`...`) in the last position of `shape` or `dims` can be used as short-hand notation for implied dimensions.
2020
- Add `logcdf` method to Kumaraswamy distribution (see [#4706](https://github.com/pymc-devs/pymc3/pull/4706)).
21-
- ...
21+
- The `OrderedMultinomial` distribution has been added for use on ordinal data which are _aggregated_ by trial, like multinomial observations, whereas `OrderedLogistic` only accepts ordinal data in a _disaggregated_ format, like categorical
22+
observations (see [#4773](https://github.com/pymc-devs/pymc3/pull/4773)).
2223

2324
### Maintenance
2425
- Remove float128 dtype support (see [#4514](https://github.com/pymc-devs/pymc3/pull/4514)).

pymc3/distributions/multivariate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ class OrderedMultinomial:
718718
R"""
719719
Wrapper class for Ordered Multinomial distributions.
720720
721-
Useful for regression on ordinal data values whose values range
721+
Useful for regression on ordinal data whose values range
722722
from 1 to K as a function of some predictor, :math:`\eta`, but
723723
which are _aggregated_ by trial, like multinomial observations (in
724724
contrast to `pm.OrderedLogistic`, which only accepts ordinal data

0 commit comments

Comments
 (0)