Skip to content

Commit

Permalink
Merge pull request #1074 from vinisalazar/vinisalazar-issue-1073
Browse files Browse the repository at this point in the history
Recreate data variable along with numpy import
  • Loading branch information
ineelhere authored Nov 17, 2023
2 parents a6859b9 + d8037f7 commit 774dd0d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion episodes/07-cond.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,11 @@ Now that we've seen how conditionals work,
we can use them to check for the suspicious features we saw in our inflammation data.
We are about to use functions provided by the `numpy` module again.
Therefore, if you're working in a new Python session, make sure to load the
module with:
module and data with:

```python
import numpy
data = numpy.loadtxt(fname='inflammation-01.csv', delimiter=',')
```

From the first couple of plots, we saw that maximum daily inflammation exhibits
Expand Down

0 comments on commit 774dd0d

Please sign in to comment.