Skip to content

Commit fd139e4

Browse files
committed
DOC Remove print statement from TruncatedNormal plotting code which causes doc builds to fail under Python 3.
1 parent 02f0b7f commit fd139e4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pymc3/distributions/continuous.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,6 @@ class TruncatedNormal(BoundedContinuous):
523523
a1 = [-3, -5, -5]
524524
b1 = [7, 5, 4]
525525
for mu, sigma, a, b in zip(mus, sigmas,a1,b1):
526-
print mu, sigma, a, b
527526
an, bn = (a - mu) / sigma, (b - mu) / sigma
528527
pdf = st.truncnorm.pdf(x, an,bn, loc=mu, scale=sigma)
529528
plt.plot(x, pdf, label=r'$\mu$ = {}, $\sigma$ = {}, a={}, b={}'.format(mu, sigma, a, b))

0 commit comments

Comments
 (0)