Skip to content

Commit 55159b8

Browse files
committed
re-order operations in docstring
1 parent 8edf6a0 commit 55159b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

causalpy/pymc_models.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ class PyMCModel(pm.Model):
5959
... )
6060
>>> model.fit(X, y)
6161
Inference data...
62-
>>> X_new = rng.normal(loc=0, scale=1, size=(20,2))
63-
>>> model.predict(X_new)
64-
Inference data...
6562
>>> model.score(X, y)
6663
r2 0.19157
6764
r2_std 0.11238
6865
dtype: float64
66+
>>> X_new = rng.normal(loc=0, scale=1, size=(20,2))
67+
>>> model.predict(X_new)
68+
Inference data...
6969
"""
7070

7171
def __init__(self, sample_kwargs: Optional[Dict[str, Any]] = None):

0 commit comments

Comments
 (0)