Skip to content

Commit

Permalink
update docstrings in ZeroInflatedPoisson, DiracDelta and OrderedLogis…
Browse files Browse the repository at this point in the history
…tic classes
  • Loading branch information
saurbhc authored and aloctavodia committed Jul 13, 2022
1 parent a9baa42 commit b647737
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pymc/distributions/discrete.py
Original file line number Diff line number Diff line change
Expand Up @@ -1371,7 +1371,7 @@ class DiracDelta(Discrete):
Parameters
----------
c: float or int
c : tensor_like of float or int
Dirac Delta parameter. The dtype of `c` determines the dtype of the distribution.
This can affect which sampler is assigned to DiracDelta variables, or variables
that use DiracDelta, such as Mixtures.
Expand Down Expand Up @@ -1497,9 +1497,9 @@ class ZeroInflatedPoisson:
Parameters
----------
psi: float
psi : tensor_like of float
Expected proportion of Poisson variates (0 < psi < 1)
mu: float
mu : tensor_like of float
Expected number of occurrences during the given interval
(mu >= 0).
"""
Expand Down Expand Up @@ -1732,9 +1732,9 @@ class OrderedLogistic:
Parameters
----------
eta: float
eta : tensor_like of float
The predictor.
cutpoints: array
cutpoints : tensor_like of array
The length K - 1 array of cutpoints which break :math:`\eta` into
ranges. Do not explicitly set the first and last elements of
:math:`c` to negative and positive infinity.
Expand Down

0 comments on commit b647737

Please sign in to comment.