Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 375b0bd

Browse files
committed
fix a typo in pyplot tutorial.
1 parent 8e3b239 commit 375b0bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/introductory/pyplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ def f(t):
425425
# Fixing random state for reproducibility
426426
np.random.seed(19680801)
427427

428-
# make up some data in the interval ]0, 1[
428+
# make up some data in the open interval (0, 1)
429429
y = np.random.normal(loc=0.5, scale=0.4, size=1000)
430430
y = y[(y > 0) & (y < 1)]
431431
y.sort()

0 commit comments

Comments
 (0)