Skip to content

Commit b4627cf

Browse files
authored
fix nump import
1 parent 193c168 commit b4627cf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

_episodes/08-putting-it-all-together.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ created with NumPy by drawing 1000 samples from a normal distribution with a mea
152152
a standard deviation of 0.1:
153153
154154
~~~
155-
import numpy
156-
sample_data = numpy.random.normal(0, 0.1, 1000)
155+
import numpy as np
156+
sample_data = np.random.normal(0, 0.1, 1000)
157157

158158
~~~
159159
{: .language-python}

0 commit comments

Comments
 (0)