Skip to content

Commit 32b1de0

Browse files
committed
fix typo: 100 random numbers -> 1000
1 parent fa524c9 commit 32b1de0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python/Module5_OddsAndEnds/Matplotlib.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4332,8 +4332,8 @@
43324332
"\n",
43334333
"################# Plot (1, 1) ##########################\n",
43344334
"# Demonstrating a historgram\n",
4335-
"# Draw 100 numbers from Gaussian distribution,\n",
4336-
"# stored in shape-(100,) numpy array.\n",
4335+
"# Draw 1000 numbers from Gaussian distribution,\n",
4336+
"# stored in shape-(1000,) numpy array.\n",
43374337
"data = np.random.randn(1000) \n",
43384338
"# Display the data in a 50-bin histogram.\n",
43394339
"axs[1, 1].hist(data, bins=50)\n",

0 commit comments

Comments
 (0)