Skip to content

Commit b490304

Browse files
committed
Docs bug fix - change incorrect sd to correct lam
1 parent 4f02bc3 commit b490304

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/distributions/continuous.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,7 @@ class StudentT(Continuous):
967967
x = pm.StudentT('x', nu=15, mu=0, sd=10)
968968
969969
with pm.Model():
970-
x = pm.StudentT('x', nu=15, mu=0, sd=1/23)
970+
x = pm.StudentT('x', nu=15, mu=0, lam=1/23)
971971
"""
972972

973973
def __init__(self, nu, mu=0, lam=None, sd=None, *args, **kwargs):

0 commit comments

Comments
 (0)