Skip to content

Commit 28591b4

Browse files
committed
Update docstring for GaussianRandomWalk._random()
1 parent 512822a commit 28591b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/distributions/timeseries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def _random(self, sigma, mu, size, sample_shape):
275275
"""Implement a Gaussian random walk as a cumulative sum of normals.
276276
axis = len(size) - 1 denotes the axis along which cumulative sum would be calculated.
277277
This might need to be corrected in future when issue #4010 is fixed.
278-
Lines 318-322 ties the starting point of each instance of random walk to 0"
278+
Lines 291-295 set the starting point of each instance of the random walk to 0."
279279
"""
280280
if size[len(sample_shape)] == sample_shape:
281281
axis = len(sample_shape)

0 commit comments

Comments
 (0)