Skip to content

Commit 7110bd3

Browse files
committed
[Issue #6610] fixing a typo in the docstring for the orderedlogistic class
1 parent c7279b5 commit 7110bd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc/distributions/discrete.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1572,7 +1572,7 @@ class OrderedLogistic:
15721572
# Ordered logistic regression
15731573
with pm.Model() as model:
15741574
cutpoints = pm.Normal("cutpoints", mu=[-1,1], sigma=10, shape=2,
1575-
transform=pm.distributions.transforms.ordered)
1575+
transform=pm.distributions.transforms.univariate_ordered)
15761576
y_ = pm.OrderedLogistic("y", cutpoints=cutpoints, eta=x, observed=y)
15771577
idata = pm.sample()
15781578

0 commit comments

Comments
 (0)