Skip to content

Commit

Permalink
Fix a typo in the docstring of OderedLogistic (#6611)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanielF committed Mar 18, 2023
1 parent c7279b5 commit 67925df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymc/distributions/discrete.py
Original file line number Diff line number Diff line change
Expand Up @@ -1572,7 +1572,7 @@ class OrderedLogistic:
# Ordered logistic regression
with pm.Model() as model:
cutpoints = pm.Normal("cutpoints", mu=[-1,1], sigma=10, shape=2,
transform=pm.distributions.transforms.ordered)
transform=pm.distributions.transforms.univariate_ordered)
y_ = pm.OrderedLogistic("y", cutpoints=cutpoints, eta=x, observed=y)
idata = pm.sample()
Expand Down

0 comments on commit 67925df

Please sign in to comment.