Skip to content

Commit b1b2982

Browse files
author
Vianney Taquet
committed
Minor modif in toy data example
1 parent aa933b9 commit b1b2982

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/plot_toy_model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
plt.plot(X[order], y_pis[order][:, 1, 1], color="C1", ls="--")
3737
plt.fill_between(
3838
X[order].ravel(),
39-
y_pis[:, 0, 0][order].ravel(),
40-
y_pis[:, 1, 0][order].ravel(),
39+
y_pis[order][:, 0, 0].ravel(),
40+
y_pis[order][:, 1, 0].ravel(),
4141
alpha=0.2
4242
)
4343
plt.title(

0 commit comments

Comments
 (0)