Skip to content

Commit 67925df

Browse files
authored
Fix a typo in the docstring of OderedLogistic (#6611)
1 parent c7279b5 commit 67925df

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)